:root {
  color-scheme: dark;
  --color-bg: #080706;
  --color-surface: #11100e;
  --color-surface-raised: #191612;
  --color-text: #f5f0e6;
  --color-text-muted: #c8bfb0;
  --color-gold: #c9a227;
  --color-gold-light: #ead080;
  --color-bronze: #72531a;
  --color-line: rgba(234, 208, 128, 0.22);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.48);
  --radius-small: 4px;
  --radius-medium: 14px;
  --section-space: clamp(76px, 8vw, 120px);
  --section-space-large: clamp(92px, 10vw, 144px);
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 128px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(201, 162, 39, 0.08), transparent 28rem),
    var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--color-gold-light);
  color: #0a0907;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.25rem, 6.6vw, 6.4rem);
}

h2 {
  font-size: clamp(2.55rem, 4.55vw, 4.6rem);
}

h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  line-height: 1.08;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: var(--radius-small);
  background: var(--color-gold-light);
  color: #080706;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(234, 208, 128, 0.13);
  background: rgba(8, 7, 6, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: #d8d0c3;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--color-gold);
  content: "";
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 24px;
  border: 1px solid #e2c46a;
  border-radius: var(--radius-small);
  background: linear-gradient(135deg, #ead080 0%, #c99c2e 58%, #a87318 100%);
  box-shadow: 0 14px 34px rgba(201, 162, 39, 0.16);
  color: #0b0906;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(201, 162, 39, 0.24);
  filter: brightness(1.05);
}

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

.button-small {
  min-height: 42px;
  padding: 11px 16px;
  font-size: 0.68rem;
}

:focus-visible {
  outline: 3px solid #f0d77f;
  outline-offset: 4px;
}

.eyebrow {
  color: var(--color-gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #050504;
}

.hero-layers {
  position: relative;
  width: 100%;
  aspect-ratio: 1983 / 793;
  overflow: hidden;
  isolation: isolate;
  background: #050504;
}

.hero-layer {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.hero-layer-background {
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-layer-logo {
  top: 18.5%;
  left: 12.8%;
  z-index: 2;
  width: 22.2%;
}

.hero-layer-etnia {
  top: 29%;
  left: 29.2%;
  z-index: 3;
  width: 31.5%;
}

.hero-layer-black {
  top: 49%;
  left: 24%;
  z-index: 4;
  width: 31.5%;
}

.hero-layer-man {
  top: 0;
  left: 61%;
  z-index: 5;
  width: 26.6%;
}

.hero-stage-entrance .hero-layer-background {
  animation: hero-background-in 1.45s cubic-bezier(0.16, 1, 0.3, 1) both;
  transform-origin: center;
}

.hero-stage-entrance .hero-layer-logo {
  animation: hero-logo-in 0.92s 0.12s cubic-bezier(0.16, 1, 0.3, 1) both;
  transform-origin: center;
}

.hero-stage-entrance .hero-layer-etnia {
  animation: hero-word-left-in 0.9s 0.24s cubic-bezier(0.16, 1, 0.3, 1) both;
  transform-origin: center;
}

.hero-stage-entrance .hero-layer-black {
  animation: hero-word-right-in 0.9s 0.36s cubic-bezier(0.16, 1, 0.3, 1) both;
  transform-origin: center;
}

.hero-stage-entrance .hero-layer-man {
  animation: hero-man-in 1.08s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  transform-origin: center bottom;
}

.credibility-strip {
  animation: hero-copy-in 0.72s 0.16s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy-shell {
  animation: hero-copy-in 0.72s 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 44px, 0) scale(0.99);
  transition:
    opacity 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.58s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

html.reveal-ready [data-reveal="left"] {
  transform: translate3d(-56px, 0, 0) scale(0.99);
}

html.reveal-ready [data-reveal="right"] {
  transform: translate3d(56px, 0, 0) scale(0.99);
}

html.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.learning-grid > article:nth-child(2) {
  --reveal-delay: 90ms;
}

.learning-grid > article:nth-child(3) {
  --reveal-delay: 170ms;
}

.learning-grid > article:nth-child(4) {
  --reveal-delay: 250ms;
}

@keyframes hero-drift {
  from {
    transform: scale(1.035);
  }

  to {
    transform: scale(1);
  }
}

@keyframes hero-background-in {
  from {
    opacity: 0.55;
    transform: scale(1.035);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-logo-in {
  from {
    opacity: 0;
    transform: translate3d(-24px, 18px, 0) scale(0.86);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-word-left-in {
  from {
    opacity: 0;
    transform: translate3d(-42px, -6px, 0) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-word-right-in {
  from {
    opacity: 0;
    transform: translate3d(42px, 8px, 0) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-man-in {
  from {
    opacity: 0;
    transform: translate3d(52px, 16px, 0) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-shade {
  display: none;
}

.hero-copy-shell {
  position: relative;
  z-index: 2;
  min-height: 0;
  padding-block: 0;
}

.hero-copy {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(56px, 7vw, 96px);
  padding-block: clamp(64px, 7vw, 88px);
  border-bottom: 1px solid var(--color-line);
}

.hero-primary,
.hero-support {
  min-width: 0;
}

.hero-primary {
  display: grid;
  gap: 14px;
}

.hero-support {
  display: grid;
  align-content: center;
  gap: 26px;
}

.hero-copy h1 {
  margin-top: 0;
  max-width: none;
  font-size: clamp(2.3rem, 3vw, 3rem);
}

.hero-lead {
  max-width: 57ch;
  margin-top: 0;
  color: #ede0c7;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--color-text-muted);
  font-size: 0.86rem;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
}

.hero-points li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 1px;
  background: var(--color-gold);
  content: "";
}

.hero-actions {
  margin-top: 2px;
}

.hero-actions p {
  margin-top: 10px;
  color: #9f978a;
  font-size: 0.72rem;
}

.credibility-strip {
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: #2b2018;
}

.credibility-grid {
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.credibility-grid p {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: clamp(8px, 1vw, 14px);
  padding: 22px clamp(18px, 2.8vw, 36px) 22px 16px;
  text-align: center;
}

.credibility-grid p + p {
  border-left: 1px solid var(--color-line);
}

.credibility-grid strong {
  color: #f0cf73;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.credibility-grid span {
  margin-top: 0;
  color: #e5bd5f;
  font-size: clamp(0.72rem, 0.9vw, 0.84rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: none;
  white-space: nowrap;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(56px, 7vw, 96px);
  align-items: center;
}

.split-layout-reverse .portrait-frame {
  order: 2;
}

.split-layout-reverse .section-copy {
  order: 1;
}

.portrait-frame {
  position: relative;
  width: min(100%, 520px);
  isolation: isolate;
}

.portrait-frame::before {
  position: absolute;
  z-index: -1;
  inset: -18px 18px 18px -18px;
  border: 1px solid var(--color-gold);
  content: "";
  opacity: 0.7;
}

.portrait-frame::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 42%;
  aspect-ratio: 1;
  border-right: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  content: "";
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-deep);
  filter: saturate(0.86) contrast(1.05);
}

.portrait-frame-gold::before {
  inset: 18px -18px -18px 18px;
}

.section-copy {
  max-width: 560px;
  padding-top: 0;
}

.section-copy h2,
.section-heading h2 {
  margin-top: 14px;
}

.section-copy > p:not(.eyebrow),
.section-heading > p:not(.eyebrow) {
  margin-top: 22px;
  max-width: 68ch;
  color: var(--color-text-muted);
}

.lead-copy {
  color: #eee2cc !important;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.25;
}

.section-recognition::after {
  position: absolute;
  z-index: -1;
  top: 12%;
  right: -10%;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(201, 162, 39, 0.12);
  border-radius: 50%;
  content: "";
}

.section-recognition .portrait-frame {
  width: min(100%, 520px);
  margin-left: 0;
}

.section-recognition .section-copy {
  max-width: 540px;
  padding-top: 0;
}

.section-recognition h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2rem, 2.55vw, 2.5rem);
}

.section-method {
  overflow: hidden;
  padding-block: var(--section-space-large);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background:
    radial-gradient(circle at 85% 20%, rgba(201, 162, 39, 0.13), transparent 28rem),
    var(--color-surface);
}

.section-method .split-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.section-method .portrait-frame {
  width: min(100%, 520px);
  justify-self: end;
}

.section-method .section-copy {
  max-width: 540px;
  padding-top: 0;
}

.section-method h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2rem, 2.55vw, 2.5rem);
}

blockquote {
  margin-top: 30px;
  padding: 6px 0 6px 24px;
  border-left: 2px solid var(--color-gold);
  color: var(--color-gold-light);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  font-style: italic;
  line-height: 1.24;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  border-top: 1px solid var(--color-line);
}

.stats-grid p {
  padding-top: 24px;
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  color: var(--color-gold-light);
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
}

.stats-grid span {
  margin-top: 6px;
  color: #a49b8d;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.centered-heading {
  width: min(760px, 100%);
  margin-inline: auto;
  text-align: center;
}

.centered-heading p:not(.eyebrow) {
  margin-inline: auto;
}

.learning-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
  margin-top: clamp(42px, 5vw, 64px);
}

.learning-card {
  min-height: 276px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--color-line);
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.1), rgba(8, 7, 6, 0.92)),
    radial-gradient(circle at 75% 18%, rgba(201, 162, 39, 0.28), transparent 19rem),
    #18140e;
  transition: border-color 180ms ease, transform 180ms ease;
}

.learning-card:hover {
  transform: translateY(-3px);
  border-color: rgba(234, 208, 128, 0.48);
}

.learning-card-featured {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 276px;
}

.learning-card > span {
  color: var(--color-gold-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.learning-card h3 {
  max-width: 14ch;
  margin-top: 18px;
}

.learning-card p {
  max-width: 55ch;
  margin-top: 15px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.gallery-section {
  overflow: hidden;
  padding-block: var(--section-space-large) clamp(78px, 8vw, 112px);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: #0d0b09;
}

.gallery-heading {
  max-width: 1180px;
  margin-bottom: 34px;
}

.gallery-heading h2 {
  max-width: none;
  white-space: nowrap;
}

.carousel {
  position: relative;
}

.carousel-viewport {
  width: 100%;
  overflow-x: auto;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  scroll-behavior: auto;
  scroll-snap-type: none;
  scrollbar-width: none;
  touch-action: pan-x;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  width: max-content;
  display: flex;
  align-items: stretch;
  gap: clamp(12px, 1.6vw, 22px);
  will-change: transform;
}

.carousel-slide {
  position: relative;
  flex: 0 0 clamp(225px, 22vw, 310px);
  height: clamp(360px, 34vw, 480px);
  overflow: hidden;
  background: #16130f;
}

.carousel-slide-featured {
  flex-basis: clamp(290px, 29vw, 402px);
}

.carousel-slide-square {
  flex-basis: clamp(320px, 32vw, 440px);
}

.carousel-slide::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(234, 208, 128, 0.28);
  box-shadow: inset 0 0 0 6px rgba(8, 7, 6, 0.34);
  content: "";
  pointer-events: none;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
  transition: filter 350ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.carousel-slide:hover img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.02);
}

.carousel-toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.carousel-arrows {
  display: flex;
  gap: 10px;
}

.carousel-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(234, 208, 128, 0.5);
  border-radius: 50%;
  background: transparent;
  color: var(--color-gold-light);
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.carousel-button:hover {
  transform: translateY(-2px);
  background: var(--color-gold-light);
  color: #080706;
}

.carousel-status {
  color: #a49b8d;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.carousel-toggle {
  justify-self: end;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid rgba(234, 208, 128, 0.35);
  background: transparent;
  color: #c8bfb0;
  cursor: pointer;
  font-size: 0.72rem;
}

.authority-section {
  background:
    radial-gradient(circle at 18% 75%, rgba(201, 162, 39, 0.09), transparent 25rem),
    var(--color-bg);
}

.authority-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(56px, 7vw, 96px);
  align-items: center;
}

.authority-image {
  position: relative;
  width: min(100%, 520px);
  max-width: none;
  margin-top: 0;
}

.authority-image::before {
  position: absolute;
  z-index: -1;
  right: -22px;
  bottom: -22px;
  width: 70%;
  height: 70%;
  border-right: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  content: "";
}

.authority-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-deep);
  filter: saturate(0.88) contrast(1.04);
}

.authority-copy {
  padding-top: 0;
}

.authority-copy h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2rem, 2.55vw, 2.5rem);
}

.authority-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--color-line);
}

