:root {
  /* Sistema azul abisal v2.0 — #0B0F1A / #0F2A4F / blanco */
  --carbon: #0B0F1A;
  --graphite: #0F2A4F;
  --navy-mid: #16395F;
  --ink: #0B0F1A;
  --bone: #FFFFFF;
  --paper: #FFFFFF;
  --ash: #93A7C4;
  --steel: #33415C;
  --brass: #4E9BFF;
  --brass-dark: #0F2A4F;
  --azure: #4E9BFF;
  --azure-soft: #7CC0FF;
  --line: rgba(11, 15, 26, 0.14);
  --line-light: rgba(240, 246, 253, 0.16);
  --shadow: 0 28px 80px rgba(4, 8, 16, 0.34);
  --header-height: 5rem;
  --radius: 6px;
  --z-header: 30;
  --z-menu: 40;
  --z-overlay: 50;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

::selection {
  background: var(--brass);
  color: var(--carbon);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--carbon);
  transform: translateY(-180%);
}

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

.shell {
  width: min(100% - 3rem, 78rem);
  margin-inline: auto;
}

.section {
  padding: 7rem 0 8rem;
}

.section-compact {
  padding: 5rem 0 6rem;
}

.section-dark {
  background: var(--carbon);
  color: var(--bone);
}

.section-paper {
  background: var(--paper);
}

.eyebrow,
.utility-label {
  margin: 0 0 1rem;
  color: var(--brass-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.hero .eyebrow,
.service-hero .eyebrow {
  color: #7CC0FF;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 3.5rem;
}

h3 {
  font-size: 1.6rem;
}

p {
  margin: 0;
  text-wrap: pretty;
}

.lede {
  max-width: 43rem;
  color: var(--steel);
  font-size: 1.22rem;
  line-height: 1.7;
}

.section-dark .lede {
  color: #c1c6c0;
}

.button,
.text-button {
  align-items: center;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.8rem 1.3rem;
  background: var(--brass);
  color: var(--carbon);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button::after {
  content: "↗";
  margin-left: 0.65rem;
  font-size: 1rem;
}

.button:hover {
  background: #63ABFF;
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px);
}

.button-small {
  min-height: 2.7rem;
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
}

.button-dark {
  background: var(--carbon);
  color: var(--bone);
}

.button-dark:hover {
  background: #16395F;
}

.button-outline {
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.button-outline:hover {
  background: var(--carbon);
  color: var(--bone);
}

.text-button,
.text-link {
  min-height: auto;
  padding: 0.4rem 0;
  background: transparent;
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--brass);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35rem;
}

.text-button:hover,
.text-link:hover {
  color: var(--brass-dark);
  transform: none;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: var(--z-header);
  height: var(--header-height);
  border-bottom: 1px solid rgba(240, 246, 253, 0.13);
  background: rgba(11, 15, 26, 0.94);
  color: var(--bone);
  transition: box-shadow 200ms ease, background-color 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(11, 15, 26, 0.98);
  box-shadow: 0 12px 32px rgba(11, 15, 26, 0.18);
}

.nav-shell {
  align-items: center;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  height: 100%;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.75rem;
  min-width: 13rem;
}

.brand-mark {
  align-items: center;
  border: 1px solid var(--brass);
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 2.55rem;
  height: 2.55rem;
  justify-content: center;
  color: var(--brass);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.82rem;
  font-weight: 750;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.95rem;
}

.brand-copy small {
  margin-top: 0.25rem;
  color: var(--ash);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 1.45rem;
  justify-content: flex-end;
}

.main-nav a {
  position: relative;
  padding: 0.65rem 0;
  color: #C3D2E8;
  font-size: 0.78rem;
  font-weight: 600;
}

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

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--bone);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 88dvh;
  padding: 10rem 0 4.5rem;
  background: var(--carbon) url("/assets/images/ramon-maldonado-hero.webp") center / cover no-repeat;
  color: var(--bone);
  isolation: isolate;
}

.hero::before,
.service-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(8, 12, 22, 0.58);
  content: "";
}

.hero-shell {
  display: flex;
  min-height: calc(88dvh - 14.5rem);
  flex-direction: column;
  justify-content: space-between;
}

.hero-copy {
  max-width: 52rem;
  animation: hero-enter 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 {
  max-width: 50rem;
}

.hero h1 span {
  color: #7CC0FF;
}

.hero .lede {
  max-width: 40rem;
  margin-top: 1.75rem;
  color: #E6EEF9;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
  margin-top: 2rem;
}

.hero .text-link {
  color: var(--bone);
}

.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin: 2rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line-light);
  color: #A9BCD8;
  font-size: 0.78rem;
  list-style: none;
}

.decision-line {
  max-width: 55rem;
  margin-top: 4rem;
  padding: 1.4rem 1.5rem 1.2rem;
  border: 1px solid var(--line-light);
  background: rgba(11, 15, 26, 0.72);
}

