:root {
  --font-sans: "Saira", Arial, sans-serif;
  --font-body: "Saira", Arial, sans-serif;
  --purple: #5b2682;
  --purple-dark: #4d1f72;
  --purple-line: rgba(221, 177, 255, 0.62);
  --yellow: #f6e71c;
  --white: #ffffff;
  --off-white: #f6f6f4;
  --ink: #1d1d1d;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--white);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 16px;
  overflow-x: hidden;
}

body.is-lightbox-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font-family: var(--font-sans);
}

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

.page-shell {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.hero-section {
  position: relative;
  min-height: max(760px, calc(100vw * 1298 / 2560));
  z-index: 1;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}

.hero-section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: url("assets/fundo_purple_first.svg") top center / 100% auto no-repeat;
  pointer-events: none;
}

.hero-section::before {
  position: absolute;
  inset: 0;
  z-index: 10;
  content: "";
  background: url("assets/bordar_yellow_first.svg") bottom center / 100% auto no-repeat;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 2.5vw, 64px);
  padding: 18px max(24px, calc((100% - 1270px) / 2));
  background: transparent;
  transition: background-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-nav-open {
  background: rgba(77, 31, 114, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(26, 10, 44, 0.18);
}

.hero-content {
  position: relative;
  z-index: 5;
  width: calc(100% - 48px);
  max-width: 1270px;
  margin: 0 auto;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.site-logo img {
  display: block;
  width: clamp(140px, 10vw, 241px);
  height: auto;
}

.site-logo:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
  border-radius: 4px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 1.35vw, 34px);
  min-width: 0;
  padding-left: 40px;
}

.primary-nav__link {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
  transition: color 180ms ease;
}

.primary-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 200ms ease;
}

.primary-nav__link:hover,
.primary-nav__link:focus-visible {
  color: var(--white);
}

.primary-nav__link:hover::after,
.primary-nav__link:focus-visible::after {
  transform: scaleX(1);
}

.primary-nav__link:focus-visible {
  outline: none;
}

.primary-nav__link--group2 {
  color: rgba(255, 255, 255, 0.5);
}

.primary-nav__link--group-start {
  margin-left: clamp(20px, 2.2vw, 56px);
}

.primary-nav__link--active {
  color: var(--yellow);
  font-weight: 700;
}

.primary-nav__link--active:hover,
.primary-nav__link--active:focus-visible {
  color: var(--yellow);
}

.primary-nav__link--active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: clamp(160px, 11vw, 220px);
  min-height: clamp(44px, 2.6vw, 56px);
  padding: 14px 28px;
  color: #572580;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: #fff23d;
  box-shadow: 0 10px 24px rgba(246, 231, 28, 0.28);
  transform: translateY(-2px);
}

.header-cta:active {
  transform: translateY(0);
}

.header-cta:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.nav-toggle {
  display: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 520px minmax(0, 1fr);
  align-items: center;
  gap: 40px;
  padding-top: clamp(96px, 7.5vw, 132px);
}

.hero-copy {
  min-width: 0;
  max-width: 100%;
}

