/* styles.css — Modro Consultoria */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter Tight", "Söhne", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
}
.mc-app {
  width: 100vw;
  max-width: 100vw;
  min-height: 100vh;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  font-family: "Inter Tight", "Söhne", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  overflow-x: clip;
}

.elementor-widget-html:has(.mc-app),
.elementor-widget-html:has(.mc-app) > .elementor-widget-container {
  width: 100%;
  max-width: none;
}

/* ─── Nav ───────────────────────────────────────────────────────────────── */
.mc-nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.mc-nav.scrolled { border-color: var(--rule); }
.mc-nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 14px 32px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
}
.mc-nav-brand {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; text-decoration: none; color: var(--fg);
  letter-spacing: -0.01em;
}
.mc-nav-links { display: flex; gap: 28px; justify-content: center; }
.mc-nav-links a {
  color: var(--fg-muted); text-decoration: none; font-size: 13px;
  font-weight: 450; letter-spacing: 0.005em;
  transition: color .18s;
}
.mc-nav-links a:hover { color: var(--fg); }
.mc-nav-right { display: flex; gap: 12px; align-items: center; justify-content: flex-end; }
.mc-lang {
  background: transparent; border: 1px solid var(--rule); color: var(--fg-muted);
  padding: 6px 10px; border-radius: 999px; cursor: pointer; font-size: 11px;
  font-weight: 500; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 4px;
}
.mc-lang .active { color: var(--fg); }
.mc-lang-sep { opacity: 0.4; }
.mc-nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 500; text-decoration: none;
  letter-spacing: 0.01em;
}

/* ─── Eyebrow + section heads ───────────────────────────────────────────── */
.mc-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-muted);
}
.mc-tick { width: 18px; height: 1px; display: inline-block; }
.mc-sec-head {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px;
  margin-bottom: 32px;
}
.mc-sec-title {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 400; line-height: 1.05; letter-spacing: -0.02em;
  margin: 16px 0 0;
  max-width: 18ch;
  text-wrap: balance;
}
.mc-sec-kicker {
  font-size: 17px; color: var(--fg-muted); margin: 16px 0 0;
  max-width: 56ch; line-height: 1.55;
}
.mc-app section { padding: var(--sec-pad, 56px) 0; }