.authority-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding-block: 18px;
  border-bottom: 1px solid var(--color-line);
}

.authority-list dt {
  color: var(--color-gold-light);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.authority-list dd {
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.faq-section {
  border-top: 1px solid var(--color-line);
  background: var(--color-surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(56px, 7vw, 96px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 132px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--color-line);
}

.faq-list summary {
  position: relative;
  padding: 26px 48px 26px 0;
  color: var(--color-text);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.15;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(234, 208, 128, 0.42);
  border-radius: 50%;
  color: var(--color-gold-light);
  content: "+";
  font-family: var(--font-body);
  font-size: 1rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 66ch;
  padding: 0 48px 26px 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.final-cta {
  overflow: hidden;
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -220px;
  left: -130px;
  width: 520px;
  height: 520px;
}

.final-cta::after {
  right: -100px;
  bottom: -240px;
  width: 480px;
  height: 480px;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  width: min(850px, calc(100% - 48px));
}

.final-cta h2 {
  margin-top: 14px;
}

.final-cta p:not(.eyebrow) {
  max-width: 62ch;
  margin: 22px auto 0;
  color: var(--color-text-muted);
}

.final-cta .button {
  margin-top: 32px;
}

.site-footer {
  padding-block: 30px;
  border-top: 1px solid var(--color-line);
  background: #060504;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #8f877b;
  font-size: 0.7rem;
}

.footer-inner strong {
  color: #cfc4b1;
}

@media (max-width: 1040px) {
  .main-nav {
    display: none;
  }

  .hero-copy {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
  }

  .split-layout,
  .authority-layout {
    gap: 54px;
  }

  .section-method .split-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 76px;
  }

  .hero {
    --hero-mobile-height: clamp(760px, 172vw, 820px);
    position: relative;
  }

  .container {
    width: min(100% - 32px, 680px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

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

  .hero-stage {
    min-height: var(--hero-mobile-height);
    overflow: hidden;
  }

  .hero-layers {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }

  .hero-layer-background {
    object-position: 50% 42%;
  }

  .hero-layer-logo {
    top: 3%;
    left: 4%;
    width: 28%;
  }

  .hero-layer-etnia {
    top: 4%;
    left: 27%;
    z-index: 4;
    width: 42%;
  }

  .hero-layer-black {
    top: 15%;
    left: 24%;
    z-index: 4;
    width: 42%;
  }

  .hero-layer-man {
    top: 0;
    right: -7%;
    left: auto;
    z-index: 5;
    width: 45%;
    clip-path: inset(0 0 26% 0);
  }

  .hero-shade {
    position: absolute;
    z-index: 6;
    inset: 0;
    display: block;
    height: auto;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(5, 5, 4, 0.08) 0%,
      rgba(5, 5, 4, 0.1) 24%,
      rgba(5, 5, 4, 0.48) 40%,
      rgba(8, 7, 6, 0.94) 58%,
      #080706 88%
    );
  }

  .hero-copy-shell {
    position: absolute;
    z-index: 7;
    inset: 0 0 auto;
    display: flex;
    align-items: flex-end;
    width: min(100% - 32px, 680px);
    min-height: 0;
    height: var(--hero-mobile-height);
    margin-inline: auto;
    padding: 0;
  }

  .hero-copy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    margin-top: 0;
    padding: 0;
    border-bottom: 0;
    text-align: center;
  }

  .hero-primary {
    justify-items: center;
    gap: 12px;
    transform: translateY(12px);
  }

  .hero-support {
    justify-items: center;
    gap: 16px;
  }

  .hero-copy h1 {
    margin-top: 0;
    font-size: clamp(2.45rem, 11vw, 3.7rem);
    line-height: 0.95;
  }

  .hero-lead {
    max-width: 32ch;
    margin: 0 auto;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .hero-points {
    width: min(100%, 320px);
    margin: 0 auto;
    text-align: left;
    font-size: 0.75rem;
  }

  .hero-actions {
    margin-top: 0;
  }

  .hero-actions .button {
    width: auto;
    min-width: 200px;
  }

  .hero-actions p {
    margin-top: 8px;
    font-size: 0.66rem;
  }

  .credibility-grid {
    grid-template-columns: 1fr;
  }

  .credibility-grid p {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    align-items: baseline;
    justify-content: initial;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 18px 12px;
    text-align: left;
  }

  .credibility-grid span {
    margin-top: 0;
    font-size: 0.74rem;
    white-space: normal;
  }

  .credibility-grid strong {
    min-width: 0;
    font-size: clamp(1.15rem, 4.8vw, 1.45rem);
  }

  .credibility-grid p + p {
    border-top: 1px solid var(--color-line);
    border-left: 0;
  }

  .section {
    padding-block: 70px;
  }

  .split-layout,
  .authority-layout,
  .faq-layout,
  .section-method .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-method {
    padding-block: 78px;
  }

  .section-method .section-copy {
    order: 1;
  }

  .section-method .portrait-frame {
    order: 2;
    justify-self: center;
  }

  .portrait-frame,
  .authority-image {
    width: calc(100% - 16px);
    max-width: 520px;
    margin-inline: auto;
  }

  .portrait-frame::before {
    inset: -10px 10px 10px -10px;
  }

  .portrait-frame-gold::before {
    inset: 10px -10px -10px 10px;
  }

  .portrait-frame::after {
    right: -10px;
    bottom: -10px;
  }

  .authority-image::before {
    right: -10px;
    bottom: -10px;
  }

  .section-recognition .portrait-frame {
    width: calc(100% - 16px);
    max-width: 500px;
    margin-inline: auto;
  }

  .section-copy,
  .section-recognition .section-copy {
    padding-top: 0;
  }

  .section-recognition h2,
  .section-method h2,
  .authority-copy h2,
  .gallery-heading h2 {
    white-space: normal;
  }

  .hero-title-break {
    display: none;
  }

  .learning-grid {
    grid-template-columns: 1fr;
  }

  .learning-card,
  .learning-card-featured {
    min-height: 0;
  }

  .learning-card-featured {
    grid-row: auto;
  }

  .carousel-viewport {
    padding-inline: 16px;
  }

  .carousel-slide {
    flex-basis: min(68vw, 286px);
    height: min(104vw, 430px);
  }

  .carousel-slide-featured {
    flex-basis: min(82vw, 342px);
  }

  .carousel-slide-square {
    flex-basis: min(86vw, 360px);
  }

  .carousel-toolbar {
    grid-template-columns: 1fr auto;
  }

  .carousel-status {
    display: none;
  }

  .faq-heading {
    position: static;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: clamp(2.5rem, 13vw, 3.5rem);
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    gap: 8px;
  }

  .button-small {
    max-width: 152px;
  }

  .hero-copy {
    padding: 42px 0 50px;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 12vw, 3.65rem);
  }

  .hero-points {
    font-size: 0.8rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid p + p {
    padding-top: 18px;
  }

  .carousel-toolbar {
    gap: 12px;
  }

  .carousel-toggle {
    max-width: 120px;
    text-align: right;
  }

  .authority-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .credibility-grid p {
    gap: 6px;
    padding-inline: 12px;
  }

  .credibility-grid strong {
    font-size: clamp(1.15rem, 5.8vw, 1.45rem);
  }

  .credibility-grid span {
    font-size: 0.76rem;
    white-space: normal;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  html.reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-stage-entrance .hero-layer {
    opacity: 1;
    transform: none;
  }
}