.hero-copy h1 {
  max-width: 100%;
  margin: 0;
  color: var(--white);
  font-size: clamp(26px, 2.2vw, 56px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero-copy h1 span {
  display: block;
  color: var(--yellow);
  font-weight: 700;
  white-space: normal;
}

.hero-copy p {
  max-width: 100%;
  margin: clamp(1rem, 1.4vw, 1.8rem) 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(13.2px, 0.92vw, 23px);
  font-weight: 300;
  line-height: 1.34;
}

.hero-actions {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(12px, 0.85vw, 22px);
  margin-top: clamp(27px, 1.9vw, 48px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(138px, 8.2vw, 210px);
  min-height: clamp(32px, 1.9vw, 49px);
  padding: 0 clamp(18px, 1.1vw, 28px);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease, transform 180ms ease;
}

.button:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.button__icon {
  display: block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  margin-left: 3px;
}

.button--primary {
  color: #1b1425;
  background: var(--yellow);
}

.hero-actions .button--primary {
  color: #572580;
  font-weight: 500;
}

.button--primary:hover {
  background: #fff23d;
  box-shadow: 0 10px 24px rgba(246, 231, 28, 0.28);
  transform: translateY(-2px);
}

.button--primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(246, 231, 28, 0.24);
}

.button--secondary {
  min-width: clamp(122px, 7.3vw, 186px);
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
  font-weight: 500;
}

.button--secondary:hover {
  color: #572580;
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.button--secondary:active {
  transform: translateY(0);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 620px;
  min-height: clamp(280px, 32vw, 420px);
  justify-self: end;
}

.hero-visual::before {
  position: absolute;
  display: none;
  right: -4px;
  bottom: 4px;
  z-index: -1;
  width: 366px;
  height: 334px;
  content: "";
  border: 1px solid var(--purple-line);
  border-radius: 43% 50% 35% 50% / 32% 31% 51% 53%;
  transform: rotate(-11deg);
}

.hero-visual__outline {
  position: absolute;
  z-index: 1;
  right: 1.9%;
  bottom: -7%;
  width: 96%;
  height: 91%;
  background: url("assets/borda_foto.svg") center / contain no-repeat;
  pointer-events: none;
}

.hero-visual__frame {
  position: absolute;
  right: 0;
  bottom: -60px;
  width: 100%;
  height: auto;
  margin: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.hero-visual__frame::before,
.hero-visual__frame::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.hero-visual__frame::before {
  right: 56px;
  bottom: 56px;
  width: 116px;
  height: 210px;
  background: #a9cde5;
  border-radius: 60px 60px 16px 16px;
  opacity: 0;
}

.hero-visual__frame::after {
  right: 122px;
  bottom: 50px;
  width: 90px;
  height: 206px;
  background: #fafafa;
  border-radius: 48px 48px 18px 18px;
  box-shadow: -76px 42px 0 -25px rgba(162, 177, 183, 0.7);
  opacity: 0;
}

.hero-visual__frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-visual__frame img:not([src]),
.hero-visual__frame img.is-missing {
  visibility: hidden;
}

.hero-visual__frame.is-missing::after {
  opacity: 0.82;
}

.hero-visual__frame figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.challenge-section {
  position: relative;
  padding: 0;
  color: var(--ink);
  background: #fff;
  margin-top: 52px;
}

.challenge-layout {
  display: grid;
  grid-template-columns: 1fr 560px;
  align-items: center;
  gap: 52px;
  width: 100%;
  max-width: 1270px;
  min-height: 335px;
  margin: 0 auto;
}

.challenge-media {
  position: relative;
  width: 100%;
  min-height: 500px;
  aspect-ratio: 835.222 / 605.202;
  margin-top: 0;
}

/* Card da imagem (Figma node 5:5439): reto, deslocado left 71 / top 56 */
.challenge-media__frame {
  position: absolute;
  z-index: 1;
  top: 9.25%;
  left: 8.5%;
  width: 88.58%;
  height: 82.74%;
  margin: 0;
  overflow: hidden;
  background: #f3ede4;
  border-radius: 64px;
}

.challenge-media__poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Fundo amarelo (Figma nodes 112:69/112:70): bento rotacionado -8.15°, centralizado */
.challenge-media__bg {
  position: absolute;
  z-index: 0;
  top: 8.63%;
  left: 3.78%;
  width: 92.43%;
  height: 82.74%;
  background: var(--yellow);
  opacity: 0.8;
  border-radius: 64px;
  transform: rotate(-8.15deg);
  transform-origin: center;
  pointer-events: none;
}

.challenge-media__play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 77px;
  height: 77px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.challenge-media__play:hover,
.challenge-media__play:focus-visible {
  transform: translate(-50%, -50%) scale(1.08);
}

.challenge-media__play:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

.challenge-media.is-lightbox-open .challenge-media__play {
  visibility: hidden;
  pointer-events: none;
}

.challenge-media-play-icon {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}

.video-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(87, 37, 128, 0.5);
}

.video-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
}

.video-lightbox__video {
  display: block;
  width: 100%;
  height: 100%;
  background: #000000;
  border-radius: 16px;
}

.video-lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.challenge-copy {
  padding-top: 0;
  padding-left: 0;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  min-height: 0;
  margin: 0 0 25px;
  padding: 12px 24px;
  color: var(--purple);
  background: rgba(246, 231, 28, 0.36);
  border-radius: 999px;
  font-size: 8.3px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.section-pill--center {
  margin-right: auto;
  margin-left: auto;
}

.challenge-copy>.section-pill {
  display: flex;
  width: fit-content;
  min-width: 0;
  min-height: 0;
  margin: 0 0 32px;
  padding: 12px 24px;
  color: #572580;
  background: #fbf5ae;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.challenge-copy h2 {
  max-width: 769px;
  margin: 0;
  color: #2d1b4d;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.challenge-copy p {
  max-width: 672px;
  margin: 12px 0 0;
  color: #5a3f47;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.challenge-copy>.challenge-copy__lead {
  margin-top: 12px;
  font-weight: 600;
  line-height: 24px;
  font-size: 18px;
  margin-top: 50px;
}

.proposal-section {
  position: relative;
  padding: clamp(112px, 7vw, 150px) 0 clamp(104px, 6.8vw, 140px);
  color: #2d1453;
  background: #fff;
  overflow: hidden;
}

.proposal-inner {
  position: relative;
  z-index: 1;
  width: calc(100% - 96px);
  max-width: 1270px;
  margin: 0 auto;
  text-align: center;
}

.proposal-inner>.section-pill {
  min-width: 0;
  min-height: 0;
  margin-bottom: 0;
  padding: 12px 24px;
  color: #572580;
  background: #fbf5ae;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.proposal-inner h2 {
  max-width: 1270px;
  margin: 32px auto 0;
  color: #2d1b4d;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.proposal-intro {
  max-width: 1270px;
  margin: 16px auto 0;
  color: #5a3f47;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.proposal-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.proposal-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-height: clamp(215px, 14.85vw, 195px);
  padding: 33px 23px;
  text-align: left;
  background: linear-gradient(135.14deg, rgba(45, 27, 77, 0.05) 2.6%, rgba(105, 63, 179, 0) 76.35%);
  border: 1px solid rgba(45, 27, 77, 0.05);
  border-radius: 32px;
  backdrop-filter: blur(5px);
}

.proposal-card__icon {
  display: block;
  max-width: 80px;
  height: auto;
  margin-bottom: 0;
  object-fit: contain;
  object-position: left center;
}

.proposal-card h3 {
  max-width: 275px;
  margin: 0;
  color: #572580;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.17;
}

.care-section {
  --care-tech-drop: clamp(56px, 4.5vw, 120px);
  --care-bg-bottom: calc(var(--care-tech-drop) + 244px);

  position: relative;
  min-height: max(2650px, 109.5vw);
  margin-top: -12px;
  margin-bottom: 0;
  padding: clamp(300px, 20vw, 420px) 0 calc(88px + var(--care-tech-drop));
  color: var(--purple);
  background: #fff;
  overflow: hidden;
  isolation: isolate;
}

.care-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: var(--care-bg-bottom);
  z-index: 0;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.care-section__bg-top,
.care-section__bg-bottom {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  max-width: none;
}

.care-section__bg-fill {
  flex: 1 1 auto;
  min-height: 68dvw;
  margin: -1px 0;
  background: #F6E71C;
}

.care-section__inner {
  position: relative;
  z-index: 1;
  width: calc(100% - 56px);
  max-width: min(1560px, 92vw);
  margin: 0 auto;
}

.care-section__top {
  display: grid;
  grid-template-columns: minmax(0, 768fr) minmax(0, 744fr);
  align-items: start;
  gap: 48px;
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
}

.section-pill--light {
  min-width: 0;
  min-height: 0;
  margin-bottom: 32px;
  padding: 12px 24px;
  color: #572580;
  background: #fbf5ae;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.2px;
}

.care-copy {
  padding-top: 6px;
}

.care-copy h2 {
  max-width: 660px;
  margin: 0;
  color: #572580;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
}

.care-copy h2 strong {
  font-weight: 600;
}

.care-copy>p:not(.section-pill) {
  max-width: 769px;
  margin: 50px 0 0;
  color: #572580;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.care-list {
  position: relative;
  max-width: 736px;
  margin-top: 73px;
  padding-left: 18px;
  border-left: 2px solid var(--purple);
}

.care-list__item {
  position: relative;
  padding: 0 0 18px 24px;
  border-bottom: 1px solid rgba(91, 38, 130, 0.13);
}

.care-list__item.is-active::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  width: 4px;
  background: #0BA5EC;
}

.care-list__item+.care-list__item {
  padding-top: 18px;
}

.care-list__item button {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  width: 100%;
  padding: 0;
  color: #35115c;
  background: transparent;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.care-list__item button {
  color: #572580;
  font-size: 24px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.72px;
}

.care-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--purple);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.care-list__content[hidden] {
  display: none;
}

.care-list__item p {
  max-width: 736px;
  margin: 0;
  color: #572580;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.care-list__item p+p {
  margin-top: 14px;
}

.care-visual {
  position: relative;
  padding: 0;
}

.care-visual::before {
  position: absolute;
  z-index: 2;
  top: 0%;
  right: 0%;
  width: 96%;
  aspect-ratio: 856 / 844;
  content: "";
  background: url("assets/bordar_img_yellow.svg") center / contain no-repeat;
  pointer-events: none;
}

.care-visual>img {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: 2%;
  height: auto;
  aspect-ratio: 870 / 757;
}

.care-list__item button:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
}

.care-tech {
  position: relative;
  bottom: calc(var(--care-tech-drop) * -1);
  max-width: min(1270px, 90vw);
  margin: max(0px, 2.5vw) auto 0;
  text-align: center;
}

.care-tech__bg-line {
  position: absolute;
  top: clamp(-160px, -8vw, -80px);
  left: -20vw;
  z-index: -1;
  width: clamp(360px, 40vw, 571px);
  height: auto;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.care-tech .section-pill {
  margin-bottom: 24px;
}

.care-tech h2 {
  max-width: 674px;
  margin: 0 auto;
  color: var(--purple);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.96px;
}

.care-tech>p:not(.section-pill) {
  max-width: 1248px;
  margin: 32px auto 0;
  color: #5a3f47;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.care-tech>p:not(.section-pill) strong {
  color: inherit;
  font-weight: 600;
}

.care-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
}

.care-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #8e8945;
  background: transparent;
  border: 0;
  border-radius: 32px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  cursor: pointer;
}