@media (prefers-reduced-motion: no-preference) {
  .mc-app [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity .65s ease,
      transform .65s cubic-bezier(.22, 1, .36, 1),
      border-color .2s,
      box-shadow .2s;
    transition-delay: var(--reveal-delay, 0ms);
  }
  .mc-app [data-reveal="left"] { transform: translateX(-34px); }
  .mc-app [data-reveal="right"] { transform: translateX(34px); }
  .mc-app [data-reveal].is-visible {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.mc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 4px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
  text-decoration: none; cursor: pointer;
  transition: transform .15s, opacity .15s;
}
.mc-btn:hover { transform: translateY(-1px); opacity: 0.92; }
.mc-btn-big { padding: 16px 26px; font-size: 14px; }
.mc-btn-icon { display: flex; align-items: center; }

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.mc-hero {
  position: relative;
  min-height: min(860px, calc(100vh - 64px));
  padding: 92px 0 66px;
  overflow: hidden;
  isolation: isolate;
  background: #091423;
}
.mc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #091423 url("assets/hero-bg.jpg") center / cover no-repeat;
}
.mc-hero-bg-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.12) contrast(1.02) brightness(1.12);
  transform: scale(1.015);
}
.mc-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 12, 23, .94) 0%, rgba(5, 12, 23, .78) 32%, rgba(5, 12, 23, .10) 62%, rgba(5, 12, 23, .20) 100%),
    linear-gradient(180deg, rgba(5, 12, 23, .20) 0%, rgba(5, 12, 23, .02) 42%, rgba(5, 12, 23, .54) 100%),
    radial-gradient(circle at 73% 38%, rgba(255, 255, 255, .22), transparent 22%),
    radial-gradient(circle at 74% 42%, rgba(132, 184, 255, .24), transparent 42%);
  pointer-events: none;
}
.mc-hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  min-height: 620px;
  display: grid; grid-template-columns: minmax(0, .95fr) minmax(280px, 1.05fr); gap: 80px; align-items: center;
}
.mc-hero-right {
  position: relative;
  min-height: 620px;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.mc-hero-right::before {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 4%;
  z-index: 0;
  width: min(420px, 70%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .20), transparent 68%);
  filter: blur(8px);
}
.mc-hero-left { display: flex; flex-direction: column; gap: 28px; }
.mc-hero .mc-eyebrow,
.mc-hero .mc-hero-title,
.mc-hero .mc-hero-lede,
.mc-hero .mc-meta-item { color: rgba(246, 249, 252, .78); }
.mc-hero .mc-hero-title { color: #F7FAFC; }
.mc-hero-title {
  font-size: clamp(48px, 7.2vw, 96px);
  font-weight: 400; line-height: 1.0; letter-spacing: -0.035em;
  margin: 0;
  display: flex; flex-direction: column; gap: 0;
}
.mc-hero-line { display: block; }
.mc-hero-italic {
  font-style: italic;
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #84B8FF !important;
}
.mc-hero-muted { color: rgba(246, 249, 252, .68); font-size: 0.62em; margin-top: 8px; }
.mc-hero-lede {
  font-size: 18px; line-height: 1.55; max-width: 52ch;
  color: rgba(246, 249, 252, .74); margin: 0;
}
.mc-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.mc-hero .mc-btn-primary {
  box-shadow: 0 18px 52px rgba(31, 78, 140, .34);
}
.mc-hero .mc-btn-ghost {
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.24) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.mc-hero-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.mc-meta-item {
  font-size: 12px; color: rgba(246, 249, 252, .72);
  display: flex; align-items: center; gap: 8px;
  letter-spacing: 0.005em;
}
.mc-meta-dot { width: 5px; height: 5px; border-radius: 50%; display: inline-block; }
.mc-hero-rule {
  position: relative;
  z-index: 2;
  max-width: 1280px; margin: 28px auto 0; padding: 0 32px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.mc-hero-proof {
  width: min(360px, 100%);
  margin-left: auto;
  align-self: end;
  position: relative;
  z-index: 2;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(7, 16, 29, .42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #fff;
  display: grid;
  gap: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}
.mc-hero-proof span {
  font-size: 13px;
  letter-spacing: .02em;
  color: rgba(255,255,255,.72);
}
.mc-hero-proof strong {
  font-family: "Instrument Serif", serif;
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 400;
  line-height: 1.02;
  color: #fff;
}
.mc-hero-proof small {
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: 12px;
  color: rgba(255,255,255,.62);
}

/* Portrait */
.mc-hero-video-panel {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--rule);
  overflow: hidden;
  background: var(--bg-raised);
  box-shadow: 0 28px 80px rgba(15, 30, 51, 0.08);
  isolation: isolate;
}
.mc-hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.92) contrast(1.03);
  transform: scale(1.01);
}
.mc-hero-video-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,30,51,0.04), transparent 38%),
    linear-gradient(0deg, rgba(15,30,51,0.38), transparent 42%);
  pointer-events: none;
  z-index: 1;
}
.mc-hero-video-badge {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 11px 13px;
  border: 1px solid;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mc-hero-video-badge strong {
  color: var(--fg);
  font-size: 12px;
  letter-spacing: .08em;
}
.mc-hero-video-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 14px 18px;
  border: 1px solid;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.mc-hero-video-card div {
  color: var(--fg);
  font-size: 15px;
  font-weight: 500;
}
.mc-hero-video-card span {
  display: block;
  margin-top: 3px;
  color: var(--fg-muted);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mc-portrait {
  position: relative; aspect-ratio: 4/5;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.mc-portrait-grid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; opacity: 0.6;
}
.mc-portrait-img {
  position: absolute; inset: 0;
  display: flex; align-items: end; justify-content: center;
}
.mc-portrait-caption {
  position: absolute; left: 16px; bottom: 16px;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(8px);
  padding: 10px 14px;
  border: 1px solid var(--rule);
}
.mc-portrait-name { font-size: 14px; font-weight: 500; letter-spacing: -0.005em; }
.mc-portrait-role { font-size: 11px; color: var(--fg-muted); margin-top: 2px; letter-spacing: 0.04em; text-transform: uppercase; }
.mc-portrait-stamp {
  position: absolute; right: 16px; top: 16px;
  display: flex; flex-direction: column; align-items: center;
  font-size: 10px; letter-spacing: 0.18em;
  padding: 8px 10px;
  border: 1px solid;
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  backdrop-filter: blur(8px);
  font-weight: 500;
}

/* ─── Logo band (horizontal marquee) ────────────────────────────────────── */
.mc-band-wrap {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  background: color-mix(in srgb, var(--bg-alt) 60%, var(--bg));
}
.mc-band-inner {
  max-width: 1280px; margin: 0 auto; padding: 36px 32px;
  display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: center;
}
.mc-band-label-col {
  display: flex; flex-direction: column; gap: 12px;
}
.mc-band-label {
  font-size: 13px; color: var(--fg-muted);
  line-height: 1.45; max-width: 22ch;
}
.mc-band-track-wrap {
  position: relative; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.mc-band-track {
  display: flex; align-items: center; gap: 64px;
  width: max-content;
  animation: mc-marquee 40s linear infinite;
}
.mc-band-track:hover { animation-play-state: paused; }
.mc-logo-cell {
  flex-shrink: 0;
  height: 48px;
  display: flex; align-items: center; justify-content: center;
}
.mc-logo-cell img {
  height: 100%; width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.6) contrast(0.85);
  opacity: 0.7;
  transition: filter .3s, opacity .3s;
}
/* In light variant, invert the brightness logic */
.mc-app[data-variant="studio"] .mc-logo-cell img {
  filter: grayscale(1) brightness(0.4) contrast(1.2);
  opacity: 0.65;
}
.mc-logo-cell:hover img {
  filter: none;
  opacity: 1;
}
.mc-band-fade {
  position: absolute; top: 0; bottom: 0; width: 80px;
  pointer-events: none; z-index: 2;
}
.mc-band-fade-l { left: 0; }
.mc-band-fade-r { right: 0; }

@keyframes mc-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Problems ──────────────────────────────────────────────────────────── */
.mc-problems {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--rule);
}
.mc-problem {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
}
.mc-problem:nth-child(odd) { border-right: 1px solid var(--rule); padding-right: 32px; }
.mc-problem:nth-child(even) { padding-left: 32px; }
.mc-problem-num {
  font-family: "Instrument Serif", serif;
  font-size: 32px; font-weight: 400; line-height: 1;
  letter-spacing: -0.02em;
}
.mc-problem-body h3 {
  font-size: 22px; font-weight: 500; line-height: 1.2;
  margin: 0 0 12px; letter-spacing: -0.015em;
}
.mc-problem-body p {
  font-size: 15px; line-height: 1.55; color: var(--fg-muted);
  margin: 0; max-width: 44ch;
}

/* ─── Services ──────────────────────────────────────────────────────────── */
.mc-services {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  border-top: 1px solid var(--rule);
}
.mc-service {
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
  cursor: pointer;
  transition: padding .25s;
}
.mc-service.open { padding: 36px 0; }
.mc-service-head {
  display: grid; grid-template-columns: 80px 1fr 40px;
  gap: 24px; align-items: center;
}
.mc-service-code {
  font-family: "Instrument Serif", serif;
  font-size: 18px; font-style: italic; letter-spacing: 0.02em;
}
.mc-service-title {
  font-size: clamp(24px, 2.6vw, 32px); font-weight: 400; margin: 0;
  letter-spacing: -0.02em; line-height: 1.15;
}
.mc-service-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid; display: flex; align-items: center; justify-content: center;
  color: var(--fg);
}
.mc-service-body {
  display: grid; grid-template-columns: 80px 1fr 1fr; gap: 24px;
  margin-top: 24px;
}
.mc-service-body p {
  grid-column: 2; font-size: 16px; line-height: 1.6;
  color: var(--fg-muted); margin: 0; max-width: 50ch;
}
.mc-service-body ul {
  grid-column: 3; list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.mc-service-body li {
  font-size: 14px; display: flex; align-items: center; gap: 12px;
}
.mc-bullet { width: 6px; height: 6px; flex-shrink: 0; }

/* Services page */
.mc-services-page-hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  color: var(--fg);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg-alt) 72%, var(--bg)) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--rule);
  isolation: isolate;
}
.mc-services-page-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 0;
  height: 100%;
  background:
    linear-gradient(90deg, transparent 0 calc(100% - 1px), color-mix(in srgb, var(--rule) 64%, transparent) calc(100% - 1px) 100%),
    linear-gradient(180deg, transparent 0 calc(100% - 1px), color-mix(in srgb, var(--rule) 52%, transparent) calc(100% - 1px) 100%);
  background-size: 96px 96px;
  opacity: .34;
}
.mc-services-page-hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  top: -18vw;
  width: 46vw;
  height: 46vw;
  min-width: 520px;
  min-height: 520px;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, transparent);
  border-radius: 50%;
  z-index: 1;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 10%, transparent), transparent 64%);
  opacity: .72;
  pointer-events: none;
}
.mc-services-page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  min-height: 560px;
  margin: 0 auto;
  padding: 96px 32px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 52px;
}
.mc-services-page-hero-copy {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mc-services-page-hero .mc-eyebrow {
  color: var(--fg-muted);
}
.mc-services-page-hero-copy h1 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: 0;
  margin: 0;
  max-width: 11ch;
  color: var(--fg);
  text-wrap: balance;
}
.mc-services-page-hero-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--fg-muted);
  font-size: 19px;
  line-height: 1.58;
}
.mc-services-page-metrics {
  width: 100%;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.mc-services-page-metrics div {
  display: grid;
  gap: 6px;
}
.mc-services-page-metrics strong {
  font-family: "Instrument Serif", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}
.mc-services-page-metrics span {
  color: var(--fg-muted);
  font-size: 12px;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}
.mc-services-page-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.mc-services-page-card {
  min-height: 360px;
  padding: 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: color-mix(in srgb, var(--bg) 92%, var(--bg-alt));
  transition: background .18s, border-color .18s;
}
.mc-services-page-card:hover {
  background: var(--bg);
}
.mc-services-page-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.mc-services-page-card-top span {
  font-family: "Instrument Serif", serif;
  font-size: 20px;
  font-style: italic;
  white-space: nowrap;
}
.mc-services-page-card-rule {
  height: 1px;
  width: 100%;
}
.mc-services-page-card h3 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  margin: 0;
}
.mc-services-page-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.58;
  margin: 0;
}
.mc-services-page-card ul {
  list-style: none;
  margin: auto 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--rule);
  display: grid;
  gap: 10px;
}
.mc-services-page-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg);
}
.mc-programs {
  padding: var(--sec-pad, 56px) 0;
  background: color-mix(in srgb, var(--bg-alt) 74%, var(--bg));
}
.mc-programs-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.mc-programs-head {
  max-width: 880px;
  margin: 0 auto 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.mc-programs-head h2 {
  max-width: 22ch;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}
.mc-programs-head p {
  max-width: 720px;
  margin: 0;
  color: var(--fg-muted);
  font-size: 18px;
  line-height: 1.55;
}
.mc-programs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.mc-program-card {
  padding: 26px 24px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--bg);
  box-shadow: 0 20px 60px rgba(15, 30, 51, .06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mc-program-card.scope-open {
  min-height: 560px;
}
.mc-program-card.scope-closed {
  min-height: 0;
}
.mc-program-top {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}
.mc-program-icon {
  width: 44px;
  height: 44px;
  border: 1px solid;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--bg) 90%, var(--bg-alt));
}
.mc-program-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mc-program-top h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0;
}
.mc-program-top p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.48;
}
.mc-program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mc-program-tags span {
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 7px 10px;
  color: color-mix(in srgb, var(--fg) 82%, var(--fg-muted));
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
.mc-program-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}
.mc-program-primary,
.mc-program-secondary {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.mc-program-primary {
  box-shadow: 0 14px 28px color-mix(in srgb, var(--accent) 24%, transparent);
}
.mc-program-secondary {
  border: 1px solid;
  color: var(--fg);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}
.mc-program-scope {
  margin-top: auto;
  color: var(--fg);
}
.mc-program-scope strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
}
.mc-program-scope ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}
.mc-program-scope li {
  color: var(--fg);
  font-size: 17px;
  line-height: 1.32;
}
.mc-services-fit {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
}
.mc-services-fit-item {
  min-height: 270px;
  padding: 26px 22px 26px 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mc-services-fit-item + .mc-services-fit-item {
  padding-left: 22px;
}
.mc-services-fit-item:last-child {
  border-right: none;
}
.mc-services-fit-item span {
  font-family: "Instrument Serif", serif;
  font-size: 26px;
  line-height: 1;
}
.mc-services-fit-item h3 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
  margin: 0;
}
.mc-services-fit-item p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.mc-services-method {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--rule);
}
.mc-services-method-step {
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--bg);
}
.mc-services-method-step:last-child {
  border-right: none;
}
.mc-services-method-num {
  font-family: "Instrument Serif", serif;
  font-size: 30px;
  line-height: 1;
}
.mc-services-method-step h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
  margin: auto 0 0;
}
.mc-services-method-step p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* ─── Results ───────────────────────────────────────────────────────────── */
.mc-results {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule);
}
.mc-result {
  padding: 40px 28px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 8px;
}
.mc-result:last-child { border-right: none; }
.mc-result-v {
  font-family: "Instrument Serif", serif;
  font-size: clamp(40px, 4.5vw, 64px); font-weight: 400; line-height: 1;
  letter-spacing: -0.03em;
}
.mc-result-l {
  font-size: 14px; font-weight: 500; margin-top: 12px;
  letter-spacing: -0.005em;
}
.mc-result-c {
  font-size: 12px; color: var(--fg-muted); letter-spacing: 0.02em;
}