.decision-line-label {
  margin-bottom: 1rem;
  color: #A9BCD8;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.decision-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.decision-steps::before,
.decision-steps::after {
  position: absolute;
  top: 0.45rem;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  transform-origin: left;
}

.decision-steps::before {
  background: rgba(240, 246, 253, 0.22);
}

.decision-steps::after {
  background: var(--brass);
  animation: decision-progress 2.4s 400ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.decision-step {
  position: relative;
  z-index: 1;
  padding-top: 1.35rem;
  color: #C7D5EA;
  font-size: 0.72rem;
  font-weight: 700;
}

.decision-step::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.9rem;
  height: 0.9rem;
  border: 2px solid var(--carbon);
  border-radius: 50%;
  background: var(--brass);
  content: "";
}

.thesis-band {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.thesis-grid {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: 4rem;
  padding: 5rem 0 5.5rem;
}

.thesis-grid blockquote {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3rem;
  font-weight: 580;
  line-height: 1.1;
  text-wrap: balance;
}

.thesis-grid blockquote strong {
  color: var(--brass-dark);
  font-weight: 700;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.section-heading-copy h2 {
  max-width: 48rem;
}

.section-heading-copy .lede {
  margin-top: 1.5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-item {
  position: relative;
  min-height: 22rem;
  padding: 2.4rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 220ms ease, color 220ms ease;
}

.service-item:hover {
  background: var(--carbon);
  color: var(--bone);
}

.service-token {
  align-items: center;
  display: inline-flex;
  width: 2.8rem;
  height: 2.8rem;
  justify-content: center;
  border: 1px solid var(--brass-dark);
  color: var(--brass-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
}

.service-item h3 {
  max-width: 28rem;
  margin-top: 4rem;
}

.service-item p {
  max-width: 34rem;
  margin-top: 1rem;
  color: var(--steel);
}

.service-item:hover p {
  color: #A9BCD8;
}

.service-item .text-link {
  position: absolute;
  right: 2.4rem;
  bottom: 2rem;
  left: 2.4rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 4.5rem;
  border-top: 1px solid var(--line-light);
}

.process-step {
  min-height: 20rem;
  padding: 2rem 1.7rem 2.5rem;
  border-right: 1px solid var(--line-light);
}

.process-step:last-child {
  border-right: 0;
}

.process-step b {
  display: block;
  margin-bottom: 5rem;
  color: var(--brass);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 500;
}

.process-step p {
  margin-top: 1rem;
  color: #A9BCD8;
  font-size: 0.92rem;
}

.proof-list {
  margin-top: 4rem;
  border-top: 1px solid var(--line);
}

.proof-row {
  align-items: center;
  display: grid;
  grid-template-columns: 0.6fr 1.5fr 2fr auto;
  gap: 2rem;
  min-height: 7rem;
  border-bottom: 1px solid var(--line);
  transition: transform 180ms ease, background-color 180ms ease;
}

.proof-row:hover {
  transform: translateX(0.8rem);
  background: rgba(78, 155, 255, 0.08);
}

.proof-row .proof-type {
  color: var(--brass-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.proof-row strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.3rem;
}

.proof-row p {
  color: var(--steel);
  font-size: 0.9rem;
}

.proof-row .proof-arrow {
  color: var(--brass-dark);
  font-size: 1.4rem;
}

.bio-grid {
  align-items: stretch;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
}

.bio-portrait {
  min-height: 44rem;
  background: var(--graphite) url("/assets/images/ramon/ramon-consultoria-negocios.webp") center / cover no-repeat;
}

.bio-copy {
  align-self: center;
  padding: 3rem 0;
}

.bio-copy h2 {
  margin-bottom: 2rem;
}

.bio-copy p + p {
  margin-top: 1.2rem;
}

.credential-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 2.2rem 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.credential-list span {
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
}

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

.faq-item {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  padding: 2.4rem 0 2.7rem;
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  font-size: 1.35rem;
  line-height: 1.25;
}

.faq-item p {
  color: var(--steel);
}

.cta-band {
  padding: 6rem 0 6.5rem;
  background: var(--brass);
  color: var(--carbon);
}

.cta-grid {
  align-items: end;
  display: grid;
  grid-template-columns: 2fr auto;
  gap: 3rem;
}

.cta-grid h2 {
  max-width: 52rem;
}

.cta-grid p {
  max-width: 42rem;
  margin-top: 1.4rem;
  font-weight: 600;
}

.site-footer {
  padding: 5rem 0 2rem;
  background: var(--carbon);
  color: var(--bone);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 4rem;
}

.footer-brand p {
  max-width: 26rem;
  margin-top: 1.5rem;
  color: var(--ash);
  font-size: 0.9rem;
}

.brand-footer {
  color: var(--bone);
}

.footer-grid h2 {
  margin-bottom: 1.2rem;
  color: var(--brass);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a {
  display: block;
  margin: 0.6rem 0;
  color: #A9BCD8;
  font-size: 0.82rem;
}

.footer-grid a:hover {
  color: var(--brass);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
  color: #7A8DA8;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  min-width: 7.5rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--brass);
  border-radius: var(--radius);
  background: var(--carbon);
  color: var(--bone);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, background-color 180ms ease;
}

.whatsapp-float::after {
  content: " ↗";
  color: var(--brass);
}

.whatsapp-float:hover {
  background: var(--graphite);
  transform: translateY(-2px);
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: var(--z-overlay);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  width: min(calc(100% - 2rem), 58rem);
  margin-inline: auto;
  padding: 1.25rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--carbon);
  color: var(--bone);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  align-self: center;
  color: #C3D2E8;
  font-size: 0.8rem;
}

.cookie-actions {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.cookie-banner .button-dark {
  border: 1px solid var(--brass);
}

.cookie-banner .text-button {
  color: #C3D2E8;
  font-size: 0.76rem;
}

.service-hero {
  position: relative;
  min-height: 42rem;
  padding: 11rem 0 6rem;
  background-color: var(--carbon);
  background-image: var(--service-hero-image, url("/assets/images/ramon-maldonado-hero.webp"));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--bone);
  isolation: isolate;
}

.service-hero::before {
  background: rgba(8, 12, 22, 0.68);
}

.service-hero h1 {
  max-width: 56rem;
  font-size: 4.2rem;
}

.service-hero .lede {
  max-width: 44rem;
  margin-top: 1.5rem;
  color: #E6EEF9;
}

.service-hero .hero-actions {
  margin-top: 2rem;
}

.breadcrumbs {
  margin-bottom: 2rem;
  color: #A9BCD8;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
}

.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.breadcrumbs span {
  margin: 0 0.55rem;
  color: var(--brass);
}

.content-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 6rem;
}

.content-sticky {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.content-sticky h2 {
  margin-bottom: 1.2rem;
  font-size: 2.1rem;
  line-height: 1.12;
}

.content-sticky p:not(.eyebrow) {
  margin-bottom: 1.3rem;
  color: var(--steel);
}

.content-body h2 {
  margin: 4rem 0 1.5rem;
  font-size: 2.55rem;
}

.content-body h2:first-child {
  margin-top: 0;
}

.content-body h3 {
  margin: 2.4rem 0 0.9rem;
  font-size: 1.4rem;
}

.content-body p + p {
  margin-top: 1rem;
}

.content-body ul {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.content-body li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.6rem;
  border-bottom: 1px solid var(--line);
}

.content-body li::before {
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--brass);
  content: "";
}

.service-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-point {
  min-height: 14rem;
  padding: 1.6rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-point b {
  display: block;
  margin-bottom: 2rem;
  color: var(--brass-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
}

.service-point p {
  margin-top: 0.7rem;
  color: var(--steel);
  font-size: 0.9rem;
}

.privacy-main,
.not-found-main {
  min-height: 75dvh;
  padding: 10rem 0 7rem;
}

.privacy-main article {
  max-width: 50rem;
}

.privacy-main h1,
.not-found-main h1 {
  font-size: 4rem;
}

.privacy-main h2 {
  margin: 3rem 0 1rem;
  font-size: 2rem;
}

.privacy-main p + p {
  margin-top: 1rem;
}

.not-found-main .lede,
.privacy-main .lede {
  margin-top: 1.5rem;
}

.not-found-main .hero-actions {
  margin-top: 2rem;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes decision-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Reveals a cargo de GSAP ScrollTrigger (site.js) */

@media (max-width: 1160px) {
  h1 { font-size: 4rem; }
  h2 { font-size: 3rem; }
  .main-nav { gap: 1rem; }
  .nav-cta { display: none; }
  .nav-shell { grid-template-columns: auto 1fr; }
  .proof-row { grid-template-columns: 0.55fr 1.4fr 1.8fr auto; }
}

@media (max-width: 900px) {
  :root { --header-height: 4.5rem; }
  .shell { width: min(100% - 2rem, 78rem); }
  .section { padding: 5.5rem 0 6rem; }
  .section-compact { padding: 4rem 0 4.5rem; }
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.7rem; }
  .nav-shell { grid-template-columns: auto auto; justify-content: space-between; }
  .menu-toggle {
    align-items: center;
    display: inline-flex;
    width: 2.8rem;
    height: 2.8rem;
    justify-content: center;
    border: 1px solid var(--line-light);
    border-radius: var(--radius);
    background: transparent;
    color: var(--bone);
  }
  .menu-icon { display: grid; gap: 0.35rem; width: 1.1rem; }
  .menu-icon i { display: block; height: 1px; background: currentColor; transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] .menu-icon i:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-icon i:last-child { transform: translateY(-3px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    z-index: var(--z-menu);
    align-items: stretch;
    display: none;
    height: calc(100dvh - var(--header-height));
    padding: 2rem 1rem;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--carbon);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 1rem 0; border-bottom: 1px solid var(--line-light); font-size: 1rem; }
  .hero { min-height: auto; padding: 9rem 0 4rem; background-position: 58% center; }
  .hero-shell { min-height: auto; }
  .decision-line { margin-top: 4rem; }
  .thesis-grid,
  .section-heading,
  .content-grid { grid-template-columns: 1fr; gap: 2rem; }
  .thesis-grid blockquote { font-size: 2.5rem; }
  .service-grid,
  .process-grid,
  .bio-grid { grid-template-columns: 1fr; }
  .service-item { min-height: 20rem; }
  .process-step { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .process-step b { margin-bottom: 2rem; }
  .bio-grid { gap: 3rem; }
  .bio-portrait { min-height: 36rem; }
  .proof-row { grid-template-columns: 0.6fr 1.8fr auto; gap: 1rem; padding: 1.5rem 0; }
  .proof-row p { grid-column: 2 / 4; }
  .faq-item { grid-template-columns: 1fr; gap: 1rem; }
  .cta-grid { align-items: start; grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .footer-brand { grid-column: 1 / -1; }
  .content-sticky { position: static; }
  .service-hero h1 { font-size: 3.5rem; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 1.5rem, 78rem); }
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.35rem; }
  .lede { font-size: 1.02rem; }
  .brand { min-width: 0; }
  .brand-copy strong { font-size: 0.82rem; }
  .brand-copy small { font-size: 0.52rem; }
  .brand-mark { flex-basis: 2.25rem; width: 2.25rem; height: 2.25rem; }
  .hero {
    padding-top: 7.7rem;
    background-image: url("/assets/images/ramon-maldonado-retrato.webp");
    background-position: center 20%;
  }
  .hero::before { background: rgba(8, 12, 22, 0.7); }
  .hero-copy { max-width: 100%; }
  .hero .lede { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .decision-line { padding: 1.2rem 1rem; }
  .decision-steps { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 0.5rem; }
  .decision-steps::before,
  .decision-steps::after { display: none; }
  .decision-step { padding: 0 0 0 1.2rem; }
  .decision-step::before { top: 0.25rem; width: 0.65rem; height: 0.65rem; }
  .thesis-grid { padding: 4rem 0 4.5rem; }
  .thesis-grid blockquote { font-size: 2.1rem; }
  .section-heading { margin-bottom: 2.5rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-item { min-height: 19rem; padding: 1.5rem; }
  .service-item h3 { margin-top: 2.5rem; }
  .service-item .text-link { right: 1.5rem; bottom: 1.3rem; left: 1.5rem; }
  .proof-row { grid-template-columns: 1fr auto; gap: 0.6rem; }
  .proof-row .proof-type { grid-column: 1 / -1; }
  .proof-row p { grid-column: 1 / -1; }
  .bio-portrait { min-height: 28rem; }
  .bio-copy { padding: 0; }
  .credential-list { grid-template-columns: 1fr; }
  .faq-item { padding: 1.8rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-base { flex-direction: column; }
  .whatsapp-float { right: 0.75rem; bottom: 0.75rem; }
  .cookie-banner { grid-template-columns: 1fr; gap: 1rem; }
  .cookie-actions { align-items: stretch; flex-direction: column; }
  .service-hero { min-height: auto; padding: 8.5rem 0 4.5rem; }
  .service-hero h1 { font-size: 2.7rem; }
  .service-points { grid-template-columns: 1fr; }
  .privacy-main h1,
  .not-found-main h1 { font-size: 2.8rem; }
}

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

/* Authority media system */

body.dialog-open {
  overflow: hidden;
}

.action-gallery {
  padding: 7rem 0 8rem;
  background: #FFFFFF;
}

.action-gallery-head {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.action-gallery-head h2 {
  max-width: 47rem;
}

.action-gallery-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr;
  grid-template-rows: repeat(2, 19rem);
  gap: 1rem;
}

.action-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--graphite);
}

.action-photo-wide {
  grid-row: 1 / 3;
}

.action-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.action-photo:hover img {
  transform: scale(1.025);
}

.action-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(11, 15, 26, 0.88);
  color: var(--bone);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  line-height: 1.4;
}

.action-photo figcaption span {
  color: #7CC0FF;
}

.home-video-section {
  padding: 7rem 0 8rem;
  background: #0B0F1A;
  color: var(--bone);
}

.home-media-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.home-media-heading h2 {
  max-width: 50rem;
}

.home-media-heading .lede {
  color: #A9BCD8;
}

.home-video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(18rem, 0.7fr);
  gap: 1rem;
}

.home-video-main,
.featured-video {
  position: relative;
  display: block;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #070B13;
  color: var(--bone);
}

.home-video-main::after,
.featured-video::after {
  position: absolute;
  inset: 0;
  background: rgba(6, 9, 16, 0.28);
  content: "";
  transition: background 240ms ease;
}

.home-video-main:hover::after,
.featured-video:hover::after {
  background: rgba(6, 9, 16, 0.12);
}

.home-video-main img,
.featured-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-video-main:hover img,
.featured-video:hover img {
  transform: scale(1.025);
}

.play-control {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(11, 15, 26, 0.82);
  color: #fff;
  font-size: 1rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

a:hover > .play-control {
  background: var(--brass);
  color: var(--carbon);
  transform: scale(1.06);
}

.home-video-main-copy,
.featured-video-copy {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  max-width: 48rem;
}

.home-video-main-copy small,
.featured-video-copy small {
  display: block;
  margin-bottom: 0.65rem;
  color: #7CC0FF;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.home-video-main-copy strong,
.featured-video-copy strong {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2rem;
  line-height: 1.05;
}

.home-video-rail {
  display: grid;
  grid-template-rows: repeat(2, 1fr) auto;
  gap: 1rem;
}

.home-video-mini {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  color: var(--bone);
}

.home-video-mini img {
  width: 8rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-video-mini small {
  display: block;
  margin-bottom: 0.4rem;
  color: #7CC0FF;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
}

.home-video-mini strong {
  display: -webkit-box;
  overflow: hidden;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-media-index-link {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border: 1px solid var(--line-light);
}

.home-media-index-link span {
  color: #7CC0FF;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  text-transform: uppercase;
}

.home-media-index-link strong {
  font-size: 0.82rem;
  line-height: 1.4;
}

.home-books-section {
  padding: 7rem 0 8rem;
  background: #0F2A4F;
}

.home-books-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 6rem;
  align-items: center;
}

.home-books-copy h2 {
  max-width: 35rem;
}

.home-books-copy .lede {
  max-width: 36rem;
  margin: 1.5rem 0 2rem;
  color: #B9CDE8;
}

.home-book-covers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: end;
}

.home-book-covers a {
  display: grid;
  gap: 0.8rem;
  transition: transform 240ms ease;
}

.home-book-covers a:nth-child(2) {
  transform: translateY(-1.8rem);
}

.home-book-covers a:hover {
  transform: translateY(-0.6rem);
}

.home-book-covers a:nth-child(2):hover {
  transform: translateY(-2.4rem);
}

.home-book-covers img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  box-shadow: 0 26px 60px rgba(11, 15, 26, 0.28);
}

.home-book-covers span {
  color: #C7D7EE;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  line-height: 1.4;
}

.library-hero {
  min-height: 48rem;
  padding: 10rem 0 6rem;
  overflow: hidden;
  background: #0B0F1A;
  color: var(--bone);
}

.library-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(30rem, 1.14fr);
  gap: 4rem;
  align-items: center;
}

.library-hero-copy h1,
.video-hero-copy h1 {
  font-size: 4.8rem;
}

.library-hero-copy .lede,
.video-hero-copy .lede {
  max-width: 43rem;
  margin-top: 1.5rem;
  color: #A9BCD8;
}

.library-hero-copy .hero-actions {
  margin-top: 2rem;
}

.book-stack {
  position: relative;
  min-height: 34rem;
}

.book-stack-cover {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(42%, 15.5rem);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
  transform-origin: center bottom;
  animation: book-arrive 700ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.book-stack-cover-1 {
  z-index: 3;
  transform: translate(-50%, -48%);
}

.book-stack-cover-2 {
  z-index: 2;
  transform: translate(-95%, -45%) rotate(-8deg);
  animation-delay: 100ms;
}

.book-stack-cover-3 {
  z-index: 1;
  transform: translate(-5%, -45%) rotate(8deg);
  animation-delay: 200ms;
}

@keyframes book-arrive {
  from { opacity: 0; margin-top: 2rem; }
  to { opacity: 1; margin-top: 0; }
}

.library-manifesto {
  padding: 4rem 0;
  background: #0F2A4F;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 4rem;
}

.manifesto-grid blockquote {
  max-width: 52rem;
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.6rem;
  font-weight: 650;
  line-height: 1.02;
}

.books-catalog {
  border-top: 1px solid var(--line);
}

.book-entry {
  display: grid;
  grid-template-columns: minmax(15rem, 0.62fr) minmax(0, 1.38fr);
  gap: 5rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--line);
}

.book-cover-shell {
  position: relative;
  width: min(100%, 21rem);
}

.book-cover-shell img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.book-number {
  position: absolute;
  top: -1.2rem;
  left: -1.2rem;
  z-index: 1;
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  background: var(--carbon);
  color: #7CC0FF;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
}

.book-entry-copy h3 {
  font-size: 3rem;
}

.book-entry-copy > p:not(.utility-label) {
  max-width: 44rem;
  margin: 1.3rem 0 2rem;
  color: var(--steel);
}

.library-bridge .bridge-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
}

.library-bridge .lede {
  margin-bottom: 2rem;
  color: #A9BCD8;
}

.video-hero {
  padding: 10rem 0 6rem;
  background: #0B0F1A;
  color: var(--bone);
}

.video-hero-grid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.75fr) minmax(0, 1.25fr);
  gap: 4rem;
  align-items: center;
}

.featured-video-copy strong {
  font-size: 1.7rem;
}

.media-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.media-stats span {
  display: grid;
  gap: 0.25rem;
  min-height: 5rem;
  padding: 1rem;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: #8FA3BF;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
}

.media-stats strong {
  color: var(--bone);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.1rem;
}

.media-index {
  padding: 7rem 0 8rem;
  background: var(--paper);
}

.media-index-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 4rem;
  align-items: end;
}

.media-index-head h2 {
  max-width: 53rem;
}

.video-search input {
  width: 100%;
  height: 3.4rem;
  padding: 0 1rem;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.video-search input::placeholder {
  color: #6B7C97;
}

.filter-bar {
  display: flex;
  gap: 0.6rem;
  margin-top: 3rem;
  padding-bottom: 0.6rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.filter-button {
  flex: 0 0 auto;
  min-height: 2.6rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--steel);
  cursor: pointer;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
}

.filter-button.is-active {
  border-color: var(--carbon);
  background: var(--carbon);
  color: var(--bone);
}

.result-count {
  margin: 1.2rem 0 2rem;
  color: var(--steel);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
}

.video-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem 1.2rem;
}

.video-card {
  min-width: 0;
  border-top: 1px solid var(--line);
}

.video-card[hidden] {
  display: none;
}

.video-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  margin-top: 0.8rem;
  overflow: hidden;
  background: var(--graphite);
}

.video-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.video-card-media:hover img {
  transform: scale(1.035);
}

.play-control-small {
  top: 0.8rem;
  left: 0.8rem;
  width: 2.8rem;
  height: 2.8rem;
  font-size: 0.72rem;
}

.duration {
  position: absolute;
  right: 0.6rem;
  bottom: 0.6rem;
  padding: 0.25rem 0.45rem;
  background: rgba(8, 11, 19, 0.9);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
}

.video-card-copy {
  padding-top: 1.1rem;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--brass-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
}

.video-card h3 {
  margin-top: 0.8rem;
  font-size: 1.35rem;
  line-height: 1.12;
}

.video-card h3 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25rem;
}