.care-tabs .is-active {
  padding: 14px 24px;
  color: #572580;
  background: #fff;
  font-weight: 600;
}

.care-computer {
  display: block;
  width: min(100%, clamp(700px, 48vw, 1100px));
  height: auto;
  margin: clamp(32px, 3.2vw, 72px) auto 0;
}

.care-display {
  position: relative;
  width: min(100%, clamp(700px, 48vw, 1100px));
  margin: clamp(32px, 3.2vw, 72px) auto 0;
}

.care-display .care-computer {
  width: 100%;
  margin: 0;
}

.care-card {
  position: absolute;
  width: 14.52%;
  height: auto;
  opacity: 0;
  filter: drop-shadow(0 15px 85px rgba(148, 190, 205, 0.4));
  transition: opacity 300ms ease;
  pointer-events: none;
}

.care-card.is-visible {
  opacity: 1;
}

.care-tech__caption {
  max-width: 888px;
  margin: 88px auto 0;
  color: #572580;
}

.care-tech__caption h3 {
  margin: 0;
  color: #572580;
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.96px;
}

.care-tech__caption p {
  margin: 16px auto 0;
  color: #2d1b4d;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}

.difference-section {
  position: relative;
  min-height: 1120px;
  margin-top: 0;
  padding: 178px 0 100px;
  color: var(--white);
  background: #fff;
  overflow: hidden;
  isolation: isolate;
}

.difference-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: top center;
  pointer-events: none;
}

.difference-section__line {
  position: absolute;
  left: 50%;
  z-index: 0;
  width: 100vw;
  min-width: 1280px;
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  pointer-events: none;
}

.difference-section__line--top {
  top: 0;
  left: 52%;
  width: clamp(960px, 101vw, 2070px);
  min-width: 1800px;
  clip-path: inset(0 32% 0 0);
}

/* Borda amarela (Rectangle 72 do Figma): mantém a ponta esquerda na borda
   da página e posiciona o arco abaixo do título, cruzando a área dos cards. */
.difference-section__line--yellow {
  top: clamp(600px, 32vw, 680px);
  left: 0;
  width: clamp(1980px, 128vw, 2448px);
  min-width: 0;
  transform: none;
}

.difference-section__inner {
  position: relative;
  z-index: 1;
  width: calc(100% - 56px);
  max-width: 1270px;
  margin: 0 auto;
}

.difference-hero {
  position: relative;
  min-height: 560px;
}

.difference-hero::after {
  position: absolute;
  top: -24px;
  right: -140px;
  z-index: 1;
  width: min(640px, 52vw);
  aspect-ratio: 1164 / 1002;
  content: "";
  background: url("assets/borda_purple_last.svg") center / contain no-repeat;
  pointer-events: none;
}

.difference-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 92px;
}

.difference-copy h2 {
  max-width: 768px;
  margin: 0;
  color: var(--white);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.96px;
}

.difference-copy h2 strong {
  display: block;
  color: var(--yellow);
  font-weight: 600;
}

.difference-copy>p:not(.section-pill) {
  max-width: 768px;
  margin: 22px 0 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.difference-science {
  position: absolute;
  top: -24px;
  right: -140px;
  z-index: 1;
  width: min(640px, 52vw);
  height: auto;
}

.difference-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 1120px;
  max-width: 100%;
  margin-top: 40px;
}

.difference-card {
  display: flex;
  flex-direction: column;
  min-height: 482px;
  padding: 49px 30px;
}

.difference-card--dark {
  background: linear-gradient(128.8deg, rgba(45, 27, 77, 0.05) 2.6%, rgba(105, 63, 179, 0) 76.35%);
  border: 1px solid #ffffff;
  border-radius: 32px;
  backdrop-filter: blur(3.9px);
}

.difference-card--light {
  color: var(--purple);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
}

.difference-card__icon {
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
}

.difference-card--light .difference-card__icon {
  width: 64px;
  height: 64px;
}

.difference-card h3 {
  max-width: none;
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.96px;
}

.difference-card h3 strong {
  display: block;
  font-weight: 600;
}

.difference-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.difference-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.difference-card__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.audience-block {
  max-width: 1545px;
  margin: 226px auto 0;
  text-align: center;
}

.audience-block h2 {
  max-width: 652px;
  margin: 0 auto;
  color: var(--yellow);
  font-size: 48px;
  font-weight: 600;
  line-height: 52px;
  letter-spacing: -0.96px;
}

.audience-block__intro>p:not(.section-pill) {
  max-width: 672px;
  margin: 22px auto 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
}

.audience-cards {
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 96px;
}

.audience-cards::before {
  position: absolute;
  top: 160px;
  left: 50%;
  z-index: -1;
  width: 100vw;
  height: calc(100% - 160px + 180px);
  background: #fff;
  content: "";
  transform: translateX(-50%);
}

.audience-card {
  position: relative;
  overflow: hidden;
  min-height: 585px;
  padding: 73px 33px 33px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  text-align: center;
  color: #3c155f;
}

.audience-card__art {
  width: 100%;
  margin-bottom: 16px;
}

.audience-card__art img {
  display: block;
  width: 100%;
  height: auto;
}

.audience-card h3 {
  margin: 0;
  padding: 0;
  color: #572580;
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.96px;
}

.audience-card p {
  margin: 24px auto 0;
  max-width: 441px;
  padding: 0;
  color: #5a3f47;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.section-anchor {
  position: relative;
  top: -120px;
  display: block;
  width: 1px;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.governance-section {
  position: relative;
  padding: 100px 0 152px;
  color: var(--purple);
  background: #fff;
  overflow: hidden;
}

.governance-inner {
  width: calc(100% - 56px);
  max-width: 1248px;
  margin: 0 auto;
  text-align: center;
}

.governance-inner .section-pill {
  margin-bottom: 32px;
  color: #572580;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: -0.2px;
}

.governance-inner h2 {
  max-width: 1110px;
  margin: 0 auto;
  color: #572580;
  font-size: 38px;
  font-weight: 600;
  line-height: 52px;
  letter-spacing: -0.96px;
}

.governance-intro {
  max-width: 768px;
  margin: 32px auto 0;
  color: #2d1b4d;
  font-size: clamp(18px, 0.94vw, 24px);
  font-weight: 400;
  line-height: 1.3334;
}

.governance-slider {
  --governance-visible: 4;
  --governance-card-gap: 24px;
  --governance-card-width: 360px;

  width: 100%;
  margin-top: 100px;
}

.governance-slider__shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  width: calc(100% - 48px);
  max-width: 1270px;
  margin: 0 auto;
}

.governance-slider__viewport {
  min-width: 0;
  overflow: hidden;
  container-type: inline-size;
  --governance-card-width: calc(
    (100cqi - (var(--governance-visible) - 1) * var(--governance-card-gap)) /
      var(--governance-visible)
  );
}