/* ─── About ─────────────────────────────────────────────────────────────── */
.mc-about {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px;
}
.mc-about-left { display: flex; flex-direction: column; gap: 16px; }
.mc-about-left .mc-sec-title { margin-bottom: 16px; }
.mc-about-p {
  font-size: 16px; line-height: 1.65; color: var(--fg-muted);
  margin: 0; max-width: 52ch;
}
.mc-timeline { list-style: none; padding: 0; margin: 0; }
.mc-timeline li {
  display: grid; grid-template-columns: 120px 1fr; gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.mc-timeline li:first-child { border-top: 1px solid var(--rule); }
.mc-tl-year {
  font-family: "Instrument Serif", serif;
  font-size: 16px; font-style: italic; letter-spacing: 0.01em;
}
.mc-tl-label { font-size: 14px; }

/* About page */
.mc-about-hero {
  position: relative;
  overflow: hidden;
  min-height: min(780px, calc(100vh - 64px));
  background: #091423;
  color: #fff;
  isolation: isolate;
}
.mc-about-hero::before {
  content: "";
  position: absolute;
  inset: 0 -2% 0 0;
  z-index: 0;
  background-image: var(--about-hero-image);
  background-size: cover;
  background-position: 42% center;
  filter: grayscale(1) contrast(1.08) brightness(1.08);
  transform: scale(1.015);
}
.mc-about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 12, 23, .50) 0%, rgba(5, 12, 23, .36) 21%, rgba(5, 12, 23, .70) 36%, rgba(5, 12, 23, .66) 66%, rgba(5, 12, 23, .24) 100%),
    linear-gradient(180deg, rgba(5, 12, 23, .12) 0%, rgba(5, 12, 23, .02) 47%, rgba(5, 12, 23, .60) 100%);
  pointer-events: none;
}
.mc-about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  min-height: min(780px, calc(100vh - 64px));
  margin: 0 auto;
  padding: 96px 32px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 56px;
}
.mc-about-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 760px;
  margin-left: min(18vw, 270px);
}
.mc-about-hero .mc-eyebrow {
  color: rgba(246, 249, 252, .76);
}
.mc-about-hero-copy h1 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: 0;
  margin: 0;
  max-width: 12ch;
  text-wrap: balance;
  color: #fff;
}
.mc-about-hero-copy p {
  font-size: 19px;
  line-height: 1.58;
  color: rgba(246, 249, 252, .74);
  max-width: 620px;
  margin: 0;
}
.mc-about-hero-meta {
  width: 100%;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .22);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-left: min(18vw, 270px);
  width: calc(100% - min(18vw, 270px));
}
.mc-about-hero-meta div {
  display: grid;
  gap: 6px;
}
.mc-about-hero-meta b {
  font-family: "Instrument Serif", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}