.video-card-copy > p {
  display: -webkit-box;
  margin-top: 0.8rem;
  overflow: hidden;
  color: var(--steel);
  font-size: 0.82rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1rem;
}

.topic-list span {
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--steel);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
}

.empty-state {
  padding: 5rem 0;
  border-top: 1px solid var(--line);
}

.empty-state p {
  margin-top: 0.8rem;
  color: var(--steel);
}

.content-dialog {
  width: min(72rem, calc(100vw - 2rem));
  max-height: calc(100dvh - 2rem);
  padding: 0;
  border: 1px solid rgba(240, 246, 253, 0.24);
  border-radius: var(--radius);
  background: var(--carbon);
  color: var(--bone);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
  overflow: auto;
}

.content-dialog::backdrop {
  background: rgba(6, 9, 16, 0.86);
}

.dialog-close {
  position: sticky;
  top: 0.8rem;
  z-index: 4;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  margin: 0.8rem 0.8rem -3.5rem auto;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: rgba(11, 15, 26, 0.9);
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
}

.video-dialog-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-dialog-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-dialog-copy {
  padding: 2rem;
}

.video-dialog-copy h2 {
  max-width: 58rem;
  font-size: 2.2rem;
}

.video-dialog-copy .text-link {
  display: inline-block;
  margin-top: 1.2rem;
}