.governance-track {
  display: flex;
  gap: var(--governance-card-gap);
  width: max-content;
  transform: translate3d(0, 0, 0);
  transition: transform 420ms ease;
  will-change: transform;
}

.governance-track img {
  pointer-events: none;
}

.governance-slider__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(87, 37, 128, 0.22);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.governance-slider__nav img {
  display: block;
  width: 14px;
  height: 14px;
}

.governance-slider__nav--prev img {
  transform: scaleX(-1);
}

.governance-slider__nav:hover:not(:disabled) {
  background: rgba(87, 37, 128, 0.06);
  border-color: rgba(87, 37, 128, 0.4);
}

.governance-slider__nav:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

.governance-slider__nav:disabled {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.governance-card {
  display: flex;
  flex: 0 0 var(--governance-card-width);
  flex-direction: column;
  width: var(--governance-card-width);
  height: 256px;
  padding: 33px 20px;
  text-align: left;
  background: linear-gradient(134.84deg, rgba(45, 27, 77, 0.05) 2.6%, rgba(105, 63, 179, 0) 76.35%);
  border: 1px solid rgba(45, 27, 77, 0.05);
  border-radius: 32px;
  backdrop-filter: blur(5px);
}

.governance-card__icon {
  display: block;
  width: 80px;
  height: 80px;
  margin-bottom: 34px;
  object-fit: contain;
}

.governance-card h3 {
  max-width: 296px;
  margin: 0;
  color: #572580;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1667;
  letter-spacing: 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 32px;
  width: min(1248px, 100%);
  margin: 68px auto 0;
}

.metric-item {
  min-width: 0;
  padding: 39px 40px 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(45, 27, 77, 0.03);
  text-align: center;
}

.metric-item strong {
  display: block;
  color: #572580;
  font-size: clamp(88px, 5vw, 128px);
  font-weight: 300;
  line-height: 0.8125;
  letter-spacing: -0.96px;
}

.metric-item strong span {
  font-size: 0.5em;
  font-weight: 400;
}

.metric-item p {
  margin: 16px 0 0;
  color: #572580;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.final-cta {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(520px, 31.1vw, 796px);
  padding: clamp(118px, 6.7vw, 172px) 0;
  color: var(--white);
  background: #572580;
  overflow: hidden;
  isolation: isolate;
}

.final-cta__glow {
  display: none;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  width: calc(100% - 56px);
  max-width: 1248px;
  margin: 0 auto;
  text-align: center;
}

.final-cta h2 {
  max-width: 709px;
  margin: 0 auto;
  color: var(--yellow);
  font-size: clamp(42px, 2.19vw, 56px);
  font-weight: 600;
  line-height: 1.1429;
  letter-spacing: -0.96px;
}

.final-cta h2 span {
  display: block;
  color: var(--white);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.final-cta p {
  max-width: 1248px;
  margin: clamp(48px, 3vw, 76px) auto 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(18px, 0.94vw, 24px);
  font-weight: 400;
  line-height: 1.3334;
}

.final-cta p strong {
  font-weight: 600;
}

.final-cta__line-break {
  display: block;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: clamp(48px, 3.55vw, 91px);
}

.final-cta .button {
  min-height: 52px;
  padding: 0 32px;
  font-size: 14px;
  font-weight: 500;
}

.final-cta .button--primary {
  min-width: 252px;
  color: #572580;
  gap: 4px;
}

.final-cta .button--secondary {
  min-width: 238px;
  border-color: rgba(255, 255, 255, 0.38);
}

.site-footer {
  padding: 92px 0 132px;
  color: #17263e;
  background: #fff;
}

.site-footer__inner {
  width: calc(100% - 144px);
  max-width: 1536px;
  margin: 0 auto;
}

.site-footer__nav-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(64px, 5vw, 128px);
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(23, 38, 62, 0.08);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.footer-brand__logo {
  display: block;
  width: 126px;
  height: 25px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.footer-nav a {
  color: #475467;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 36px;
}

.site-footer__bottom p {
  margin: 0;
  color: #667085;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.social-links img {
  display: block;
  width: 100%;
  height: 100%;
}

.two-column {
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  gap: 92px;
  padding: 10px;
  width: 100%;
  margin-top: 50px;
}

/* ---------- Media (phone mockup) ---------- */
.two-column__media {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 600px;
  min-width: 0;
}

.two-column__phone {
  width: 100%;
  max-width: 470px;
  height: auto;
  aspect-ratio: 656 / 1006;
  object-fit: cover;
  display: block;
}

/* ---------- Content (feature list) ---------- */
.two-column__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  flex: 1 1 548px;
  min-width: 0;
}

.feature {
  width: 100%;
}

.feature__text {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  opacity: 0.8;
}

.feature__title {
  margin: 0;
  font-family: 'Saira', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.96px;
  color: #572580;
}

.feature__description {
  margin: 0;
  width: 100%;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #5a3f47;
}

.feature__divider {
  width: 100%;
  height: 0;
  margin: 0;
  border: none;
  border-top: 1px solid rgba(90, 63, 71, 0.2);
}

.email-footer {
  color: #572580;
  text-align: right;
  font-family: Saira;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  min-width: 214px;
}

/* ---- SLIDER ----- */
.logo-slider {
  width: 100%;
  padding: clamp(72px, 7vw, 112px) 0;
  text-align: center;
  background: #fff;
}

.logo-slider .section-pill {
  display: flex;
  width: fit-content;
  min-width: 0;
  min-height: 0;
  margin: 0 auto 40px;
  padding: 12px 24px;
  color: #572580;
  background: #fbf5ae;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.logo-slider__shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  width: calc(100% - 48px);
  max-width: 1270px;
  margin: 0 auto;
}

.logo-slider__viewport {
  min-width: 0;
  overflow: hidden;
}

.logo-slider__track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  transform: translate3d(0, 0, 0);
  transition: transform 420ms ease;
  will-change: transform;
}

.logo-slider__item {
  flex-shrink: 0;
  width: 264px;
  height: 132px;
}

.logo-slider__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.logo-slider__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(87, 37, 128, 0.22);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.logo-slider__nav img {
  display: block;
  width: 14px;
  height: 14px;
}

.logo-slider__nav--prev img {
  transform: scaleX(-1);
}

.logo-slider__nav:hover:not(:disabled) {
  background: rgba(87, 37, 128, 0.06);
  border-color: rgba(87, 37, 128, 0.4);
}

.logo-slider__nav:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

.logo-slider__nav:disabled {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 920px) {
  .logo-slider__shell {
    width: calc(100% - 40px);
    gap: 10px;
  }

  .logo-slider__item {
    width: 200px;
    height: 100px;
  }

  .logo-slider__nav {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 640px) {
  .logo-slider {
    padding: 56px 0;
  }

  .logo-slider__shell {
    width: calc(100% - 24px);
    gap: 8px;
  }

  .logo-slider__track {
    gap: 16px;
  }

  .logo-slider__item {
    width: 160px;
    height: 80px;
  }
}

/* ---- SLIDER ----- */

@media (max-width: 1180px) {
  .two-column {
    flex-direction: column;
    gap: 32px;
  }

  .two-column__media,
  .two-column__content {
    flex: 1 1 auto;
    width: 100%;
  }

  .two-column__phone {
    max-width: 400px;
  }

  .feature__title,
  .feature__description {
    max-width: 100%;
  }
}

/* Desktop mid-range (1200–1919): adapta grids/tipografia sem encolher o canvas 1270.
   Não altera o CSS base usado em resoluções ≥ 1920. */
@media (min-width: 1200px) and (max-width: 1919px) {
  .site-header {
    padding: 16px max(24px, calc((100% - 1270px) / 2));
  }

  .site-logo img {
    width: clamp(160px, 12vw, 220px);
  }

  .primary-nav {
    gap: clamp(16px, 1.4vw, 28px);
    padding-left: clamp(16px, 2vw, 32px);
  }

  .primary-nav__link {
    font-size: clamp(13px, 1vw, 15px);
  }

  .header-cta {
    width: auto;
    min-width: 168px;
    min-height: 46px;
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero-section {
    min-height: max(730px, calc(100vw * 1298 / 2560));
  }
  .hero-section::after{
    background-size: cover;
  }

  .hero-content {
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(24px, 2.5vw, 40px);
    padding-top: clamp(88px, 6.5vw, 112px);
    padding-bottom: clamp(12px, 1.5vw, 24px);
  }

  .hero-copy h1 {
    font-size: 32px;
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .hero-copy p {
    max-width: min(100%, 440px);
    font-size: 16px;
  }

  .hero-visual {
    width: 100%;
    max-width: 560px;
  }

  .button {
    font-size: 14px;
  }

  .challenge-layout {
    width: calc(100% - 48px);
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: clamp(28px, 3vw, 52px);
  }

  .challenge-copy h2,
  .proposal-inner h2,
  .care-copy h2,
  .care-tech h2,
  .difference-copy h2,
  .audience-block h2 {
    font-size: clamp(34px, 2.85vw, 44px);
    line-height: 1.15;
  }

  .challenge-copy p,
  .challenge-copy > .challenge-copy__lead,
  .proposal-intro,
  .care-copy > p:not(.section-pill),
  .care-tech > p:not(.section-pill),
  .difference-copy > p:not(.section-pill),
  .audience-block__intro > p:not(.section-pill) {
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.45;
  }

  .proposal-inner {
    width: calc(100% - 64px);
  }

  .proposal-card {
    padding: 28px 20px;
  }

  .proposal-card h3 {
    font-size: clamp(16px, 1.3vw, 20px);
  }

  .care-section__top {
    grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1fr);
    gap: clamp(28px, 2.8vw, 48px);
  }

  .care-list__item button {
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.35;
  }

  .difference-section {
    min-height: 0;
    padding: clamp(120px, 10vw, 160px) 0 clamp(80px, 6vw, 112px);
  }

  .difference-section__line {
    min-width: 0;
  }

  .difference-section__line--top {
    min-width: 0;
    width: min(120vw, 1600px);
  }

  .difference-section__line--yellow {
    top: clamp(480px, 34vw, 640px);
    width: min(145vw, 2200px);
  }

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

  .difference-science,
  .difference-hero::after {
    right: clamp(-80px, -5vw, -24px);
    width: min(520px, 42vw);
  }

  .difference-cards {
    width: 100%;
  }

  .difference-card {
    min-height: 0;
    padding: 40px 26px;
  }

  .difference-card h3 {
    font-size: clamp(28px, 2.4vw, 36px);
  }

  .audience-block h2 {
    line-height: 1.15;
  }

  .audience-card {
    min-height: 0;
    padding: 56px 28px 28px;
  }

  .audience-card h3 {
    font-size: clamp(24px, 2vw, 30px);
    line-height: 1.3;
  }

  .governance-inner h2 {
    font-size: clamp(30px, 2.4vw, 36px);
    line-height: 1.25;
  }

  .governance-slider {
    --governance-card-gap: clamp(16px, 1.6vw, 24px);
  }

  .governance-card {
    height: auto;
    min-height: 220px;
  }

  .governance-card h3 {
    font-size: clamp(18px, 1.5vw, 22px);
  }

  .final-cta h2 {
    font-size: clamp(36px, 3vw, 48px);
  }

  .final-cta p {
    font-size: clamp(16px, 1.2vw, 20px);
  }
}

/* Hero acima de 1440px — não altera viewports ≤ 1440 */
@media (min-width: 1441px) {
  .hero-section {
    min-height: max(760px, calc(100vw * 1302 / 2560));
  }

  .hero-section::after {
    background-size: 100% auto;
    background-position: top center;
  }

  .hero-section::before {
    background-size: 100% auto;
    background-position: bottom center;
  }

  .hero-content {
    padding-bottom: clamp(32px, 3.5vw, 56px);
  }

  .hero-copy h1 {
    font-size: 45px;
  }

  .hero-copy p {
    font-size: clamp(16px, 1vw, 18px);
  }

  .hero-actions .button {
    font-size: 16px;
  }

  .hero-visual {
    max-width: clamp(560px, 38vw, 680px);
    min-height: clamp(320px, 28vw, 480px);
  }
}

@media (max-width: 1919px) {
  .care-section {
    --care-tech-drop: clamp(56px, 4.5vw, 120px);
    --care-bg-bottom: calc(var(--care-tech-drop) - 46px);
    position: relative;
    min-height: 2320px;
    margin-top: -12px;
    margin-bottom: 0;
    padding: clamp(330px, 20vw, 450px) 0 calc(158px + var(--care-tech-drop));
    color: var(--purple);
    background: #fff;
    overflow: hidden;
    isolation: isolate;
  }
}

/* care-section: 1441–1919 — corrige fundo cortado e padding-bottom excessivo */
@media (min-width: 1441px) and (max-width: 1919px) {
  .care-section {
    --care-tech-drop: clamp(64px, 4.5vw, 96px);
    --care-bg-bottom: 0;
    min-height: 0;
    padding: clamp(280px, 17vw, 380px) 0 clamp(120px, 12vw, 200px);
  }

  .care-section__bg {
    bottom: 0;
  }

  .care-section__bg-fill {
    flex: 1 1 auto;
    min-height: 0;
  }
}

@media (min-width: 1320px) {
  .hero-content {
    width: calc(100% - 80px);
    max-width: 1270px;
    grid-template-columns: 740px minmax(0, 1fr);
    gap: 48px;
  }

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

@media (min-width: 1441px) {
  .hero-content {
    grid-template-columns: 690px minmax(0, 1fr);
  }

  .care-visual {
    justify-self: start;
    width: calc(100% + max(0px, (min(1560px, 92vw) - 1270px) / 2));
    max-width: none;
  }
}

@media (min-width: 1920px) {
  .hero-section {
    min-height: max(760px, calc(100vw * 1302 / 2560));
    background: #fff;
  }

  .hero-section::after {
    inset: 0;
    width: auto;
    height: auto;
    transform: none;
    background-size: 100vw auto;
    background-position: top center;
  }

  .hero-section::before {
    inset: 0;
    width: auto;
    height: auto;
    transform: none;
    background-size: 100vw auto;
    background-position: bottom center;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .hero-visual {
    width: 100%;
    max-width: 720px;
  }

  .hero-visual__outline {
    right: -1.5%;
    bottom: -9%;
    width: 97%;
    height: 93%;
  }

  .difference-section__line--top {
    width: 120vw;
  }

  .care-tech__bg-line {
    left: -25vw;
  }

  .care-section {
    --care-bg-bottom: 0;
    min-height: 0;
    padding-bottom: clamp(140px, 10vw, 220px);
  }

  .care-section__bg {
    bottom: 0;
  }

  .care-section__bg-fill {
    flex: 1 1 auto;
    min-height: 0;
  }
}

/* Mobile/tablet (<1180px): a diagonal do SVG de fundo fica irregular quando o
   conteúdo empilha. Aqui usamos o amarelo reto cobrindo tudo (sem diagonal). */
@media (max-width: 1180px) {
  .care-section__bg-top,
  .care-section__bg-bottom {
    display: none;
  }

  .care-section__bg-fill {
    min-height: 0;
  }
}

@media (max-width: 1180px) {
  .hero-section {
    min-height: 760px;
  }

  .hero-section::after,
  .hero-section::before {
    background-size: 100% auto;
    background-position: top center;
  }

  .hero-content {
    width: calc(100% - 56px);
    max-width: 958px;
  }

  .site-header {
    gap: 22px;
    padding: 16px max(28px, calc((100% - 958px) / 2));
  }

  .primary-nav {
    gap: 15px;
    padding-left: 0;
  }

  .primary-nav__link {
    font-size: 9px;
  }

  .header-cta {
    width: 140px;
    min-height: 32px;
    padding: 0 18px;
    font-size: 9.2px;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-top: 120px;
  }

  .hero-copy {
    top: 0;
    min-width: 0;
    max-width: 100%;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(22px, 3.4vw, 31px);
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .hero-copy p {
    max-width: 365px;
    margin-top: 1rem;
    font-size: 13.2px;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 27px;
  }

  .button {
    min-width: 138px;
    min-height: 32px;
    padding: 0 18px;
    font-size: 9.2px;
  }

  .button--secondary {
    min-width: 122px;
  }

  .hero-visual {
    justify-self: end;
    width: 370px;
    height: 360px;
    transform: scale(0.92);
    transform-origin: center right;
  }

  .hero-visual__frame {
    top: auto;
    right: 0;
    bottom: 16px;
    left: auto;
    width: 370px;
    height: 330px;
  }

  .challenge-layout {
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
    gap: 36px;
    width: calc(100% - 56px);
    max-width: 1080px;
  }

  .challenge-media {
    width: 100%;
    transform: none;
  }

  .challenge-copy {
    padding-left: 0;
  }

  .challenge-copy>.section-pill {
    min-height: 0;
    padding: 12px 24px;
    font-size: 11px;
  }

  .challenge-copy h2 {
    font-size: 38px;
  }

  .challenge-copy p {
    max-width: 560px;
    font-size: 16px;
  }

  .proposal-cards {
    gap: 14px;
  }

  .proposal-card {
    padding-right: 24px;
    padding-left: 24px;
  }

  .care-section__top {
    grid-template-columns: minmax(0, 400px) minmax(0, 500px);
    gap: 46px;
  }

  .section-pill--light {
    min-height: 0;
    padding: 12px 24px;
    font-size: 10px;
  }

  .care-copy h2 {
    font-size: 38px;
    line-height: 44px;
    letter-spacing: -0.5px;
  }

  .care-copy>p:not(.section-pill) {
    font-size: 16px;
    line-height: 22px;
  }

  .care-list {
    max-width: 420px;
    margin-top: 40px;
  }

  .care-list__item {
    padding-bottom: 16px;
  }

  .care-list__item+.care-list__item {
    padding-top: 16px;
  }

  .care-list__item button {
    font-size: 17px;
    line-height: 24px;
    letter-spacing: -0.3px;
  }

  .care-list__item p {
    font-size: 12px;
    line-height: 17px;
  }

  .care-tech {
    margin-top: 36px;
  }

  .care-tech .section-pill {
    margin-bottom: 18px;
  }

  .care-tech h2 {
    max-width: 560px;
    font-size: 44px;
    line-height: 50px;
    letter-spacing: -0.5px;
  }

  .care-tech>p:not(.section-pill) {
    max-width: 760px;
    margin-top: 22px;
    font-size: 15px;
    line-height: 22px;
  }

  .care-tabs {
    gap: 14px;
    margin-top: 34px;
  }

  .care-tabs button {
    font-size: 12px;
    line-height: 20px;
  }

  .care-tabs .is-active {
    min-width: 0;
    min-height: 0;
    padding: 12px 24px;
  }

  .care-computer {
    width: min(760px, 78vw);
    margin-top: 34px;
  }

  .governance-slider {
    --governance-card-width: 336px;
    --governance-card-gap: 28px;
  }

  .governance-slider__shell {
    width: calc(100% - 40px);
    gap: 10px;
  }

  .governance-slider__viewport {
    --governance-card-width: 336px;
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 40px,
      #000 calc(100% - 40px),
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 40px,
      #000 calc(100% - 40px),
      transparent 100%
    );
  }

  .governance-slider__nav {
    width: 40px;
    height: 40px;
  }

  .governance-card__icon {
    width: 72px;
    height: 72px;
  }

  .governance-card h3 {
    font-size: 22px;
  }

  .site-footer__nav-row {
    gap: 32px;
  }

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

@media (max-width: 920px) {
  .hero-section {
    min-height: 840px;
  }

  .hero-section::before {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 14px 20px;
  }

  .site-logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    z-index: 32;
  }

  .site-logo img {
    width: 132px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 32;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--yellow);
    border-radius: 999px;
    transition: opacity 160ms ease, transform 160ms ease;
    transform-origin: center;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    z-index: 31;
    top: 56px;
    right: 0;
    left: auto;
    display: grid;
    grid-template-columns: 1fr;
    width: min(248px, calc(100vw - 36px));
    gap: 0;
    padding: 18px 24px 20px;
    background: rgba(77, 31, 114, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 22px 50px rgba(26, 10, 44, 0.25);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-nav__link {
    display: block;
    width: 100%;
    padding: 11px 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
  }

  .primary-nav__link::after {
    display: none;
  }

  .primary-nav__link--group2 {
    color: rgba(255, 255, 255, 0.56);
  }

  .primary-nav__link--group-start {
    margin-left: 0;
  }

  .primary-nav__link--active {
    color: var(--yellow);
    font-weight: 700;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 110px;
  }

  .hero-copy {
    min-width: 0;
    max-width: 100%;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 36px;
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .hero-copy p {
    max-width: 100%;
  }

  .hero-visual {
    justify-self: center;
    transform-origin: center;
  }

  .challenge-section {
    padding-top: 42px;
  }

  .challenge-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 620px;
  }

  .challenge-media {
    justify-self: center;
    width: min(540px, 100%);
    height: auto;
    transform: none;
  }

  .challenge-copy {
    padding-top: 0;
    padding-left: 0;
  }

  .challenge-copy>.section-pill {
    min-height: 0;
    padding: 12px 24px;
    font-size: 10px;
  }

  .challenge-copy h2 {
    max-width: 560px;
    font-size: 34px;
  }

  .challenge-copy p {
    max-width: 560px;
  }

  .proposal-section {
    padding-top: 86px;
  }

  .proposal-inner h2 {
    font-size: 34px;
  }

  .proposal-inner>.section-pill {
    min-height: 0;
    padding: 12px 24px;
  }

  .proposal-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
  }

  .care-section {
    --care-tech-drop: 72px;

    min-height: 0;
    padding-top: 160px;
    padding-bottom: calc(72px + var(--care-tech-drop));
  }

  .care-section__bg {
    bottom: var(--care-bg-bottom);
  }

  .care-section__inner {
    margin-top: 7rem;
  }

  .care-section__top {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 620px;
    margin: 0 auto;
  }

  .care-copy h2,
  .care-copy>p:not(.section-pill),
  .care-list {
    max-width: 620px;
  }

  .care-list {
    margin-top: 40px;
  }

  .care-visual {
    justify-self: center;
    width: min(532px, 100%);
  }

  .care-tech {
    margin-top: 48px;
  }

  .care-tech h2 {
    font-size: 40px;
    line-height: 46px;
    letter-spacing: -0.5px;
  }

  .care-tech>p:not(.section-pill) {
    max-width: 620px;
    font-size: 15px;
    line-height: 22px;
  }

  .care-tech__line-break {
    display: none;
  }

  .care-tabs {
    gap: 16px;
  }

  .care-tabs button {
    min-width: 0;
    font-size: 12px;
    line-height: 20px;
  }

  .care-tabs .is-active {
    min-width: 0;
    min-height: 0;
    padding: 12px 24px;
  }

  .care-computer {
    width: min(680px, 100%);
    margin-top: 38px;
  }

  .care-tech__caption h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .care-tech__caption p {
    font-size: 14px;
    line-height: 20px;
  }

  .difference-section {
    padding-top: 132px;
    background: linear-gradient(160deg, #572580 0%, #693fb3 100%);
  }

  .difference-section__bg {
    display: none;
  }

  .difference-section__line,
  .difference-section__line--top,
  .difference-section__line--yellow {
    display: none;
  }

  .difference-hero {
    min-height: 820px;
  }

  .difference-hero::after {
    display: none;
  }

  .difference-copy {
    width: 100%;
    max-width: 620px;
    padding-top: 20px;
  }

  .difference-copy h2 {
    font-size: 40px;
    line-height: 46px;
    letter-spacing: -0.5px;
  }

  .difference-copy>p:not(.section-pill) {
    max-width: 620px;
    font-size: 16px;
    line-height: 24px;
  }

  .difference-science {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    width: min(620px, 100%);
    margin: -20px auto 0;
  }

  .difference-cards {
    grid-template-columns: 1fr;
    width: min(620px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .difference-card h3 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .difference-card li {
    font-size: 13px;
  }

  .audience-block {
    margin-top: 60px;
  }

  .audience-block h2 {
    font-size: 40px;
    line-height: 46px;
    letter-spacing: -0.5px;
  }

  .audience-block__intro>p:not(.section-pill) {
    max-width: 620px;
    font-size: 16px;
    line-height: 24px;
  }

  .audience-cards {
    grid-template-columns: 1fr;
    max-width: 507px;
    gap: 16px;
    margin-top: 64px;
    margin-right: auto;
    margin-left: auto;
  }

  .audience-card {
    min-height: 0;
    padding: 48px 28px 32px;
    border-radius: 18px;
  }

  .audience-card__art {
    margin-bottom: 12px;
  }

  .audience-card__art img {
    width: 84%;
    margin: 0 auto;
  }

  .audience-card h3 {
    padding: 0;
    font-size: 26px;
    line-height: 34px;
    letter-spacing: -0.4px;
  }

  .audience-card p {
    margin: 16px auto 0;
    padding: 0;
    font-size: 14px;
    line-height: 21px;
  }

  .governance-section {
    padding: 112px 0 118px;
  }

  .governance-inner h2 {
    font-size: 40px;
    line-height: 46px;
    letter-spacing: -0.5px;
  }

  .governance-intro {
    max-width: 620px;
    font-size: 16px;
    line-height: 24px;
  }

  .governance-slider {
    --governance-card-width: min(360px, calc(100vw - 120px));
    --governance-card-gap: 18px;

    margin-top: 64px;
  }

  .governance-slider__shell {
    width: calc(100% - 36px);
    gap: 8px;
  }

  .governance-slider__viewport {
    --governance-card-width: min(360px, calc(100vw - 120px));
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 28px,
      #000 calc(100% - 28px),
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 28px,
      #000 calc(100% - 28px),
      transparent 100%
    );
  }

  .governance-track {
    width: max-content;
  }

  .metric-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    max-width: 520px;
    gap: 56px 32px;
    margin-top: 92px;
  }

  .metric-item strong {
    font-size: 86px;
  }

  .metric-item p {
    margin-top: 20px;
    font-size: 11px;
  }

  .final-cta {
    min-height: 560px;
    padding: 96px 0;
  }

  .site-footer__nav-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .footer-nav a {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    min-height: 850px;
  }

  .hero-section::after {
    background-size: cover;
    background-position: top center;
  }

  .hero-section::before {
    display: none;
  }

  .hero-content {
    width: calc(100% - 36px);
    max-width: 520px;
  }

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

  .primary-nav {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 96px;
  }

  .hero-copy {
    min-width: 0;
    max-width: 100%;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 31px;
    line-height: 1.16;
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .hero-copy p {
    max-width: 100%;
    margin-top: 1rem;
    font-size: 14px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 25px;
  }

  .button {
    min-width: 0;
    min-height: 38px;
    padding: 0 18px;
    font-size: 12px;
  }

  .hero-visual {
    width: min(360px, 100%);
    height: 330px;
    transform: none;
  }

  .hero-visual::before {
    right: -8px;
    width: 96%;
    height: 308px;
  }

  .hero-visual__outline {
    right: -30px;
    bottom: 12px;
    width: 112%;
    height: 338px;
  }

  .hero-visual__frame {
    right: 0;
    bottom: 12px;
    width: 100%;
    height: auto;
  }

  .challenge-section {
    padding: 36px 0 72px;
  }

  .challenge-layout {
    width: calc(100% - 36px);
    max-width: 520px;
  }

  .challenge-media {
    height: auto;
  }

  .challenge-media__frame {
    inset: 8.5% 0 8.5% 7.8%;
    border-radius: 38px;
  }

  .section-pill {
    min-width: 0;
    min-height: 0;
    padding: 12px 24px;
    font-size: 12px;
    line-height: 1;
  }

  .challenge-copy>.section-pill {
    min-height: 0;
    margin-bottom: 16px;
    padding: 12px 24px;
    font-size: 12px;
  }

  .section-pill--light,
  .proposal-inner>.section-pill,
  .governance-inner .section-pill,
  .logo-slider .section-pill {
    min-width: 0;
    min-height: 0;
    padding: 12px 24px;
    font-size: 12px;
    line-height: 1;
  }

  .challenge-copy h2 {
    font-size: 29px;
  }

  .challenge-copy p {
    font-size: 12.5px;
  }

  .proposal-section {
    padding: 72px 0 72px;
  }

  .proposal-inner {
    width: calc(100% - 36px);
    max-width: 520px;
  }

  .proposal-inner h2 {
    font-size: 28px;
  }

  .proposal-inner>.section-pill {
    min-width: 0;
    min-height: 0;
    padding: 12px 24px;
    font-size: 12px;
  }

  .proposal-intro {
    font-size: 12px;
  }

  .proposal-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 38px;
  }

  .proposal-card {
    min-height: 0;
    padding: 28px 24px 24px;
  }

  .care-section {
    --care-tech-drop: 40px;

    margin-top: 0;
    padding: 0px 0 calc(60px + var(--care-tech-drop));
  }

  .care-section__inner {
    width: calc(100% - 36px);
    max-width: 520px;
    margin-top: 7rem;
  }

  .care-copy h2 {
    font-size: 29px;
    line-height: 1.14;
    letter-spacing: 0;
  }

  .care-copy>p:not(.section-pill) {
    font-size: 12.5px;
    line-height: 1.45;
  }

  .care-list {
    margin-top: 34px;
    padding-left: 14px;
  }

  .care-list__item {
    padding: 0 0 14px 14px;
  }

  .care-list__item+.care-list__item {
    padding-top: 14px;
  }

  .care-list__item button {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .care-list__icon {
    width: 24px;
    height: 24px;
    font-size: 24px;
  }

  .care-list__item p {
    margin-top: 8px;
    font-size: 10.5px;
    line-height: 1.35;
  }

  .care-visual {
    padding-bottom: 60px;
  }

  .care-tech h2 {
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: 0;
  }

  .care-tabs {
    gap: 8px;
  }

  .care-tech>p:not(.section-pill) {
    font-size: 12.5px;
    line-height: 1.45;
  }

  .care-tabs button {
    font-size: 9px;
    line-height: 18px;
  }

  .care-computer {
    width: 112%;
    max-width: none;
    margin-top: 34px;
    margin-left: -6%;
  }

  .care-tech__caption {
    margin-top: 30px;
  }

  .care-tech__caption h3 {
    font-size: 19px;
  }

  .care-tech__caption p {
    font-size: 13px;
    line-height: 1.35;
  }

  .difference-section {
    min-height: 0;
    margin-top: 72px;
    padding: 132px 0 88px;
    background: linear-gradient(160deg, #572580 0%, #693fb3 100%);
  }

  .difference-section__bg {
    display: none;
  }

  .difference-section__line {
    display: none;
  }

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

  .difference-hero::after {
    display: block;
    top: 226px;
    right: -20px;
    z-index: 2;
    width: min(458px, 114vw);
    opacity: 0.75;
  }

  .difference-section__inner {
    width: calc(100% - 36px);
    max-width: 520px;
  }

  .difference-copy {
    max-width: none;
    padding-top: 0;
  }

  .difference-copy h2 {
    font-size: 29px;
    line-height: 1.15;
    letter-spacing: 0;
  }

  .difference-copy>p:not(.section-pill) {
    font-size: 12.5px;
    line-height: 1.45;
  }

  .difference-cards {
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    margin-top: 30px;
  }

  .difference-card {
    min-height: 372px;
    padding: 40px 32px 34px;
    border-radius: 28px;
  }

  .difference-card__icon,
  .difference-card--light .difference-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
  }

  .difference-card h3 {
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -0.5px;
  }

  .difference-card ul {
    gap: 14px;
    margin-top: 32px;
  }

  .difference-card li {
    gap: 12px;
    font-size: 13px;
    line-height: 1.5;
  }

  .difference-card__check {
    width: 20px;
    height: 20px;
  }

  .difference-science {
    position: relative;
    z-index: 1;
    width: min(430px, 100%);
    margin: 34px auto 0;
  }

  .audience-block h2 {
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: 0;
  }

  .audience-block__intro>p:not(.section-pill) {
    color: #ffffff;
    font-size: 12.5px;
    line-height: 1.45;
  }

  .audience-block {
    margin-top: 42px;
  }

  .audience-cards {
    max-width: 292px;
    gap: 12px;
    margin-top: 48px;
  }

  .audience-card {
    padding: 32px 20px 24px;
    border-radius: 14px;
  }

  .audience-card__art {
    margin-bottom: 10px;
  }

  .audience-card__art img {
    width: 78%;
  }

  .audience-card h3 {
    padding: 0;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0;
  }

  .audience-card p {
    margin: 12px auto 0;
    padding: 0;
    font-size: 12px;
    line-height: 18px;
  }

  .governance-section {
    padding: 86px 0 94px;
  }

  .governance-inner {
    width: calc(100% - 36px);
    max-width: 520px;
  }

  .governance-inner h2 {
    font-size: 32px;
    line-height: 1.15;
    letter-spacing: -0.2px;
  }

  .governance-intro {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.45;
  }

  .governance-slider {
    --governance-card-width: min(280px, calc(100vw - 100px));
    --governance-card-gap: 14px;
    margin-top: 40px;
  }

  .governance-slider__shell {
    width: calc(100% - 24px);
  }

  .governance-slider__viewport {
    --governance-card-width: min(280px, calc(100vw - 100px));
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 20px,
      #000 calc(100% - 20px),
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 20px,
      #000 calc(100% - 20px),
      transparent 100%
    );
  }

  .governance-card {
    height: 232px;
    padding: 28px;
    border-radius: 28px;
  }

  .governance-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 28px;
  }

  .governance-card h3 {
    font-size: 20px;
    line-height: 1.18;
  }

  .metric-grid {
    gap: 40px 18px;
    margin-top: 64px;
  }

  .metric-item strong {
    font-size: 58px;
  }

  .metric-item strong span {
    font-size: 0.38em;
  }

  .metric-item p {
    margin-top: 14px;
    font-size: 9px;
  }

  .final-cta {
    min-height: 460px;
    padding: 86px 0;
  }

  .final-cta__inner {
    width: calc(100% - 36px);
    max-width: 520px;
  }

  .final-cta h2,
  .final-cta h2 span {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -0.4px;
  }

  .final-cta p {
    margin-top: 34px;
    font-size: 15px;
    line-height: 1.45;
  }

  .final-cta__line-break {
    display: none;
  }

  .final-cta__actions {
    gap: 12px;
    margin-top: 38px;
  }

  .final-cta .button {
    min-width: 210px;
    min-height: 44px;
    padding: 0 24px;
    font-size: 12px;
  }

  .site-footer {
    padding: 56px 0 76px;
  }

  .site-footer__inner {
    width: calc(100% - 36px);
    max-width: 520px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-brand__logo {
    width: 112px;
    height: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .hero-copy h1 {
    font-size: 28px;
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {

  .button,
  .header-cta,
  .primary-nav__link,
  .primary-nav__link::after,
  .logo-slider__track,
  .governance-track {
    transition-duration: 1ms;
  }

  .button--primary:hover,
  .button--secondary:hover,
  .button--primary:active,
  .button--secondary:active,
  .header-cta:hover,
  .header-cta:active {
    transform: none;
  }

  .primary-nav__link::after {
    transition: none;
  }
}