.mc-about-hero-meta span {
  font-size: 12px;
  line-height: 1.35;
  color: rgba(246, 249, 252, .66);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.mc-about-origin {
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}
.mc-about-origin-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
  gap: 72px;
  align-items: center;
}
.mc-about-origin-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mc-about-origin-copy h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
  max-width: 20ch;
  text-wrap: balance;
}
.mc-about-origin-copy p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-muted);
  margin: 0;
  max-width: 54ch;
}
.mc-about-origin-proof {
  border-left: 1px solid var(--rule);
  padding-left: 32px;
  display: grid;
  gap: 18px;
}
.mc-about-origin-proof > span {
  font-family: "Instrument Serif", serif;
  font-size: clamp(74px, 7vw, 112px);
  font-weight: 400;
  line-height: .82;
  letter-spacing: 0;
}
.mc-about-origin-proof strong {
  display: block;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg);
}
.mc-about-origin-proof p {
  color: var(--fg-muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 8px 0 0;
}
.mc-about-story {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.mc-about-story-main {
  border-top: 1px solid var(--rule);
}
.mc-about-chapter {
  display: grid;
  grid-template-columns: 84px minmax(0, .95fr) minmax(300px, .8fr);
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.mc-about-chapter-num {
  font-family: "Instrument Serif", serif;
  font-size: 32px;
  font-style: italic;
  line-height: 1;
}
.mc-about-chapter-body h3 {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  margin: 0 0 20px;
  max-width: 18ch;
}
.mc-about-chapter-body p {
  font-size: 16px;
  line-height: 1.68;
  color: var(--fg-muted);
  margin: 0;
  max-width: 62ch;
}
.mc-about-chapter-body p + p {
  margin-top: 14px;
}
.mc-about-pullquote {
  margin: 0;
  padding: 8px 0 0 28px;
  border-left: 1px solid var(--rule);
}
.mc-about-pullquote-mark {
  font-family: "Instrument Serif", serif;
  font-size: 64px;
  line-height: .58;
  margin-bottom: 10px;
}
.mc-about-pullquote p {
  font-family: "Instrument Serif", serif;
  font-size: clamp(24px, 2.35vw, 34px);
  font-style: italic;
  line-height: 1.22;
  letter-spacing: 0;
  margin: 0;
  color: var(--fg);
}
.mc-about-pullquote cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ─── Testimonials ──────────────────────────────────────────────────────── */
.mc-testi {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
}
.mc-testi-stage {
  position: relative; min-height: 220px;
}
.mc-testi-q {
  margin: 0; padding: 0;
  display: none;
  max-width: 64ch;
}
.mc-testi-q.active { display: block; }
.mc-quote-mark {
  font-family: "Instrument Serif", serif;
  font-size: 96px; line-height: 0.5; height: 48px;
  display: block; font-style: italic;
}
.mc-testi-q p {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4; font-weight: 400; letter-spacing: -0.015em;
  margin: 16px 0 24px;
  text-wrap: pretty;
}
.mc-testi-q cite {
  font-style: normal; font-size: 13px;
  color: var(--fg-muted); letter-spacing: 0.02em;
}
.mc-testi-dots {
  display: flex; gap: 8px; margin-top: 32px;
}
.mc-dot {
  width: 28px; height: 2px; border: none; padding: 0; cursor: pointer;
  transition: background .2s;
}

/* ─── Materials ─────────────────────────────────────────────────────────── */
.mc-materials {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.mc-material {
  padding: 32px 28px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 260px;
}
.mc-material:last-child { border-right: none; }
.mc-material-top {
  display: flex; justify-content: space-between; align-items: center;
}
.mc-material-tag {
  font-size: 10px; padding: 4px 8px; border: 1px solid;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
}
.mc-material-n {
  font-family: "Instrument Serif", serif;
  font-size: 20px; font-style: italic;
}
.mc-material h3 {
  font-size: 20px; font-weight: 500; margin: 8px 0 0;
  letter-spacing: -0.015em; line-height: 1.25;
}
.mc-material p {
  font-size: 14px; color: var(--fg-muted); line-height: 1.5; margin: 0;
}
.mc-material-foot {
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.mc-locked {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
}
.mc-form {
  max-width: 1280px; margin: 32px auto 0; padding: 0 32px;
}
.mc-form-label {
  font-size: 11px; color: var(--fg-muted);
  letter-spacing: 0.12em; text-transform: uppercase;
  display: block; margin-bottom: 12px;
}
.mc-form-row {
  display: grid; grid-template-columns: 1fr auto; gap: 0;
  max-width: 560px;
  border: 1px solid var(--rule);
}
.mc-form-row input {
  padding: 16px 20px; font-size: 15px;
  background: transparent; border: none; color: var(--fg);
  font-family: inherit;
}
.mc-form-row input:focus { outline: none; }
.mc-form-row input::placeholder { color: var(--fg-muted); }
.mc-form-row button {
  padding: 16px 24px; border: none; cursor: pointer;
  font-family: inherit; font-size: 13px; font-weight: 500;
  letter-spacing: 0.01em;
}
.mc-form-ok {
  margin-top: 12px; font-size: 13px; color: var(--accent);
}

/* Materials page */
.mc-materials-page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg-alt) 70%, var(--bg)) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--rule);
}
.mc-materials-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 calc(100% - 1px), color-mix(in srgb, var(--rule) 58%, transparent) calc(100% - 1px) 100%),
    linear-gradient(180deg, transparent 0 calc(100% - 1px), color-mix(in srgb, var(--rule) 48%, transparent) calc(100% - 1px) 100%);
  background-size: 88px 88px;
  opacity: .28;
}
.mc-materials-page-hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, transparent);
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 9%, transparent), transparent 65%);
  pointer-events: none;
}
.mc-materials-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  min-height: 540px;
  margin: 0 auto;
  padding: 96px 32px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 52px;
}
.mc-materials-page-hero-copy {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mc-materials-page-hero-copy h1 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: 0;
  margin: 0;
  max-width: 12ch;
  text-wrap: balance;
}
.mc-materials-page-hero-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--fg-muted);
  font-size: 19px;
  line-height: 1.58;
}
.mc-materials-page-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  border-top: 1px solid var(--rule);
  padding-top: 22px;
}
.mc-materials-page-metrics div {
  display: grid;
  gap: 6px;
}
.mc-materials-page-metrics strong {
  font-family: "Instrument Serif", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}