.book-dialog {
  width: min(64rem, calc(100vw - 2rem));
  background: var(--paper);
  color: var(--ink);
}

.book-dialog-grid {
  display: grid;
  grid-template-columns: 18rem minmax(0, 1fr);
  gap: 2.5rem;
  padding: 2rem;
}

.book-dialog-grid > img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.book-dialog-grid h2 {
  font-size: 2.6rem;
}

.book-dialog-grid > div > p:not(.eyebrow) {
  margin-top: 0.8rem;
  color: var(--steel);
}

.book-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.book-form label {
  display: grid;
  gap: 0.35rem;
}

.book-form label > span {
  color: var(--steel);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
}

.book-form input:not([type="checkbox"]) {
  min-width: 0;
  height: 3rem;
  padding: 0 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
}

.book-form .privacy-check,
.book-form .button,
.book-form .form-status {
  grid-column: 1 / -1;
}

.book-form .privacy-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
}

.book-form .privacy-check input {
  margin-top: 0.2rem;
}

.book-form .privacy-check a {
  text-decoration: underline;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
}

.form-status {
  min-height: 1.4rem;
  color: var(--steel);
  font-size: 0.76rem;
}

@media (max-width: 1160px) {
  .main-nav {
    gap: 0.75rem;
  }

  .main-nav a {
    font-size: 0.68rem;
  }

  .library-hero-copy h1,
  .video-hero-copy h1 {
    font-size: 4rem;
  }
}