.mc-materials-page-metrics span {
  color: var(--fg-muted);
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mc-materials-page-library {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.mc-materials-page-card {
  min-height: 390px;
  padding: 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: color-mix(in srgb, var(--bg) 94%, var(--bg-alt));
}
.mc-materials-page-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mc-materials-page-tag {
  border: 1px solid;
  padding: 5px 8px;
  color: var(--fg-muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mc-materials-page-card-head strong {
  font-family: "Instrument Serif", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
.mc-materials-page-card h3 {
  margin: 8px 0 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}
.mc-materials-page-card > p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.58;
}
.mc-materials-page-use {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  display: grid;
  gap: 10px;
}
.mc-materials-page-use span {
  color: var(--fg);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.mc-materials-page-use p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 13px;
  line-height: 1.5;
}
.mc-free-content {
  padding: var(--sec-pad, 56px) 0;
  background: color-mix(in srgb, var(--bg-alt) 74%, var(--bg));
}
.mc-free-content-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.mc-free-content-head {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}
.mc-free-content-head h2 {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}
.mc-free-content-head p {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--fg-muted);
  font-size: 19px;
  line-height: 1.52;
}
.mc-free-docs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.mc-free-doc-card {
  min-height: 282px;
  padding: 18px 16px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--bg);
  box-shadow: 0 18px 54px rgba(15, 30, 51, .06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mc-free-doc-main {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
}
.mc-free-doc-icon {
  width: 44px;
  height: 54px;
  border: 1px solid;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--bg) 92%, var(--bg-alt));
}
.mc-free-doc-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mc-free-doc-main h3 {
  margin: 0;
  color: var(--fg);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
}
.mc-free-doc-main p {
  margin: 6px 0 0;
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.42;
}
.mc-free-doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.mc-free-doc-meta span {
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 6px 9px;
  color: color-mix(in srgb, var(--fg) 82%, var(--fg-muted));
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}
.mc-free-doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mc-free-doc-actions a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.mc-free-doc-actions a:first-child {
  box-shadow: 0 14px 28px color-mix(in srgb, var(--accent) 24%, transparent);
}
.mc-free-doc-actions a:last-child {
  border: 1px solid var(--rule);
  color: var(--fg);
  background: transparent;
}
.mc-books-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.mc-book-card {
  border: 1px solid var(--rule);
  background: var(--bg);
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 320px;
}
.mc-book-cover {
  position: relative;
  background: color-mix(in srgb, var(--bg-alt) 70%, var(--bg));
  border-right: 1px solid var(--rule);
  overflow: hidden;
}
.mc-book-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.mc-book-cover-fallback {
  display: none;
  height: 100%;
  padding: 22px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.mc-book-cover-fallback span {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mc-book-cover-fallback strong {
  font-family: "Instrument Serif", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}
.mc-book-card.is-missing .mc-book-cover img {
  display: none;
}
.mc-book-card.is-missing .mc-book-cover-fallback {
  display: flex;
}
.mc-book-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mc-book-body h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}
.mc-book-body p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.58;
}
.mc-book-body a {
  align-self: flex-start;
  margin-top: auto;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 28px color-mix(in srgb, var(--accent) 24%, transparent);
}
.mc-materials-system-section {
  padding: var(--sec-pad, 56px) 0;
  background: color-mix(in srgb, var(--bg-alt) 78%, var(--bg));
}
.mc-materials-system-shell {
  width: calc(100% - 64px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--rule));
  border-radius: 8px;
  background: color-mix(in srgb, var(--bg) 96%, var(--bg-alt));
  box-shadow: 0 24px 72px rgba(15, 30, 51, .07);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 56px;
  align-items: start;
}
.mc-materials-system-copy {
  min-width: 0;
}
.mc-materials-system-pill {
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, var(--bg-alt));
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mc-materials-system-copy h2 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--fg);
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}
.mc-materials-system-copy p {
  max-width: 760px;
  margin: 0 0 10px;
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.58;
}
.mc-materials-system-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.mc-materials-system-actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 18px;
  text-decoration: none;
  border: 1px solid var(--rule);
  color: var(--fg);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
}
.mc-materials-system-actions a:first-child {
  border-color: transparent;
  box-shadow: 0 16px 30px color-mix(in srgb, var(--accent) 24%, transparent);
}
.mc-materials-system-benefits {
  display: grid;
  gap: 16px;
}
.mc-materials-system-benefit,
.mc-materials-system-note {
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: color-mix(in srgb, var(--bg-alt) 54%, var(--bg));
}
.mc-materials-system-benefit {
  min-height: 104px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
}
.mc-materials-system-benefit span {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 2px solid;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mc-materials-system-benefit svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mc-materials-system-benefit p {
  margin: 0;
  color: var(--fg);
  font-size: 16px;
  line-height: 1.45;
}
.mc-materials-system-note {
  padding: 20px 22px;
}
.mc-materials-system-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--fg);
  font-size: 16px;
  line-height: 1.25;
}
.mc-materials-system-note p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.55;
}
.mc-materials-access {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .7fr);
  gap: 64px;
  align-items: start;
}
.mc-materials-access-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
}
.mc-materials-access-step {
  min-height: 230px;
  padding: 24px 22px 24px 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mc-materials-access-step + .mc-materials-access-step {
  padding-left: 22px;
}
.mc-materials-access-step:last-child {
  border-right: none;
}
.mc-materials-access-step span {
  font-family: "Instrument Serif", serif;
  font-size: 26px;
  line-height: 1;
}
.mc-materials-access-step h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}
.mc-materials-access-step p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.55;
}
.mc-materials-access-form {
  border: 1px solid var(--rule);
  padding: 28px;
  background: color-mix(in srgb, var(--bg) 94%, var(--bg-alt));
}
.mc-materials-access-form label {
  display: block;
  margin-bottom: 12px;
  color: var(--fg-muted);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mc-materials-access-row {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--rule);
}
.mc-materials-access-row input {
  min-width: 0;
  padding: 16px 18px;
  border: none;
  background: transparent;
  color: var(--fg);
  font-family: inherit;
  font-size: 15px;
}
.mc-materials-access-row input:focus {
  outline: none;
}
.mc-materials-access-row button {
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
}
.mc-materials-access-ok {
  margin: 12px 0 0;
  color: var(--accent);
  font-size: 13px;
}

/* ─── Insights ──────────────────────────────────────────────────────────── */
.mc-insights {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--rule);
}
.mc-insight {
  padding: 28px 24px 28px 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 16px;
  text-decoration: none; color: inherit;
  transition: background .2s;
}
.mc-insight:hover { background: var(--bg-alt); }
.mc-insight:nth-child(3n+1) { padding-left: 0; }
.mc-insight:nth-child(3n+2) { padding-left: 24px; }
.mc-insight:nth-child(3n) { padding-left: 24px; padding-right: 0; border-right: none; }
.mc-insight-meta {
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-muted);
}
.mc-insight-cat { font-weight: 500; }
.mc-insight h3 {
  font-size: 22px; font-weight: 400; line-height: 1.25;
  letter-spacing: -0.015em; margin: 0;
  text-wrap: balance;
}
.mc-insight-foot {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.mc-arrow { transition: transform .2s; }
.mc-insight:hover .mc-arrow { transform: translateX(4px); }

/* ─── Final CTA ─────────────────────────────────────────────────────────── */
.mc-final {
  max-width: 1280px; margin: 0 auto;
  border: 1px solid;
  padding: 80px 32px;
  text-align: center;
  position: relative;
}
.mc-final::before, .mc-final::after {
  content: ""; position: absolute;
  width: 12px; height: 12px;
  border: 1px solid var(--accent);
}
.mc-final::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.mc-final::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.mc-final-inner {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.mc-final-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400; line-height: 1.05; letter-spacing: -0.025em;
  margin: 0; text-wrap: balance;
}
.mc-final-lede {
  font-size: 17px; line-height: 1.55; color: var(--fg-muted);
  max-width: 52ch; margin: 0;
}
.mc-final-note {
  font-size: 12px; color: var(--fg-muted);
  letter-spacing: 0.04em; margin-top: 12px;
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
.mc-footer {
  border-top: 1px solid;
  max-width: 1280px; margin: 0 auto; padding: 56px 32px 24px;
}
.mc-footer-grid {
  display: grid; grid-template-columns: 1.5fr 2fr; gap: 64px;
  margin-bottom: 56px;
}
.mc-logo-mark {
  font-size: 20px; font-weight: 500; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px;
}
.mc-footer-tag {
  font-family: "Instrument Serif", serif; font-style: italic;
  font-size: 15px; margin-top: 10px; letter-spacing: 0.005em;
}
.mc-footer-meta {
  font-size: 13px; color: var(--fg-muted); margin-top: 8px;
}
.mc-footer-email {
  display: inline-block; margin-top: 24px;
  font-size: 18px; color: var(--fg);
  text-decoration: none; border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  font-family: "Instrument Serif", serif; font-style: italic;
}
.mc-footer-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.mc-footer-h {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-muted); margin-bottom: 16px;
}
.mc-footer-cols a {
  display: block; font-size: 14px; color: var(--fg);
  text-decoration: none; padding: 6px 0;
  transition: color .15s;
}
.mc-footer-cols a:hover { color: var(--accent); }
.mc-footer-bottom {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--fg-muted);
  letter-spacing: 0.04em;
  padding-top: 24px; border-top: 1px solid var(--rule);
}

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .mc-hero-grid { grid-template-columns: 1fr; gap: 36px; min-height: auto; }
  .mc-hero-right { min-height: 360px; }
  .mc-hero-proof { margin-left: 0; }
  .mc-hero-bg-video { object-position: 58% center; }
  .mc-problems { grid-template-columns: 1fr; }
  .mc-problem:nth-child(odd) { border-right: none; padding-right: 0; }
  .mc-problem:nth-child(even) { padding-left: 0; }
  .mc-results { grid-template-columns: 1fr 1fr; }
  .mc-result { border-bottom: 1px solid var(--rule); }
  .mc-about { grid-template-columns: 1fr; gap: 48px; }
  .mc-about-hero { min-height: 680px; }
  .mc-about-hero::before { background-position: 38% center; }
  .mc-about-hero::after {
    background:
      linear-gradient(90deg, rgba(5, 12, 23, .44) 0%, rgba(5, 12, 23, .58) 34%, rgba(5, 12, 23, .74) 58%, rgba(5, 12, 23, .38) 100%),
      linear-gradient(180deg, rgba(5, 12, 23, .12) 0%, rgba(5, 12, 23, .10) 45%, rgba(5, 12, 23, .70) 100%);
  }
  .mc-about-hero-inner { min-height: 680px; gap: 36px; padding-top: 72px; }
  .mc-about-hero-copy, .mc-about-hero-meta { margin-left: 0; width: 100%; }
  .mc-about-hero-copy h1 { max-width: 12ch; }
  .mc-about-hero-meta { grid-template-columns: 1fr 1fr; gap: 18px; }
  .mc-about-origin-inner { grid-template-columns: 1fr; gap: 32px; }
  .mc-about-origin-copy h2 { font-size: 32px; }
  .mc-about-origin-proof { border-left: none; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 24px; }
  .mc-about-chapter { grid-template-columns: 1fr; gap: 22px; padding: 36px 0; }
  .mc-about-pullquote { padding: 22px 0 0; border-left: none; border-top: 1px solid var(--rule); }
  .mc-materials, .mc-insights { grid-template-columns: 1fr; }
  .mc-material, .mc-insight { border-right: none; padding: 24px 0 !important; }
  .mc-materials-page-hero-inner { min-height: auto; padding-top: 72px; gap: 36px; }
  .mc-materials-page-metrics { grid-template-columns: 1fr; gap: 16px; }
  .mc-free-content-head { text-align: left; }
  .mc-free-content-head p { margin-left: 0; margin-right: 0; }
  .mc-free-docs-grid { grid-template-columns: 1fr; }
  .mc-free-doc-card { min-height: auto; }
  .mc-books-grid { grid-template-columns: 1fr; }
  .mc-book-card { grid-template-columns: 1fr; min-height: auto; }
  .mc-book-cover { min-height: 360px; border-right: none; border-bottom: 1px solid var(--rule); }
  .mc-materials-system-shell {
    width: calc(100% - 40px);
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mc-materials-system-copy h2 { font-size: 38px; }
  .mc-materials-system-actions a { width: 100%; }
  .mc-materials-system-benefit { min-height: auto; }
  .mc-materials-page-library { grid-template-columns: 1fr; border-left: none; }
  .mc-materials-page-card { min-height: auto; padding: 24px 0; border-right: none; }
  .mc-materials-access { grid-template-columns: 1fr; gap: 32px; }
  .mc-materials-access-steps { grid-template-columns: 1fr; }
  .mc-materials-access-step,
  .mc-materials-access-step + .mc-materials-access-step {
    min-height: auto;
    padding: 24px 0;
    border-right: none;
  }
  .mc-materials-access-row { grid-template-columns: 1fr; }
  .mc-nav-links { display: none; }
  .mc-nav-inner { grid-template-columns: 1fr auto; }
  .mc-service-body { grid-template-columns: 1fr; }
  .mc-service-body p, .mc-service-body ul { grid-column: 1; }
  .mc-services-page-hero-inner { min-height: auto; padding-top: 72px; gap: 36px; }
  .mc-services-page-hero::after { opacity: .36; right: -260px; top: -220px; }
  .mc-services-page-metrics { grid-template-columns: 1fr; gap: 16px; }
  .mc-services-page-grid { grid-template-columns: 1fr; border-left: none; }
  .mc-services-page-card { min-height: auto; padding: 24px 0; border-right: none; }
  .mc-programs-head { text-align: left; align-items: flex-start; }
  .mc-programs-grid { grid-template-columns: 1fr; }
  .mc-program-card { min-height: auto; }
  .mc-program-top { grid-template-columns: 1fr; }
  .mc-services-fit { grid-template-columns: 1fr; }
  .mc-services-fit-item,
  .mc-services-fit-item + .mc-services-fit-item {
    min-height: auto;
    padding: 24px 0;
    border-right: none;
  }
  .mc-services-method { grid-template-columns: 1fr; border-left: none; border-right: none; }
  .mc-services-method-step { min-height: auto; padding: 24px 0; border-right: none; border-bottom: 1px solid var(--rule); }
  .mc-band-inner { grid-template-columns: 1fr; gap: 24px; }
  .mc-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .mc-clients { grid-template-columns: 1fr; gap: 36px; padding: 8px 20px 0; }
  .mc-client-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .mc-client-stat { min-height: 168px; padding: 24px; }
  .mc-client-logos { grid-template-columns: repeat(3, 1fr); margin-top: 28px; padding: 0 20px; }
}