@media (max-width: 900px) {
  .action-gallery-head,
  .home-media-heading,
  .home-books-grid,
  .library-hero-grid,
  .manifesto-grid,
  .library-bridge .bridge-grid,
  .video-hero-grid,
  .media-index-head {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .action-gallery-grid {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 18rem 18rem;
  }

  .home-video-layout {
    grid-template-columns: 1fr;
  }

  .home-video-rail {
    grid-template-columns: repeat(2, minmax(16rem, 1fr));
    grid-template-rows: auto auto;
  }

  .home-media-index-link {
    grid-column: 1 / -1;
  }

  .home-book-covers {
    max-width: 44rem;
  }

  .library-hero,
  .video-hero {
    padding-top: 8.5rem;
  }

  .book-stack {
    min-height: 30rem;
  }

  .book-entry {
    grid-template-columns: minmax(12rem, 0.55fr) minmax(0, 1.45fr);
    gap: 3rem;
  }

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

@media (max-width: 620px) {
  .action-gallery,
  .home-video-section,
  .home-books-section,
  .media-index {
    padding: 4.5rem 0 5rem;
  }

  .action-gallery-grid {
    display: flex;
    gap: 0.8rem;
    width: min(100% - 1.5rem, 78rem);
    padding-right: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .action-photo,
  .action-photo-wide {
    flex: 0 0 86%;
    height: 23rem;
    scroll-snap-align: start;
  }

  .home-video-main-copy strong,
  .featured-video-copy strong {
    font-size: 1.25rem;
  }

  .play-control {
    top: 0.8rem;
    left: 0.8rem;
    width: 3rem;
    height: 3rem;
    font-size: 0.75rem;
  }

  .home-video-rail {
    display: flex;
    gap: 0.8rem;
    width: 100%;
    padding-right: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .home-video-mini,
  .home-media-index-link {
    flex: 0 0 84%;
    min-height: 7.5rem;
    padding: 0.8rem;
    scroll-snap-align: start;
    border: 1px solid var(--line-light);
  }

  .home-video-mini {
    grid-template-columns: 7rem minmax(0, 1fr);
  }

  .home-video-mini img {
    width: 7rem;
  }

  .home-book-covers {
    gap: 0.65rem;
  }

  .home-book-covers a:nth-child(2) {
    transform: translateY(-0.8rem);
  }

  .home-book-covers span {
    font-size: 0.52rem;
  }

  .library-hero-copy h1,
  .video-hero-copy h1 {
    font-size: 2.8rem;
  }

  .book-stack {
    min-height: 22rem;
  }

  .book-stack-cover {
    width: 43%;
  }

  .manifesto-grid blockquote {
    font-size: 2rem;
  }

  .book-entry {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
  }

  .book-cover-shell {
    width: min(76%, 18rem);
    margin-inline: auto;
  }

  .book-entry-copy h3 {
    font-size: 2.3rem;
  }

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

  .media-index-head {
    gap: 1.5rem;
  }

  .video-catalog {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .video-card {
    display: grid;
    grid-template-columns: 8rem minmax(0, 1fr);
    gap: 1rem;
    padding-top: 0.8rem;
  }

  .video-card-media {
    margin: 0;
  }

  .video-card-copy {
    padding: 0;
  }

  .video-card h3 {
    margin-top: 0.4rem;
    font-size: 1rem;
  }

  .video-card-copy > p,
  .topic-list {
    display: none;
  }

  .video-meta {
    display: block;
  }

  .video-meta time {
    display: none;
  }

  .play-control-small {
    top: 0.4rem;
    left: 0.4rem;
    width: 2rem;
    height: 2rem;
  }

  .duration {
    right: 0.3rem;
    bottom: 0.3rem;
  }

  .content-dialog {
    width: calc(100vw - 1rem);
    max-height: calc(100dvh - 1rem);
  }

  .video-dialog-copy {
    padding: 1.2rem;
  }

  .video-dialog-copy h2 {
    font-size: 1.5rem;
  }

  .book-dialog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.2rem;
  }

  .book-dialog-grid > img {
    width: 8rem;
  }

  .book-dialog-grid h2 {
    font-size: 2rem;
  }

  .book-form {
    grid-template-columns: 1fr;
  }

  .book-form .privacy-check,
  .book-form .button,
  .book-form .form-status {
    grid-column: auto;
  }
}

/* ============================================================
   Sistema azul abisal v2.0
   #0B0F1A (abismo) · #0F2A4F (marino) · #FFFFFF
   Letras negras sobre blanco · blancas sobre azul oscuro
   ============================================================ */

html {
  scrollbar-color: var(--graphite) var(--carbon);
}

body {
  background: var(--bone);
  color: var(--ink);
}

/* Grano cinematográfico global */
body::after {
  position: fixed;
  inset: 0;
  z-index: 99;
  content: "";
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

button,
a,
input,
select {
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

::selection {
  background: var(--azure);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--azure);
}

/* ---------- Botones ---------- */

.button {
  position: relative;
  border-radius: 8px;
  background: linear-gradient(135deg, #1D6FE0 0%, #4E9BFF 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(29, 111, 224, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 240ms ease;
}

.button:hover {
  background: linear-gradient(135deg, #2A7CEC 0%, #63ABFF 100%);
  box-shadow: 0 16px 44px rgba(29, 111, 224, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.button:hover::before {
  opacity: 1;
}

.button-dark {
  background: var(--carbon);
  color: #fff;
  box-shadow: 0 10px 30px rgba(11, 15, 26, 0.3), inset 0 0 0 1px rgba(78, 155, 255, 0.35);
}

.button-dark:hover {
  background: var(--graphite);
  box-shadow: 0 16px 44px rgba(15, 42, 79, 0.45), inset 0 0 0 1px rgba(78, 155, 255, 0.6);
}

.text-link,
.text-button {
  text-decoration-color: var(--azure);
}

.text-link:hover,
.text-button:hover {
  color: #1D6FE0;
}

.eyebrow,
.utility-label {
  color: #1D6FE0;
}

.section-dark .eyebrow,
.hero .eyebrow,
.service-hero .eyebrow {
  color: var(--azure-soft);
}

/* ---------- Header ---------- */

.site-header {
  border-bottom: 1px solid rgba(78, 155, 255, 0.16);
  background: rgba(11, 15, 26, 0.82);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
}

.site-header.is-scrolled {
  background: rgba(11, 15, 26, 0.94);
  box-shadow: 0 14px 44px rgba(4, 8, 16, 0.5);
}

.brand-mark {
  border-color: rgba(78, 155, 255, 0.7);
  color: var(--azure-soft);
  box-shadow: 0 0 18px rgba(78, 155, 255, 0.25);
}

.main-nav a {
  color: #C3D2E8;
}

.main-nav a::after {
  background: var(--azure);
}

/* ---------- Hero ---------- */

.hero {
  min-height: 92dvh;
  overflow: hidden;
  background: var(--carbon);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 43%;
  filter: saturate(0.4) contrast(1.15) brightness(0.62) hue-rotate(-6deg);
  transform: scale(1.06);
  transform-origin: 68% center;
}

.hero::before {
  background:
    radial-gradient(90rem 50rem at 82% -10%, rgba(78, 155, 255, 0.16), transparent 55%),
    linear-gradient(100deg, rgba(11, 15, 26, 0.94) 0%, rgba(11, 15, 26, 0.72) 46%, rgba(15, 42, 79, 0.45) 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0 0;
  z-index: -1;
  height: 10rem;
  content: "";
  background: linear-gradient(to bottom, transparent, var(--carbon));
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(78, 155, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 155, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(70rem 40rem at 70% 20%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(70rem 40rem at 70% 20%, #000 0%, transparent 75%);
}

.hero-copy {
  animation: none;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 3px 30px rgba(4, 8, 16, 0.55);
}

.hero h1 span {
  color: var(--azure-soft);
}

.hero .lede {
  color: #E6EEF9;
}

.hero-shell {
  position: relative;
  z-index: 1;
}

.hero-credentials,
.decision-line-label {
  color: #A9BCD8;
}

.decision-line {
  border: 1px solid rgba(78, 155, 255, 0.22);
  border-radius: 10px;
  background: rgba(11, 15, 26, 0.66);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(4, 8, 16, 0.45);
}

.decision-steps::before {
  background: rgba(240, 246, 253, 0.16);
}

.decision-steps::after {
  background: linear-gradient(90deg, #1D6FE0, var(--azure-soft));
  box-shadow: 0 0 12px rgba(78, 155, 255, 0.6);
}

.decision-step {
  color: #E6EEF9;
}

.decision-step::before {
  border-color: var(--carbon);
  background: var(--azure);
  box-shadow: 0 0 10px rgba(78, 155, 255, 0.8);
}

/* ---------- Secciones blancas: letras negras ---------- */

.thesis-band,
.section-paper,
.media-index,
.action-gallery {
  background: var(--bone);
  color: var(--ink);
}

.thesis-band {
  border-bottom: 1px solid var(--line);
}

.thesis-grid blockquote strong {
  color: #1D6FE0;
}

.service-item {
  overflow: hidden;
}

.service-item::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0;
  background:
    radial-gradient(34rem 22rem at 80% 0%, rgba(78, 155, 255, 0.22), transparent 60%),
    linear-gradient(150deg, var(--graphite), var(--carbon) 70%);
  transition: opacity 320ms cubic-bezier(0.23, 1, 0.32, 1);
}

.service-item {
  position: relative;
  z-index: 0;
}

.service-item:hover {
  background: transparent;
  color: #fff;
}

.service-item:hover::before {
  opacity: 1;
}

.service-item:hover p {
  color: #C7D5EA;
}

.service-item:hover .service-token {
  border-color: var(--azure-soft);
  color: var(--azure-soft);
}

.service-token {
  border-color: #1D6FE0;
  border-radius: 8px;
  color: #1D6FE0;
  transition: border-color 240ms ease, color 240ms ease;
}

.proof-row:hover {
  background: rgba(78, 155, 255, 0.07);
}

.proof-row .proof-type,
.proof-row .proof-arrow {
  color: #1D6FE0;
}

/* ---------- Sección oscura (método) ---------- */

.section-dark {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(80rem 44rem at 12% -10%, rgba(15, 42, 79, 0.9), transparent 60%),
    var(--carbon);
  color: #fff;
}

.section-dark::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(78, 155, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 155, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(80rem 50rem at 30% 0%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(80rem 50rem at 30% 0%, #000, transparent 80%);
}

.section-dark .lede,
.process-step p {
  color: #A9BCD8;
}

.process-step {
  position: relative;
  transition: background-color 280ms ease;
}

.process-step::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #1D6FE0, var(--azure-soft));
  transition: width 480ms cubic-bezier(0.23, 1, 0.32, 1);
}

.process-step:hover {
  background: rgba(15, 42, 79, 0.35);
}

.process-step:hover::before {
  width: 100%;
}

.process-step b {
  color: var(--azure-soft);
}

/* ---------- Trayectoria (gráfica de estrategia) ---------- */

.context-label {
  margin: 0;
  color: var(--azure-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
}

.trajectory-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 8rem 0 9rem;
  background:
    radial-gradient(70rem 40rem at 88% 10%, rgba(15, 42, 79, 0.85), transparent 62%),
    var(--carbon);
  color: #fff;
}

.trajectory-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("/assets/images/bg/contours.svg") center / cover no-repeat;
  opacity: 0.55;
}

.trajectory-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(to bottom, rgba(11, 15, 26, 0.55), rgba(11, 15, 26, 0.1) 40%, rgba(11, 15, 26, 0.6));
}

.trajectory-heading {
  display: grid;
  grid-template-columns: 0.72fr 2.28fr;
  gap: 4rem;
  align-items: start;
}

.trajectory-heading h2 {
  max-width: 54rem;
  font-size: 4.4rem;
}

.trajectory-heading .lede {
  max-width: 46rem;
  margin-top: 1.5rem;
  color: #A9BCD8;
}

.trajectory-figure {
  margin-top: 5rem;
}

.trajectory-chart {
  width: 100%;
  height: auto;
  overflow: visible;
}

.trajectory-guides line {
  stroke: rgba(240, 246, 253, 0.1);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.trajectory-guides line.axis {
  stroke: rgba(240, 246, 253, 0.24);
}

.trajectory-area {
  fill: url(#trajectory-fill);
  opacity: 0;
}

.trajectory-path-shadow,
.trajectory-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.trajectory-path-shadow {
  stroke: rgba(78, 155, 255, 0.16);
  stroke-width: 16;
}

.trajectory-path {
  stroke: url(#trajectory-stroke);
  stroke-width: 4.5;
  filter: drop-shadow(0 0 14px rgba(78, 155, 255, 0.55));
}

.trajectory-nodes circle {
  fill: var(--carbon);
  stroke: var(--azure-soft);
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 10px rgba(78, 155, 255, 0.7));
}

.trajectory-phases {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(240, 246, 253, 0.14);
  list-style: none;
}

.trajectory-phases li {
  min-width: 0;
  padding: 1.5rem 1.35rem 0 0;
  border-right: 1px solid rgba(240, 246, 253, 0.1);
}

.trajectory-phases li + li {
  padding-left: 1.35rem;
}

.trajectory-phases li:last-child {
  border-right: 0;
}

.trajectory-phases span,
.trajectory-phases strong {
  display: block;
}

.trajectory-phases span {
  color: var(--azure-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.trajectory-phases strong {
  margin-top: 0.55rem;
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.16rem;
}

.trajectory-phases p {
  margin-top: 0.6rem;
  color: #93A7C4;
  font-size: 0.78rem;
  line-height: 1.55;
}

.trajectory-figure figcaption {
  max-width: 60rem;
  margin-top: 2.4rem;
  color: #7A8DA8;
  font-size: 0.76rem;
}

/* ---------- Galería ---------- */

.action-gallery {
  overflow: hidden;
}

.action-gallery-grid {
  perspective: 1200px;
  transform-style: preserve-3d;
}

.action-photo {
  border-radius: 10px;
  background: var(--graphite);
  box-shadow: 0 30px 90px rgba(11, 15, 26, 0.28);
  transform-style: preserve-3d;
}

.action-photo img {
  filter: saturate(0.75) contrast(1.06);
}

.action-photo figcaption {
  background: rgba(11, 15, 26, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.action-photo figcaption span {
  color: var(--azure-soft);
}

/* ---------- Video (azul abisal) ---------- */

.home-video-section,
.video-hero,
.library-hero,
.library-bridge {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(70rem 40rem at 80% -10%, rgba(15, 42, 79, 0.8), transparent 60%),
    var(--carbon);
  color: #fff;
}

.home-video-main {
  border-radius: 12px;
  box-shadow: 0 34px 100px rgba(4, 8, 16, 0.6);
}

.home-video-main::after {
  background: linear-gradient(to top, rgba(11, 15, 26, 0.66), transparent 55%);
}

.play-control,
.play-control-small {
  border-color: rgba(255, 255, 255, 0.35);
  background: linear-gradient(135deg, #1D6FE0, #4E9BFF);
  color: #fff;
  box-shadow: 0 0 30px rgba(78, 155, 255, 0.5);
}

a:hover > .play-control {
  background: linear-gradient(135deg, #2A7CEC, #63ABFF);
  color: #fff;
}

.home-video-mini,
.home-media-index-link {
  border-radius: 8px;
  color: #fff;
}

.home-video-mini img {
  border-radius: 6px;
}

/* ---------- Libros: marino profundo ---------- */

.home-books-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(60rem 36rem at 16% 8%, rgba(30, 74, 122, 0.55), transparent 60%),
    linear-gradient(160deg, #0F2A4F 0%, #0B0F1A 78%);
  color: #fff;
}

.home-books-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(78, 155, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 155, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(60rem 40rem at 20% 20%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(60rem 40rem at 20% 20%, #000, transparent 80%);
}

.home-books-copy .lede {
  color: #B9CDE8;
}

.home-books-section .button-dark {
  background: #fff;
  color: var(--carbon);
  box-shadow: 0 14px 40px rgba(4, 8, 16, 0.4);
}

.home-books-section .button-dark:hover {
  background: #E6EEF9;
  color: var(--carbon);
}

.home-book-covers img {
  border-radius: 6px;
}

.home-book-covers a {
  filter: drop-shadow(0 28px 40px rgba(4, 8, 16, 0.55));
}

.home-book-covers span {
  color: #C7D7EE;
}

/* ---------- Bio ---------- */

.bio-portrait {
  border-radius: 12px;
  box-shadow: 0 36px 100px rgba(11, 15, 26, 0.3);
}

/* ---------- Manifiesto / CTA ---------- */

.library-manifesto {
  background: linear-gradient(160deg, #0F2A4F, #0B0F1A);
  color: #fff;
}

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 8rem 0 9rem;
  background: url("/assets/images/bg/glow-horizon.svg") center bottom / cover no-repeat, var(--carbon);
  color: #fff;
}

.cta-band::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: radial-gradient(64rem 30rem at 50% 118%, rgba(78, 155, 255, 0.34), transparent 65%);
}

.cta-band .utility-label {
  color: var(--azure-soft);
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: #C7D5EA;
}

.cta-band .button-dark {
  background: linear-gradient(135deg, #1D6FE0 0%, #4E9BFF 100%);
  color: #fff;
  box-shadow: 0 16px 50px rgba(29, 111, 224, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cta-band .button-dark:hover {
  background: linear-gradient(135deg, #2A7CEC 0%, #63ABFF 100%);
  transform: translateY(-2px);
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid rgba(78, 155, 255, 0.18);
  background: var(--carbon);
  color: #fff;
}

.site-footer p,
.site-footer a {
  color: #A9BCD8;
}

.footer-grid h2 {
  color: var(--azure-soft);
}

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

.whatsapp-float {
  border-color: rgba(78, 155, 255, 0.5);
  background: var(--graphite);
  color: #fff;
}

.whatsapp-float::after {
  color: var(--azure-soft);
}

.whatsapp-float:hover {
  background: var(--navy-mid);
}

.cookie-banner {
  border-color: rgba(78, 155, 255, 0.25);
  background: rgba(11, 15, 26, 0.96);
  color: #fff;
}

/* ---------- Service hero / páginas internas ---------- */

.service-hero {
  background-color: var(--carbon);
}

.service-hero::before {
  background:
    radial-gradient(80rem 46rem at 84% -8%, rgba(78, 155, 255, 0.14), transparent 55%),
    linear-gradient(100deg, rgba(11, 15, 26, 0.92) 0%, rgba(11, 15, 26, 0.68) 50%, rgba(15, 42, 79, 0.5) 100%);
}

.service-hero .lede {
  color: #E6EEF9;
}

.filter-button.is-active,
.filter-button:hover {
  border-color: #1D6FE0;
  background: #1D6FE0;
  color: #fff;
}

.video-card-media img {
  filter: saturate(0.7) contrast(1.07);
  transition: transform 500ms cubic-bezier(0.23, 1, 0.32, 1), filter 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.video-card:hover .video-card-media img {
  filter: saturate(0.95) contrast(1.03);
}

.video-card {
  content-visibility: auto;
  contain-intrinsic-size: 0 25rem;
}

.content-dialog {
  border-color: rgba(78, 155, 255, 0.28);
  background: var(--bone);
  color: var(--ink);
  box-shadow: 0 36px 120px rgba(2, 5, 12, 0.66);
}

.content-dialog::backdrop {
  background: rgba(4, 8, 16, 0.88);
  backdrop-filter: blur(6px);
}

.dialog-close {
  background: var(--carbon);
  color: #fff;
}

.book-form input {
  border-color: rgba(15, 42, 79, 0.3);
  background: #fff;
  color: var(--ink);
}

.media-stats strong {
  color: #fff;
}

/* ---------- Responsive ---------- */

@media (hover: hover) and (pointer: fine) {
  .service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 70px rgba(11, 15, 26, 0.24);
  }

  .action-photo:hover img {
    transform: scale(1.04);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 88dvh;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero::before {
    background:
      radial-gradient(60rem 36rem at 80% -10%, rgba(78, 155, 255, 0.12), transparent 55%),
      linear-gradient(115deg, rgba(11, 15, 26, 0.94) 0%, rgba(11, 15, 26, 0.78) 60%, rgba(15, 42, 79, 0.55) 100%);
  }

  .trajectory-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trajectory-heading h2 {
    font-size: 3.5rem;
  }

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

  .trajectory-phases li {
    padding: 1.35rem;
    border-bottom: 1px solid rgba(240, 246, 253, 0.1);
  }

  .trajectory-phases li + li {
    padding-left: 1.35rem;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 48rem;
    padding-top: 7.5rem;
  }

  .hero-media img {
    object-position: 69% center;
  }

  .trajectory-section {
    padding: 5rem 0 5.5rem;
  }

  .trajectory-heading h2 {
    font-size: 2.65rem;
  }

  .trajectory-chart {
    min-width: 42rem;
    transform: translateX(-3.5rem);
  }

  .trajectory-figure {
    overflow: hidden;
  }

  .trajectory-phases {
    grid-template-columns: 1fr;
  }

  .trajectory-phases li,
  .trajectory-phases li + li {
    display: grid;
    grid-template-columns: 4.2rem minmax(0, 1fr);
    gap: 0 1rem;
    padding: 1.15rem 0;
    border-right: 0;
  }

  .trajectory-phases span {
    grid-row: 1 / 3;
  }

  .trajectory-phases strong {
    margin-top: 0;
  }

  .trajectory-phases p {
    grid-column: 2;
  }

  .video-card {
    contain-intrinsic-size: 0 9rem;
  }

  .cta-band {
    padding: 5.5rem 0 6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-hero-image],
  [data-expand-frame],
  [data-depth-photo],
  [data-cinematic-media],
  [data-cinematic-portrait],
  [data-trajectory-node],
  [data-trajectory-phase],
  [data-reveal] {
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }

  [data-trajectory-path] {
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
  }

  .trajectory-area {
    opacity: 1 !important;
  }

  body::after {
    display: none;
  }
}