/* ─── Multipage additions ───────────────────────────────────────────────── */

/* Inner page hero (no portrait, just title block) */
.mc-page-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 32px 48px;
  position: relative;
}
.mc-page-hero-inner {
  max-width: 880px;
}
.mc-page-title {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 18px 0 24px;
  color: var(--fg);
}
.mc-page-lede {
  font-size: 20px;
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0;
}

/* Active nav link */
.mc-nav-links a.active {
  color: var(--fg) !important;
  font-weight: 500;
}
.mc-nav-links a.active::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* Contact form layout */
.mc-contact-hero {
  padding: 88px 0 48px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--bg-alt) 78%, var(--bg)) 0%, var(--bg) 72%),
    var(--bg);
}
.mc-contact-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  gap: 72px;
  align-items: end;
}
.mc-contact-hero-copy h1 {
  max-width: 880px;
  margin: 18px 0 22px;
  color: var(--fg);
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
}
.mc-contact-hero-copy p {
  max-width: 690px;
  margin: 0;
  color: var(--fg-muted);
  font-size: 19px;
  line-height: 1.56;
}
.mc-contact-direct {
  border: 1px solid;
  border-radius: 8px;
  padding: 24px;
  background: color-mix(in srgb, var(--bg) 94%, var(--bg-alt));
  box-shadow: 0 20px 64px rgba(15, 30, 51, .06);
}
.mc-contact-direct-head span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.mc-contact-direct-head p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.5;
}
.mc-contact-direct-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.mc-contact-direct-card {
  min-height: 76px;
  padding: 16px;
  border: 1px solid;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  background: transparent;
}
.mc-contact-direct-card svg,
.mc-contact-direct-card > span {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.mc-contact-direct-card strong {
  display: block;
  margin-bottom: 3px;
  font-size: 16px;
  line-height: 1.2;
}
.mc-contact-direct-card span {
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.35;
  opacity: .82;
}
.mc-contact-direct-card.is-primary {
  border-color: transparent;
  box-shadow: 0 14px 30px color-mix(in srgb, var(--accent) 23%, transparent);
}
.mc-contact-response {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid;
  color: var(--fg-muted);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.mc-contact-steps-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 32px 0;
}
.mc-contact-steps-head {
  max-width: 720px;
  margin-bottom: 28px;
}
.mc-contact-steps-head h2 {
  margin: 14px 0 0;
  color: var(--fg);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}
.mc-contact-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.mc-contact-step {
  min-height: 210px;
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--rule);
}
.mc-contact-step + .mc-contact-step {
  padding-left: 28px;
}
.mc-contact-step:last-child {
  border-right: none;
}
.mc-contact-step span {
  font-family: "Instrument Serif", serif;
  font-size: 28px;
  line-height: 1;
}
.mc-contact-step h3 {
  margin: 18px 0 10px;
  color: var(--fg);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.18;
}
.mc-contact-step p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.55;
}
.mc-contact-highlight {
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid;
  border-radius: 8px;
  background: color-mix(in srgb, var(--bg-alt) 66%, var(--bg));
}
.mc-contact-highlight strong {
  display: block;
  margin-bottom: 6px;
  color: var(--fg);
  font-size: 18px;
}
.mc-contact-highlight p {
  max-width: 880px;
  margin: 0;
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.55;
}
.mc-contact {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 32px 0;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .mc-contact-hero {
    padding: 72px 0 36px;
  }
  .mc-contact-hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }
  .mc-contact-direct {
    padding: 20px;
  }
  .mc-contact-steps-section {
    padding: 42px 20px 0;
  }
  .mc-contact-steps-grid {
    grid-template-columns: 1fr;
  }
  .mc-contact-step,
  .mc-contact-step + .mc-contact-step {
    min-height: auto;
    padding: 24px 0;
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  .mc-contact-step:last-child {
    border-bottom: none;
  }
  .mc-contact-highlight {
    padding: 20px;
  }
  .mc-contact { grid-template-columns: 1fr; gap: 32px; padding: 42px 20px 0; }
}
.mc-contact-form form {
  display: flex; flex-direction: column; gap: 18px;
}
.mc-cf-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
@media (max-width: 600px) {
  .mc-cf-row { grid-template-columns: 1fr; }
}
.mc-contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 500;
}
.mc-cf-full { grid-column: 1 / -1; }
.mc-contact-form input,
.mc-contact-form select,
.mc-contact-form textarea {
  font-family: inherit;
  font-size: 16px;
  padding: 14px 16px;
  background: var(--bg-raised);
  color: var(--fg);
  border: 1px solid var(--rule);
  border-radius: 0;
  outline: none;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  transition: border-color .15s;
}
.mc-contact-form input:focus,
.mc-contact-form select:focus,
.mc-contact-form textarea:focus {
  border-color: var(--accent);
}
.mc-contact-form textarea { resize: vertical; min-height: 120px; }
.mc-cf-submit {
  align-self: flex-start;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  margin-top: 8px;
}
.mc-cf-submit:hover { opacity: 0.92; }

/* Contact aside */
.mc-contact-side {
  border: 1px solid var(--rule);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  position: sticky; top: 100px;
}
.mc-cf-aside-h {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.mc-cf-channel,
.mc-cf-channel-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity .15s;
}
.mc-cf-channel:hover { opacity: 0.92; }
.mc-cf-channel-ghost {
  border: 1px solid;
  background: transparent;
}
.mc-cf-channel-ghost:hover { border-color: var(--accent); }
.mc-cf-addr {
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid;
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* Inner page wrap variations - reduced top padding for non-home pages */
.mc-app[data-page="inner"] section { padding-top: 0; }

/* ─── Couto-style sections ─────────────────────────────────────────────── */

/* Manifesto */
.mc-manifesto {
  padding: var(--sec-pad) 32px;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.mc-manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.mc-manifesto-mark {
  font-family: "Instrument Serif", serif;
  font-size: 96px;
  line-height: 0.5;
  margin-bottom: 16px;
}
.mc-manifesto-q {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--fg);
  text-wrap: balance;
  margin: 0 0 24px;
}
.mc-manifesto-cite {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* Purpose — 3 numbered blocks */
.mc-purpose {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 32px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 900px) { .mc-purpose { grid-template-columns: 1fr; gap: 40px; } }
.mc-purpose-block {
  display: flex; flex-direction: column; gap: 14px;
}
.mc-purpose-n {
  font-family: "Instrument Serif", serif;
  font-size: 48px;
  line-height: 1;
  padding-bottom: 14px;
  border-bottom: 1px solid;
  width: fit-content;
  letter-spacing: -0.02em;
}
.mc-purpose-block h3 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 4px 0 0;
  color: var(--fg);
}
.mc-purpose-block p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
}

/* Differentials */
.mc-diff {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 32px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .mc-diff { grid-template-columns: 1fr; } }
.mc-diff-block {
  padding: 32px;
  border: 1px solid var(--rule);
  background: var(--bg-raised);
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s, transform .2s;
}
.mc-diff-block:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.mc-diff-icon {
  width: 48px; height: 48px;
  border: 1px solid;
  display: grid; place-items: center;
}
.mc-diff-block h3 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 6px 0 0;
  color: var(--fg);
}
.mc-diff-block p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
}

/* Clients & animated results */
.mc-app #clientes {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg-alt) 52%, var(--bg)), var(--bg));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.mc-clients {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px 0;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: 80px;
  align-items: center;
}
.mc-clients-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mc-clients-title {
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 18px 0 18px;
  max-width: 13ch;
}
.mc-clients-lede {
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 28em;
  margin: 0 0 30px;
}
.mc-client-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mc-client-stat {
  min-height: 188px;
  padding: 30px 30px 26px;
  border: 1px solid;
  border-radius: 8px;
  background: color-mix(in srgb, var(--bg-raised) 94%, transparent);
  box-shadow: 0 20px 58px rgba(15, 30, 51, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mc-client-value {
  font-size: clamp(40px, 4.4vw, 58px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}
.mc-client-stat p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.45;
  margin: 12px 0 18px;
}
.mc-client-line {
  display: block;
  width: 52px;
  height: 3px;
  border-radius: 999px;
  opacity: .72;
}
.mc-client-logo img {
  max-height: 38px;
  max-width: 128px;
  object-fit: contain;
  filter: grayscale(1) brightness(.45) contrast(1.15);
  opacity: .64;
  transition: filter .25s, opacity .25s, transform .25s;
}
.mc-client-logos {
  max-width: 1280px;
  margin: 44px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 10px;
}
.mc-client-logo {
  min-height: 76px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
}
.mc-client-logo:hover img {
  filter: none;
  opacity: 1;
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .mc-clients { grid-template-columns: 1fr; gap: 36px; padding: 8px 20px 0; }
  .mc-client-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .mc-client-stat { min-height: 168px; padding: 24px; }
  .mc-client-logos { grid-template-columns: repeat(3, 1fr); margin-top: 28px; padding: 0 20px; }
}
@media (max-width: 600px) {
  .mc-client-stats { grid-template-columns: 1fr; }
  .mc-client-logos { grid-template-columns: repeat(2, 1fr); }
  .mc-clients-title { max-width: 11ch; }
}

/* TrustBand */
.mc-trust-track-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 0 0;
  position: relative;
  overflow: hidden;
}
.mc-trust-track-wrap .mc-band-track {
  display: flex; align-items: center;
  width: max-content;
  animation: mc-marquee 40s linear infinite;
}

/* InCompany */
.mc-incompany {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .mc-incompany { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; }
}
.mc-incompany-left .mc-sec-title { margin-top: 12px; }
.mc-incompany-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 12px 0 28px;
}
.mc-incompany-topics {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
@media (max-width: 600px) { .mc-incompany-topics { grid-template-columns: 1fr; } }
.mc-incompany-topics li {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 4px;
  border-bottom: 1px solid;
  font-size: 15px;
  color: var(--fg);
}
.mc-incompany-n {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.02em;
}

/* Socials */
.mc-socials {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 32px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .mc-socials { grid-template-columns: 1fr; } }
.mc-social {
  position: relative;
  padding: 32px;
  border: 1px solid;
  text-decoration: none;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s, transform .2s;
}
.mc-social:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.mc-social-tag {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.mc-social-h {
  font-family: "Instrument Serif", serif;
  font-size: 28px;
  letter-spacing: -0.01em;
}
.mc-social-d {
  font-size: 15px;
  line-height: 1.55;
}
.mc-social-arrow {
  font-size: 22px;
  margin-top: 8px;
  align-self: flex-end;
}


/* ─── Video & Gallery ─────────────────────────────────────────────────── */
.mc-video-wrap {
  max-width: 1100px;
  margin: 24px auto 0;
  padding: 8px;
  border: 1px solid;
  position: relative;
  aspect-ratio: 16 / 9;
}
.mc-video {
  width: 100%; height: 100%;
  border: 0; display: block;
}
.mc-gal {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 32px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mc-gal-item {
  margin: 0;
  border: 1px solid;
  overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--bg-raised);
  transition: transform .25s ease, border-color .2s;
}
.mc-gal-item:hover { transform: translateY(-2px); border-color: var(--accent); }
.mc-gal-item img {
  width: 100%; aspect-ratio: 4 / 5;
  object-fit: cover; display: block;
}
.mc-gal-item figcaption {
  padding: 12px 14px 14px;
  font-size: 13px;
  letter-spacing: 0.005em;
}

/* Mobile responsive sweep */
@media (max-width: 900px) {
  .mc-gal { grid-template-columns: repeat(2, 1fr); padding: 20px 20px 0; gap: 12px; }
  .mc-video-wrap { margin: 16px 20px 0; padding: 4px; }
  .mc-nav-inner { padding: 12px 20px; }
  .mc-hero { min-height: auto; padding: 72px 0 64px; }
  .mc-hero-grid { padding: 0 20px; }
  .mc-trust-track-wrap { padding: 20px 0 0; }
  .mc-manifesto { padding: 56px 20px; }
  .mc-purpose, .mc-diff, .mc-socials { padding: 20px 20px 0; }
}
@media (max-width: 600px) {
  .mc-gal { grid-template-columns: 1fr; }
  .mc-client-stats { grid-template-columns: 1fr; }
  .mc-client-logos { grid-template-columns: repeat(2, 1fr); }
  .mc-clients-title { max-width: 11ch; }
  .mc-purpose-n { font-size: 36px; }
  .mc-purpose-block h3 { font-size: 22px; }
  .mc-manifesto-q { font-size: clamp(28px, 7vw, 40px); }
  .mc-social { padding: 24px; }
  .mc-social-h { font-size: 22px; }
  .mc-hero-actions { flex-direction: column; align-items: stretch; }
  .mc-hero-actions a { justify-content: center; }
  .mc-hero-proof { display: none; }
  .mc-hero-right { display: none; }
  .mc-hero-bg-overlay {
    background:
      linear-gradient(90deg, rgba(5, 12, 23, .94), rgba(5, 12, 23, .72)),
      linear-gradient(180deg, rgba(5, 12, 23, .28), rgba(5, 12, 23, .88));
  }
}
