@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Cormorant+SC:wght@600;700&display=swap');

:root {
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-caps: 'Cormorant SC', 'Cormorant Garamond', serif;
  --bg: #050505;

  --bg-soft: #0e0e0f;

  --surface: rgba(14, 14, 15, 0.94);
  --surface-strong: rgba(9, 9, 10, 0.98);
  --surface-2: #17181a;
  --surface-3: #222326;
  --text: #fbfbfc;
  --muted: #b3b3b8;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(25, 141, 255, 0.5);
  --accent: #148cff;
  --accent-strong: #0d6efd;
  --accent-2: #f2f8ff;
  --accent-warm: #6ed6ff;
  --max: 1180px;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.4);
  --shadow-strong: 0 30px 90px rgba(0, 0, 0, 0.58);
  --hero-glow: radial-gradient(circle at top left, rgba(20, 140, 255, 0.16), transparent 42%), radial-gradient(circle at bottom right, rgba(0, 238, 255, 0.12), transparent 35%);
}

body[data-theme="light"] {
  --bg: #ffffff;
  --bg-soft: #f3f3f4;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: rgba(255, 255, 255, 0.99);
  --surface-2: #f5f5f6;
  --surface-3: #ebebee;
  --text: #121212;
  --muted: #666870;
  --line: rgba(18, 18, 18, 0.08);
  --line-strong: rgba(13, 110, 253, 0.3);
  --accent: #0d6efd;
  --accent-strong: #004de8;
  --accent-2: #0f1114;
  --accent-warm: #2fdcff;
  --shadow-soft: 0 16px 46px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 28px 70px rgba(0, 0, 0, 0.12);
  --hero-glow: radial-gradient(circle at top left, rgba(13, 110, 253, 0.08), transparent 40%), radial-gradient(circle at bottom right, rgba(47, 220, 255, 0.08), transparent 30%);
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  margin: 0;

  overflow: visible;
}
#main-content {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
.lh-bar {
  position: sticky;
  top: 0;
  z-index: 999;
}
.lot-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: #000;
  opacity: 1;
  visibility: visible;
  transition: opacity .42s ease, visibility .42s ease;
}

.lot-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lot-preloader__inner {
  width: min(100%, 420px);
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.lot-preloader__logo {
  width: min(240px, 58vw);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .96;
  animation: lotLoaderPulse 1.9s ease-in-out infinite;
}

.lot-preloader__status {
  color: rgba(255,255,255,.88);
  font-family: var(--font-caps);
  font-size: clamp(1.35rem, 2.8vw, 1.8rem);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.lot-preloader__bar {
  position: relative;
  width: min(280px, 62vw);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}

.lot-preloader__bar span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 38%;
  border-radius: inherit;
  background: linear-gradient(90deg, #9b7728 0%, #d4ad56 45%, #f0d38a 100%);
  box-shadow: 0 0 18px rgba(212,173,86,.42);
  animation: lotLoaderBar 1.15s ease-in-out infinite;
}

body.lot-preloader-active {
  overflow: hidden;
}

.cookie-consent-banner {
  position: fixed;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 9800;
  width: min(420px, calc(100vw - 1.4rem));
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(212, 173, 86, 0.18);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(8, 9, 12, 0.94), rgba(10, 11, 14, 0.9));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  color: rgba(255,255,255,0.94);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

body[data-theme="light"] .cookie-consent-banner {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(247,247,249,0.94));
  border-color: rgba(159, 118, 37, 0.18);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
  color: #18181b;
}

.cookie-consent-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent-banner.is-hidden {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.cookie-consent-banner__eyebrow {
  margin-bottom: .45rem;
  color: #d4ad56;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

body[data-theme="light"] .cookie-consent-banner__eyebrow {
  color: #9b7728;
}

.cookie-consent-banner__title {
  margin: 0 0 .45rem;
  font-size: 1.34rem;
  line-height: 1.05;
}

.cookie-consent-banner__text,
.cookie-consent-banner__note {
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
}

.cookie-consent-banner__text + .cookie-consent-banner__text,
.cookie-consent-banner__text + .cookie-consent-banner__note,
.cookie-consent-banner__note + .cookie-consent-banner__actions {
  margin-top: .72rem;
}

.cookie-consent-banner__text--muted,
.cookie-consent-banner__note {
  color: rgba(255,255,255,0.72);
}

body[data-theme="light"] .cookie-consent-banner__text--muted,
body[data-theme="light"] .cookie-consent-banner__note {
  color: rgba(24,24,27,0.72);
}

.cookie-consent-banner a {
  color: #f0d38a;
  text-decoration-color: rgba(240,211,138,.45);
}

body[data-theme="light"] .cookie-consent-banner a {
  color: #8b6821;
  text-decoration-color: rgba(139,104,33,.34);
}

.cookie-consent-banner__actions {
  display: flex;
  justify-content: flex-end;
  gap: .65rem;
  flex-wrap: wrap;
}

.cookie-consent-banner__button {
  appearance: none;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: .72rem 1rem;
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.cookie-consent-banner__button:hover {
  transform: translateY(-1px);
}

.cookie-consent-banner__button--ghost {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
}

body[data-theme="light"] .cookie-consent-banner__button--ghost {
  border-color: rgba(24,24,27,.1);
  background: rgba(24,24,27,.04);
  color: #18181b;
}

.cookie-consent-banner__button--primary {
  background: linear-gradient(135deg, #9b7728 0%, #d4ad56 48%, #f0d38a 100%);
  color: #111;
  box-shadow: 0 10px 24px rgba(212,173,86,.22);
}

@media (max-width: 640px) {
  .cookie-consent-banner {
    left: .7rem;
    bottom: .7rem;
    width: auto;
    padding: .95rem;
    border-radius: 18px;
  }

  .cookie-consent-banner__actions {
    justify-content: stretch;
  }

  .cookie-consent-banner__button {
    flex: 1 1 100%;
    width: 100%;
  }
}

@keyframes lotLoaderBar {
  0% { transform: translateX(-120%); }
  55% { transform: translateX(205%); }
  100% { transform: translateX(205%); }
}

@keyframes lotLoaderPulse {
  0%, 100% { transform: translateY(0); opacity: .92; }
  50% { transform: translateY(-3px); opacity: 1; }
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
  opacity: 0.22;
}
body[data-theme="light"]::before {
  background-image: linear-gradient(rgba(20,35,70,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(20,35,70,0.04) 1px, transparent 1px);
}

:where(h1, h2, .h1, .hero h1, .hero h2, .section-title, .page-title, .section-heading, .display-title) {
  font-family: var(--font-display);
  font-weight: 700;
}

:where(main, section, article, .content-wrap, .page-header) p:not(.studio-kicker):not(.studio-section-label):not(.lotsc-hero-eyebrow):not(.ba-eyebrow):not(.ba-field__label) {
  text-align: justify;
  text-align-last: start;
  text-justify: inter-word;
  text-wrap: pretty;
  -webkit-hyphens: auto;
  hyphens: auto;
  word-break: normal;
  overflow-wrap: break-word;
}

body.home-universe-page {
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.96) 0 5%, rgba(239,248,255,0.92) 6%, rgba(221,240,255,0.82) 18%, rgba(193,227,255,0.6) 32%, rgba(172,213,255,0.38) 46%, rgba(142,189,245,0.24) 58%, rgba(110,163,228,0.18) 68%, rgba(237,247,255,0.96) 100%),
    linear-gradient(180deg, #eff8ff 0%, #d9efff 42%, #edf8ff 100%);
  overflow: visible;
}

body.home-universe-page::before,
body.home-universe-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body.home-universe-page::before {
  z-index: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.98) 0 4.5%, rgba(255,255,255,0.92) 4.5% 6.5%, rgba(255,255,255,0.24) 6.5% 10%, rgba(255,255,255,0) 13%),
    radial-gradient(circle at center, rgba(95,170,255,0.18), rgba(95,170,255,0) 45%);
  filter: blur(1px);
}

body.home-universe-page::after {
  z-index: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.65) 0 2%, rgba(255,255,255,0) 7%),
    radial-gradient(circle at center, rgba(94, 189, 255, 0.16), rgba(94, 189, 255, 0) 36%);
  mix-blend-mode: screen;
}

body.home-universe-page .tri-travellers-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

body.home-universe-page .tri-hole {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(12vw, 148px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,1) 0 36%, rgba(255,255,255,0.96) 36% 52%, rgba(206,234,255,0.38) 60%, rgba(206,234,255,0) 100%);
  box-shadow: 0 0 24px rgba(255,255,255,0.95), 0 0 64px rgba(174,223,255,0.65), 0 0 130px rgba(82,163,255,0.28);
}

body.home-universe-page .tri-node {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-left: var(--tri-size) solid transparent;
  border-right: var(--tri-size) solid transparent;
  border-bottom: calc(var(--tri-size) * 1.78) solid var(--tri-color);
  opacity: var(--tri-opacity, 0.72);
  transform-origin: center center;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.26));
  will-change: transform, opacity;
}

body.home-universe-page .tri-node::after {
  content: "";
  position: absolute;
  left: calc(var(--tri-size) * -0.72);
  top: calc(var(--tri-size) * 0.22);
  width: calc(var(--tri-size) * 1.44);
  height: calc(var(--tri-size) * 0.36);
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.5), rgba(255,255,255,0));
  transform: rotate(-60deg);
  opacity: 0.45;
}

body.home-universe-page .site-header,
body.home-universe-page .site-footer {
  position: relative;
  z-index: 2;
}

body.home-universe-page #main-content {
  position: relative;
  z-index: 1;
}

body.home-universe-page .site-header {
  margin-top: 0;
}

body.home-universe-page #main-content {
  margin-top: 0;
}

@media (max-width: 900px) {
  body.home-universe-page .tri-hole {
    width: min(24vw, 120px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-universe-page .tri-node {
    opacity: 0.28;
  }

  .lot-preloader,
  .lot-preloader__logo,
  .lot-preloader__bar span {
    animation: none !important;
    transition: none !important;
  }
}
a { color: inherit; }
img { max-width: 100%; display: block; }
img,
svg,
video,
canvas,
iframe {
  max-inline-size: 100%;
}
:where(main, section, article, aside, header, footer, div, figure, figcaption, form, fieldset, .grid, .content-wrap, .hero, .page-header, .content-card, .cta-panel, .inner-visual-hero, .inner-visual-media, .visual-card, .contact-layout, .process-intro-grid, .process-panel, .process-feature, .process-cta) {
  min-width: 0;
  max-width: 100%;
}

:where(ul, ol) {
  padding-left: 1.25rem;
}
:where(table) {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
:where(.site-header, .site-footer, #main-content, .content-wrap, .hero, .page-header, .inner-visual-hero, .inner-visual-media, .visual-card, .content-card, .cta-panel) {
  overflow-x: clip;
}
button { font: inherit; }

@media (max-width: 820px) {
  :where(.inner-floating-shape, .shape-a, .shape-b, .shape-c, .tri-node, .tri-hole, [class*="bubble"], [class*="atom"], [class*="orbit"]) {
    max-width: min(38vw, 220px) !important;
    max-height: min(38vw, 220px) !important;
  }

  :where(.inner-visual-hero, .inner-visual-media, .process-intro-grid, .process-cta, .contact-layout) {
    grid-template-columns: 1fr !important;
  }

  :where(.inner-visual-media, .process-feature-media, .sg-hero-media, .lab-hero-media, .lab-service-media, .lab-collage figure, .lr-visual, .cp-main-visual, .cp-feature-doc, .lot-process__center, .lot-process__visuals) {
    min-height: auto !important;
    height: auto !important;
  }

  :where(.inner-visual-media img, .process-feature-media img, .sg-hero-media img, .lab-hero-media img, .lab-service-media img, .lab-collage img, .lr-visual img, .cp-main-visual img, .cp-feature-doc img, .lot-process__visuals img) {
    width: 100% !important;
    height: auto !important;
    max-height: min(72vh, 560px) !important;
    object-fit: contain !important;
    transform: none !important;
  }
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  transform: translateY(-180%);
  z-index: 1000;
}
.skip-link:focus {
  transform: translateY(0);
  padding: .75rem 1rem;
  background: #fff;
  color: #000;
  border-radius: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  isolation: isolate;
  backdrop-filter: blur(16px);
  background: rgba(7, 11, 22, 0.58);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
body[data-theme="light"] .site-header {
  background: rgba(7, 11, 22, 0.92);
  border-bottom-color: rgba(255,255,255,0.08);
}
.site-header.is-scrolled {
  background: rgba(6, 11, 23, 0.84);
  border-bottom-color: rgba(255,255,255,0.12);
  box-shadow: 0 14px 40px rgba(0,0,0,0.16);
}
body[data-theme="light"] .site-header.is-scrolled {
  background: rgba(6, 11, 23, 0.96);
}
.topbar, .mainbar, .hero, .content-wrap, .site-footer-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .8rem 0 .4rem;
  color: var(--muted);
  font-size: .92rem;
}
.secondary-nav, .footer-nav, .footer-legal {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.secondary-nav a, .footer-nav a, .footer-legal a {
  text-decoration: none;
  color: var(--muted);
  position: relative;
}
.secondary-nav a::after, .footer-nav a::after, .footer-legal a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.secondary-nav a:hover::after, .footer-nav a:hover::after, .footer-legal a:hover::after { transform: scaleX(1); }
.secondary-nav a:hover, .footer-nav a:hover, .footer-legal a:hover { color: var(--text); }

.mainbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0 1rem;
  flex-wrap: nowrap;
}
.brand {
  text-decoration: none;
  position: relative;
  flex: 0 0 auto;
}
.brand strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand span {
  display: block;
  color: var(--muted);
  font-size: .84rem;
  white-space: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  flex: 0 0 auto;
  margin-right: .85rem;
}
.brand-logo {
  display: block;
  width: clamp(78px, 8vw, 108px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.16));
}
body[data-theme="light"] .brand-logo {
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.10));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-left: .75rem;
  flex: 0 0 auto;
}
.icon-button,
.menu-toggle {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 999px;
  min-height: 44px;
  min-width: 44px;
  padding: .75rem .95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.icon-button:hover,
.menu-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.08);
  border-color: var(--line-strong);
}
.theme-toggle-button {
  gap: .6rem;
}
.theme-toggle-button[disabled],
.theme-toggle-button[aria-disabled="true"] {
  cursor: default;
  opacity: .78;
}
.theme-toggle-button[disabled]:hover,
.theme-toggle-button[aria-disabled="true"]:hover {
  transform: none;
  background: rgba(255,255,255,0.04);
  border-color: var(--line);
}

.theme-toggle-icon {
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 18px;
}

.theme-toggle-icon svg {
  position: absolute;
  width: 18px;
  height: 18px;
  transition: opacity .25s ease, transform .25s ease;
}

.theme-toggle-icon .icon-sun {
  opacity: 0;
  transform: scale(.72) rotate(-28deg);
}

.theme-toggle-icon .icon-moon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

body[data-theme="light"] .theme-toggle-icon .icon-sun {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

body[data-theme="light"] .theme-toggle-icon .icon-moon {
  opacity: 0;
  transform: scale(.72) rotate(28deg);
}

.theme-toggle-label {
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.menu-toggle {
  display: none;
  gap: .55rem;
}
.menu-toggle .menu-toggle-bars {
  display: inline-grid;
  gap: 4px;
}
.menu-toggle .menu-toggle-bars span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}

.primary-nav {
  display: flex;
  gap: .32rem;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  min-width: 0;
}
.primary-nav > a,
.primary-nav details > summary {
  text-decoration: none;
  list-style: none;
  cursor: pointer;
  padding: .72rem .72rem;
  border-radius: 999px;
  color: var(--text);
  transition: background .25s ease, transform .25s ease, color .25s ease, border-color .25s ease;
  border: 1px solid transparent;
  font-size: .91rem;
  white-space: nowrap;
}
.primary-nav > a:hover,
.primary-nav details > summary:hover,
.primary-nav a.is-active,
.primary-nav details.is-active > summary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.08);
}
.primary-nav > a:hover,
.primary-nav details > summary:hover {
  transform: translateY(-1px);
}
body[data-theme="light"] .primary-nav > a:hover,
body[data-theme="light"] .primary-nav details > summary:hover,
body[data-theme="light"] .primary-nav a.is-active,
body[data-theme="light"] .primary-nav details.is-active > summary {
  background: rgba(22, 121, 216, 0.08);
  border-color: rgba(22, 121, 216, 0.12);
}

details.dropdown {
  position: relative;
  z-index: 20;
}

details.dropdown[open] {
  z-index: 340;
}
details.dropdown > summary {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
details.dropdown > summary::after {
  content: "▾";
  font-size: .78rem;
  transition: transform .25s ease;
}
details.dropdown[open] > summary::after { transform: rotate(180deg); }
details.dropdown > summary::-webkit-details-marker { display: none; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + .75rem);
  left: 0;
  z-index: 360;
  min-width: 300px;
  max-width: 380px;
  padding: .8rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-strong);
  transform-origin: top left;
  animation: dropdownIn .18s ease;
}
@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-8px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.dropdown-panel a {
  display: block;
  text-decoration: none;
  padding: .8rem .9rem;
  border-radius: 14px;
  color: var(--text);
  transition: background .22s ease, transform .22s ease;
}
.dropdown-panel a:hover {
  background: rgba(255,255,255,0.06);
  transform: translateX(4px);
}
body[data-theme="light"] .dropdown-panel a:hover {
  background: rgba(22,121,216,0.08);
}
.dropdown-panel .nested-dropdown {
  position: relative;
  margin-top: .35rem;
}
.dropdown-panel .nested-dropdown > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .8rem .9rem;
  border-radius: 14px;
  color: var(--text);
  font-weight: 600;
  background: linear-gradient(135deg, rgba(201,168,76,0.16), rgba(228,198,115,0.16));
  border: 1px solid rgba(201,168,76,0.28);
}
body[data-theme="light"] .dropdown-panel .nested-dropdown > summary {
  background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(139,92,246,0.14));
  border-color: rgba(79,70,229,0.18);
}
.dropdown-panel .nested-dropdown > summary::-webkit-details-marker { display: none; }
.dropdown-panel .nested-dropdown > summary::after {
  content: "▸";
  font-size: .95rem;
  line-height: 1;
  opacity: .9;
  transition: transform .2s ease;
}
.dropdown-panel .nested-dropdown[open] > summary::after {
  transform: translateX(2px);
}
.dropdown-panel .nested-dropdown > summary:hover {
  background: linear-gradient(135deg, rgba(201,168,76,0.24), rgba(228,198,115,0.24));
}
body[data-theme="light"] .dropdown-panel .nested-dropdown > summary:hover {
  background: linear-gradient(135deg, rgba(59,130,246,0.18), rgba(139,92,246,0.2));
}
.dropdown-panel .nested-dropdown .nested-links {
  position: absolute;
  top: -6px;
  left: calc(100% + .65rem);
  z-index: 380;
  min-width: 300px;
  display: none;
  gap: .2rem;
  padding: .55rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(12,20,37,0.96), rgba(23,32,56,0.96));
  border: 1px solid rgba(95,138,255,0.24);
  box-shadow: 0 20px 50px rgba(4, 10, 22, 0.45);
}
body[data-theme="light"] .dropdown-panel .nested-dropdown .nested-links {
  background: linear-gradient(180deg, rgba(245,248,255,0.98), rgba(232,238,255,0.98));
  border-color: rgba(79,70,229,0.18);
  box-shadow: 0 20px 45px rgba(64, 84, 126, 0.16);
}
.dropdown-panel .nested-dropdown[open] .nested-links {
  display: grid;
}
.dropdown-panel .nested-dropdown .nested-links a {
  padding: .78rem .9rem;
  font-size: .94rem;
  border-radius: 12px;
}
.dropdown-panel .nested-dropdown .nested-links a:hover {
  background: rgba(113, 170, 255, 0.14);
}
body[data-theme="light"] .dropdown-panel .nested-dropdown .nested-links a:hover {
  background: rgba(79,70,229,0.1);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr .92fr;
  gap: 1.5rem;
  padding: 4.2rem 0 2rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-glow);
  filter: blur(10px);
  z-index: -1;
}
.hero-copy, .hero-panel, .page-header, .content-card, .cta-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}
.hero-copy {
  position: relative;
  overflow: hidden;
  padding: 2.7rem;
}
.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 195, 255, 0.18), transparent 62%);
  pointer-events: none;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem .82rem;
  border-radius: 999px;
  background: rgba(89, 195, 255, 0.12);
  color: #bfe4ff;
  margin-bottom: 1rem;
  font-size: .9rem;
  border: 1px solid rgba(89, 195, 255, 0.18);
}
body[data-theme="light"] .eyebrow {
  color: var(--accent-strong);
  background: rgba(22,121,216,0.08);
  border-color: rgba(22,121,216,0.12);
}
h1, h2, h3 {
  line-height: 1.12;
  margin: 0 0 1rem;
  overflow-wrap: anywhere;
}
h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.04em;
}
h2 { font-size: clamp(1.28rem, 2vw, 1.85rem); }
h3 { font-size: 1.1rem; }
p.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 62ch;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.5rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .96rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0,0,0,0.18);
}
.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  color: #06111f;
}
.button.secondary {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
}
body[data-theme="light"] .button.secondary {
  border-color: rgba(22,121,216,0.18);
  background: rgba(22,121,216,0.04);
}
.hero-panel {
  position: relative;
  padding: 1.7rem;
}
.hero-panel ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.hero-panel li + li { margin-top: .55rem; }

.content-wrap {
  padding: 1rem 0 4rem;
}
.page-header {
  padding: 2rem;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(89,195,255,0.08), transparent 45%, rgba(126,231,135,0.06));
  pointer-events: none;
}
.breadcrumbs {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: .95rem;
}
.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--text); }

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.content-card,
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 1.45rem;
  min-width: 0;
}
.content-card::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.03), transparent 42%);
  pointer-events: none;
}
.content-card p,
.cta-panel p,
.notice,
.footer-block p,
.footer-block address {
  color: var(--muted);
}
.content-card:hover,
.cta-panel:hover,
.hero-panel:hover {
  border-color: var(--line-strong);
}
.link-list {
  display: grid;
  gap: .65rem;
  margin: 1rem 0 0;
}
.link-list a {
  text-decoration: none;
  padding: .9rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  transition: background .22s ease, transform .22s ease, border-color .22s ease;
}
.link-list a:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(4px);
  border-color: rgba(255,255,255,0.1);
}
body[data-theme="light"] .link-list a:hover {
  background: rgba(22,121,216,0.08);
  border-color: rgba(22,121,216,0.14);
}
.notice {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px dashed rgba(126,231,135,0.35);
  background: rgba(126,231,135,0.08);
}

.inner-enhanced-page {
  --inner-bg-shift-x: 0px;
  --inner-bg-shift-y: 0px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 15%, rgba(241,250,255,0.92) 28%, rgba(220,240,255,0.96) 62%, rgba(206,232,252,0.98) 100%),
    linear-gradient(180deg, #e8f7ff 0%, #d9efff 48%, #edf8ff 100%);
}

.inner-enhanced-page::before,
.inner-enhanced-page::after {
  content: "";
  position: fixed;
  inset: -8%;
  pointer-events: none;
  z-index: 0;
}

.inner-enhanced-page::before {
  background:
    radial-gradient(circle at 12% 20%, rgba(116, 205, 255, 0.22) 0 4.5rem, transparent 4.7rem),
    radial-gradient(circle at 24% 74%, rgba(117, 176, 255, 0.16) 0 7rem, transparent 7.2rem),
    radial-gradient(circle at 78% 18%, rgba(86, 214, 255, 0.18) 0 5.6rem, transparent 5.8rem),
    radial-gradient(circle at 90% 68%, rgba(146, 196, 255, 0.18) 0 9rem, transparent 9.3rem),
    radial-gradient(circle at 58% 86%, rgba(121, 228, 255, 0.14) 0 4rem, transparent 4.2rem);
  opacity: 0.9;
  transform: translate3d(calc(var(--inner-bg-shift-x) * -0.55), calc(var(--inner-bg-shift-y) * -0.7), 0);
  animation: inner-orb-drift 22s ease-in-out infinite alternate;
}

.inner-enhanced-page::after {
  background:
    radial-gradient(circle at 50% 44%, rgba(255,255,255,0.92) 0 10%, rgba(255,255,255,0.52) 18%, transparent 38%),
    radial-gradient(circle at 34% 32%, rgba(255,255,255,0.62) 0 6%, transparent 16%),
    radial-gradient(circle at 68% 56%, rgba(255,255,255,0.48) 0 7%, transparent 18%),
    radial-gradient(circle at 18% 54%, rgba(108, 197, 255, 0.12) 0 8%, transparent 18%),
    radial-gradient(circle at 82% 34%, rgba(135, 214, 255, 0.12) 0 7%, transparent 16%);
  filter: blur(18px);
  transform: translate3d(calc(var(--inner-bg-shift-x) * 0.35), calc(var(--inner-bg-shift-y) * 0.45), 0);
  animation: inner-mist-drift 16s ease-in-out infinite alternate;
}

.inner-enhanced-page .site-header {
  position: relative;
  z-index: 300;
}

.inner-enhanced-page .site-footer,
.inner-enhanced-page #main-content {
  position: relative;
  z-index: 1;
}

.inner-enhanced-page .content-wrap {
  padding-top: 1.35rem;
}

.inner-enhanced-page .page-header-compact {
  padding: 1rem 1.2rem 1.1rem;
  margin-top: -0.4rem;
  margin-bottom: 1.2rem;
  background: rgba(255,255,255,0.72);
  border-color: rgba(85, 176, 255, 0.18);
  box-shadow: 0 10px 30px rgba(31, 92, 166, 0.08);
}

.inner-enhanced-page .page-header-compact h1,
.inner-enhanced-page .page-header-compact .lead {
  display: none;
}

.inner-enhanced-page .breadcrumbs {
  margin: 0;
}

.inner-visual-hero {
  --inner-parallax-shift: 0px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.15fr);
  gap: 1.1rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

.inner-visual-copy,
.inner-visual-media {
  min-width: 0;
  border-radius: 30px;
  border: 1px solid rgba(84, 171, 255, 0.2);
  box-shadow: 0 26px 60px rgba(33, 100, 174, 0.14);
}

.inner-visual-copy {
  position: relative;
  overflow: hidden;
  padding: 2.35rem 2.1rem;
  background: linear-gradient(160deg, rgba(255,255,255,0.96), rgba(238,248,255,0.84));
}

.inner-visual-copy::before {
  content: "";
  position: absolute;
  inset: auto -10% -18% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.22), rgba(0,168,255,0) 64%);
  filter: blur(6px);
}

.inner-visual-copy h1 {
  font-size: clamp(2.35rem, 4.8vw, 4.6rem);
  margin-bottom: 0.9rem;
}

.inner-visual-copy .lead {
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  max-width: 42ch;
}

.inner-visual-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.56rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 142, 255, 0.08);
  color: #0f6fe5;
  border: 1px solid rgba(0, 142, 255, 0.16);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.48) inset, 0 0 18px rgba(0, 174, 255, 0.12);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.inner-visual-facts,
.inner-quick-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.inner-visual-facts {
  margin-top: 1.4rem;
}

.inner-visual-facts span,
.inner-quick-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(63, 157, 255, 0.18);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 8px 18px rgba(35, 109, 179, 0.08);
}

.inner-quick-pills {
  margin-top: 1.35rem;
}

.inner-quick-pill {
  color: var(--text);
  text-decoration: none;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.inner-quick-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 172, 255, 0.38);
  box-shadow: 0 0 0 1px rgba(0, 172, 255, 0.16) inset, 0 12px 22px rgba(19, 115, 187, 0.16);
}

.inner-visual-media {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  background: linear-gradient(135deg, rgba(227,243,255,0.8), rgba(255,255,255,0.4));
}

.inner-visual-media img {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  transform: translateY(var(--inner-parallax-shift)) scale(1.03);
  filter: saturate(1.05) contrast(1.02) brightness(1.02);
  transition: transform .28s ease-out;
}

.inner-visual-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.04), rgba(5, 42, 88, 0.32)),
    radial-gradient(circle at 74% 22%, rgba(255,255,255,0.5), rgba(255,255,255,0) 26%),
    linear-gradient(180deg, rgba(5, 26, 58, 0), rgba(4, 17, 40, 0.34));
}

.inner-floating-shape {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(168, 225, 255, 0.5);
  background: radial-gradient(circle, rgba(255,255,255,0.46), rgba(66, 176, 255, 0.08));
  box-shadow: 0 0 22px rgba(0, 189, 255, 0.24), inset 0 0 22px rgba(255,255,255,0.24);
  animation: neon-float 8s ease-in-out infinite;
}

.inner-floating-shape.shape-a {
  width: 84px;
  height: 84px;
  top: 12%;
  right: 10%;
}

.inner-floating-shape.shape-b {
  width: 138px;
  height: 138px;
  bottom: 12%;
  left: 8%;
  animation-duration: 10s;
  animation-direction: alternate-reverse;
}

.inner-floating-shape.shape-c {
  width: 16px;
  height: 16px;
  top: 22%;
  left: 16%;
  background: #8be7ff;
  box-shadow: 0 0 20px rgba(49, 212, 255, 0.95);
  animation-duration: 5.4s;
}

.inner-enhanced-page .grid {
  gap: 1.15rem;
}

.visual-card,
.inner-enhanced-page .cta-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(240,248,255,0.88));
  border-color: rgba(74, 158, 255, 0.18);
  box-shadow: 0 18px 38px rgba(31, 95, 167, 0.1);
}

.visual-card {
  padding-top: 0;
}

.card-media {
  position: relative;
  height: 148px;
  margin: -1.45rem -1.45rem 1.15rem;
  overflow: hidden;
  border-radius: 22px 22px 18px 18px;
  background:
    linear-gradient(135deg, rgba(6, 76, 186, 0.94), rgba(0, 191, 255, 0.82) 54%, rgba(255,255,255,0.78)),
    radial-gradient(circle at 22% 26%, rgba(255,255,255,0.36), rgba(255,255,255,0) 24%);
}

.card-media-grid,
.card-media-glow,
.card-media-orb {
  position: absolute;
}

.card-media-grid {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.16) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.52;
}

.card-media-glow {
  inset: auto auto -28px -18px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.58), rgba(255,255,255,0) 66%);
}

.card-media-orb {
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.46), rgba(82,194,255,0.08));
  box-shadow: 0 0 20px rgba(72, 199, 255, 0.28);
}

.card-media-orb.orb-a {
  width: 92px;
  height: 92px;
  right: 10%;
  top: 18%;
}

.card-media-orb.orb-b {
  width: 24px;
  height: 24px;
  right: 28%;
  top: 58%;
  box-shadow: 0 0 18px rgba(0, 245, 255, 0.95);
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 0.72rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(14, 124, 230, 0.08);
  color: #1174e8;
  border: 1px solid rgba(14, 124, 230, 0.12);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.visual-card:hover,
.inner-enhanced-page .cta-panel:hover,
.inner-visual-copy:hover,
.inner-visual-media:hover {
  border-color: rgba(0, 179, 255, 0.34);
  box-shadow: 0 0 0 1px rgba(0, 179, 255, 0.12) inset, 0 22px 44px rgba(24, 111, 190, 0.15), 0 0 28px rgba(54, 200, 255, 0.08);
}

.route-contact .grid,
.route-companies .grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}


.route-about .inner-visual-hero {
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
}
.route-about .inner-visual-copy {
  order: 2;
  margin-top: 2.2rem;
  border-radius: 34px 34px 24px 34px;
}
.route-about .inner-visual-media {
  order: 1;
  min-height: 540px;
  border-radius: 36px;
}
.route-about .visual-card:nth-child(odd) {
  transform: translateX(24px);
}
.route-about .visual-card:nth-child(even) {
  transform: translateX(-8px);
}

.route-services .inner-visual-copy {
  border-radius: 30px 24px 24px 30px;
}
.route-services .inner-visual-media {
  min-height: 470px;
}
.route-services .visual-card:nth-child(3n + 1) .card-media {
  height: 176px;
}
.route-services .visual-card:nth-child(3n + 2) .card-media {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(196,234,255,0.92) 42%, rgba(0,139,255,0.88)),
    radial-gradient(circle at 78% 26%, rgba(255,255,255,0.42), rgba(255,255,255,0) 28%);
}
.route-services .visual-card:nth-child(3n) .card-media {
  background:
    linear-gradient(135deg, rgba(8,103,214,0.92), rgba(0,205,255,0.76) 50%, rgba(248,252,255,0.86));
}

.route-academy .inner-visual-hero {
  grid-template-columns: 1fr;
  padding-top: 1.2rem;
}
.route-academy .inner-visual-media {
  min-height: 430px;
  order: 1;
  border-radius: 36px;
}
.route-academy .inner-visual-copy {
  order: 2;
  width: min(760px, calc(100% - 4rem));
  margin: -5.8rem auto 0;
  position: relative;
  z-index: 2;
  border-radius: 32px;
}
.route-academy .grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.route-academy .visual-card:nth-child(odd) {
  margin-top: 0.8rem;
}

.route-companies .inner-visual-hero {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
}
.route-companies .inner-visual-media {
  order: 1;
  min-height: 500px;
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}
.route-companies .inner-visual-copy {
  order: 2;
  margin-left: -2.4rem;
  z-index: 2;
  align-self: center;
}
.route-companies .visual-card:nth-child(4n + 1),
.route-companies .visual-card:nth-child(4n + 4) {
  background: linear-gradient(180deg, rgba(245,250,255,0.98), rgba(229,243,255,0.92));
}
.route-companies .visual-card:nth-child(4n + 2),
.route-companies .visual-card:nth-child(4n + 3) {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(238,249,255,0.86));
}

.route-contact .inner-visual-hero {
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
}
.route-contact .inner-visual-copy {
  border-radius: 28px;
}
.route-contact .inner-visual-media {
  border-radius: 28px 36px 28px 36px;
}
.route-contact .visual-card {
  border-radius: 26px;
}
.route-contact .visual-card .card-media {
  height: 84px;
  border-radius: 26px 26px 18px 18px;
}

.route-transition .inner-visual-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
}
.route-transition .inner-visual-copy {
  transform: rotate(-1.2deg);
}
.route-transition .inner-visual-media {
  transform: rotate(1.8deg) translateY(12px);
}
.route-transition .visual-card:nth-child(odd) {
  margin-left: 1.4rem;
}
.route-transition .visual-card:nth-child(even) {
  margin-right: 1.4rem;
}

.route-communications .inner-visual-hero {
  grid-template-columns: 1fr;
}
.route-communications .inner-visual-media {
  order: 1;
  min-height: 340px;
  border-radius: 38px 38px 24px 24px;
}
.route-communications .inner-visual-copy {
  order: 2;
  margin-top: -3.6rem;
  margin-left: 4rem;
  width: min(720px, calc(100% - 4rem));
  position: relative;
  z-index: 2;
}
.route-communications .visual-card:nth-child(3n + 2) {
  transform: translateY(20px);
}

.route-processes .inner-visual-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
}
.route-processes .grid {
  gap: 1.5rem;
}
.route-processes .visual-card {
  position: relative;
}
.route-processes .visual-card:nth-child(odd) {
  margin-top: 1rem;
}
.route-processes .visual-card::after {
  content: '';
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  top: calc(100% + 0.35rem);
  height: 2px;
  background: linear-gradient(90deg, rgba(0,162,255,0.45), rgba(0,162,255,0));
}
.route-processes .visual-card:last-child::after {
  display: none;
}

.route-legal .inner-visual-hero {
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
}
.route-legal .inner-visual-media {
  order: 1;
  min-height: 560px;
  clip-path: inset(0 round 40px);
}
.route-legal .inner-visual-copy {
  order: 2;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 22px;
}
.route-legal .grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.route-legal .visual-card {
  min-height: 100%;
}

.route-about .inner-visual-copy::before,
.route-academy .inner-visual-copy::before,
.route-companies .inner-visual-copy::before,
.route-contact .inner-visual-copy::before,
.route-transition .inner-visual-copy::before,
.route-communications .inner-visual-copy::before,
.route-processes .inner-visual-copy::before,
.route-legal .inner-visual-copy::before {
  opacity: 0.9;
}

@keyframes neon-float {
  from { transform: translate3d(0, -10px, 0); }
  to { transform: translate3d(0, 16px, 0); }
}

@keyframes inner-orb-drift {
  from {
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    opacity: 0.82;
  }
  to {
    background-position: 2% -3%, -3% 2%, 3% 1%, -2% -2%, 1% 3%;
    opacity: 1;
  }
}

@keyframes inner-mist-drift {
  from {
    background-position: 50% 44%, 34% 32%, 68% 56%, 18% 54%, 82% 34%;
    opacity: 0.78;
  }
  to {
    background-position: 48% 42%, 36% 35%, 66% 53%, 20% 56%, 80% 31%;
    opacity: 1;
  }
}

@keyframes inner-grid-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(88px, 0, 0); }
}

@keyframes inner-glow-float {
  from { transform: translate3d(-18px, -10px, 0) scale(1); }
  to { transform: translate3d(20px, 14px, 0) scale(1.06); }
}

@media (max-width: 1100px) {
  .inner-visual-hero,
  .route-about .inner-visual-hero,
  .route-services .inner-visual-hero,
  .route-academy .inner-visual-hero,
  .route-companies .inner-visual-hero,
  .route-contact .inner-visual-hero,
  .route-transition .inner-visual-hero,
  .route-communications .inner-visual-hero,
  .route-processes .inner-visual-hero,
  .route-legal .inner-visual-hero {
    grid-template-columns: 1fr;
  }

  .inner-visual-media,
  .route-about .inner-visual-media,
  .route-services .inner-visual-media,
  .route-academy .inner-visual-media,
  .route-companies .inner-visual-media,
  .route-contact .inner-visual-media,
  .route-transition .inner-visual-media,
  .route-communications .inner-visual-media,
  .route-processes .inner-visual-media,
  .route-legal .inner-visual-media {
    min-height: 360px;
    transform: none;
    margin: 0;
    clip-path: none;
  }

  .route-academy .inner-visual-copy,
  .route-companies .inner-visual-copy,
  .route-communications .inner-visual-copy {
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 820px) {
  .route-contact .grid,
  .route-companies .grid,
  .route-academy .grid,
  .route-legal .grid {
    grid-template-columns: 1fr;
  }

  .inner-visual-copy {
    padding: 1.7rem 1.35rem;
    margin: 0 !important;
    transform: none !important;
  }

  .inner-visual-media {
    min-height: 300px;
  }

  .route-about .visual-card,
  .route-transition .visual-card,
  .route-communications .visual-card,
  .route-processes .visual-card {
    transform: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 560px) {
  .inner-visual-copy h1 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .inner-visual-facts,
  .inner-quick-pills {
    gap: 0.55rem;
  }

  .inner-visual-facts span,
  .inner-quick-pill {
    width: 100%;
    justify-content: center;
  }

  .card-media {
    height: 124px;
  }
}

.site-footer {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(4,8,18,0.72);
}
body[data-theme="light"] .site-footer {
  background: rgba(4,8,18,0.94);
  border-top-color: rgba(255,255,255,0.08);
}
.site-footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  padding: 2.4rem 0 3rem;
}
.footer-block h2, .footer-block h3 {
  font-size: 1rem;
  margin-bottom: .75rem;
}
.footer-block address { font-style: normal; }

.hero-overlay-minimal {
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-overlay-minimal h1,
.hero-overlay-minimal .lead {
  display: none;
}

.container-fluid.color-fondo-pie {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #0b0f19;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0;
}

body[data-theme="light"] .container-fluid.color-fondo-pie {
  background: #0b0f19;
  border-top-color: rgba(255,255,255,0.08);
}

.color-fondo-pie .margen-arriba {
  width: min(1380px, calc(100% - 1.2rem));
  margin: 0 auto;
  padding-top: 2.5rem;
}

.color-fondo-pie .margen-abajo {
  padding-bottom: 2rem;
}

.logo-fot {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.logo-fot img {
  width: min(240px, 78vw);
  height: auto;
  display: block;
}

.color-fondo-pie .row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  margin: 0;
}

.color-fondo-pie .col-xs-12,
.color-fondo-pie .col-sm-4,
.color-fondo-pie .col-md-4,
.color-fondo-pie .col-lg-4 {
  min-width: 0;
}

.linea-pie,
.listas-li {
  min-width: 0;
}

.color-fondo-pie .row.margen-abajo {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.titulos-pie {
  margin: 0 0 1.1rem;
  color: #d4a743;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.color-fondo-pie h4 {
  margin: 0 0 .55rem;
  font-size: 1rem;
  color: var(--text);
}

.color-fondo-pie p,
.color-fondo-pie a,
.color-fondo-pie .text-center {
  color: var(--muted);
  text-decoration: none;
  overflow-wrap: anywhere;
}

body[data-theme="light"] .color-fondo-pie p,
body[data-theme="light"] .color-fondo-pie a,
body[data-theme="light"] .color-fondo-pie .text-center {
  color: rgba(255,255,255,0.78);
}

body[data-theme="light"] .color-fondo-pie h4,
body[data-theme="light"] .color-fondo-pie .titulos-pie {
  color: #fff;
}

.text-pie {
  margin-bottom: 1rem;
}

.text-pie p {
  margin: 0;
  line-height: 1.65;
}

.color-fondo-pie a:hover p,
.color-fondo-pie a:hover {
  color: #d4a743;
}

.footer-badge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  align-items: start;
  justify-items: center;
}

.footer-badge-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-badge-grid-iso {
  margin-top: 1rem;
}

.footer-badge-grid-acred {
  margin-top: 1rem;
}

.img-certi {
  width: 100%;
  max-width: 68px;
  height: auto;
  margin: 0 auto;
  vertical-align: middle;
}

.img-acred {
  width: 100%;
  max-width: 118px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.redes {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  align-items: center;
}

.redes a {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(212,167,67,0.32);
  background: rgba(212,167,67,0.08);
  color: #d4a743;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.redes a:hover {
  background: rgba(212,167,67,0.16);
  color: #f3ce76;
  transform: translateY(-1px);
}

.redes span {
  width: 20px;
  height: 20px;
  display: block;
  background-color: currentColor;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.icon-facebook {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.5 22v-8h2.7l.4-3h-3.1V9.1c0-.9.3-1.5 1.6-1.5H16.8V5c-.3 0-1.4-.1-2.7-.1-2.7 0-4.6 1.6-4.6 4.7V11H6.8v3h2.7v8h4z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.5 22v-8h2.7l.4-3h-3.1V9.1c0-.9.3-1.5 1.6-1.5H16.8V5c-.3 0-1.4-.1-2.7-.1-2.7 0-4.6 1.6-4.6 4.7V11H6.8v3h2.7v8h4z'/%3E%3C/svg%3E");
}
.icon-youtube-play {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M23 12s0-3.5-.4-5.2c-.2-.9-.9-1.7-1.8-1.9C19.1 4.5 12 4.5 12 4.5s-7.1 0-8.8.4c-.9.2-1.6 1-1.8 1.9C1 8.5 1 12 1 12s0 3.5.4 5.2c.2.9.9 1.7 1.8 1.9 1.7.4 8.8.4 8.8.4s7.1 0 8.8-.4c.9-.2 1.6-1 1.8-1.9.4-1.7.4-5.2.4-5.2zm-14 3.8V8.2l6.3 3.8-6.3 3.8z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M23 12s0-3.5-.4-5.2c-.2-.9-.9-1.7-1.8-1.9C19.1 4.5 12 4.5 12 4.5s-7.1 0-8.8.4c-.9.2-1.6 1-1.8 1.9C1 8.5 1 12 1 12s0 3.5.4 5.2c.2.9.9 1.7 1.8 1.9 1.7.4 8.8.4 8.8.4s7.1 0 8.8-.4c.9-.2 1.6-1 1.8-1.9.4-1.7.4-5.2.4-5.2zm-14 3.8V8.2l6.3 3.8-6.3 3.8z'/%3E%3C/svg%3E");
}
.icon-twitter {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M18.9 2H22l-6.8 7.8L23 22h-6.1l-4.8-6.3L6.6 22H3.5l7.3-8.4L1 2h6.2l4.3 5.7L18.9 2zm-1.1 18h1.7L6.3 3.9H4.5L17.8 20z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M18.9 2H22l-6.8 7.8L23 22h-6.1l-4.8-6.3L6.6 22H3.5l7.3-8.4L1 2h6.2l4.3 5.7L18.9 2zm-1.1 18h1.7L6.3 3.9H4.5L17.8 20z'/%3E%3C/svg%3E");
}
.icon-linkedin {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.94 8.5H3.56V20h3.38V8.5zM5.25 3A1.96 1.96 0 1 0 5.3 7a1.96 1.96 0 0 0-.05-4zM20.44 20h-3.37v-5.58c0-1.33-.03-3.03-1.85-3.03-1.86 0-2.15 1.45-2.15 2.94V20H9.69V8.5h3.24v1.57h.05c.45-.86 1.56-1.77 3.21-1.77 3.43 0 4.06 2.26 4.06 5.19V20z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.94 8.5H3.56V20h3.38V8.5zM5.25 3A1.96 1.96 0 1 0 5.3 7a1.96 1.96 0 0 0-.05-4zM20.44 20h-3.37v-5.58c0-1.33-.03-3.03-1.85-3.03-1.86 0-2.15 1.45-2.15 2.94V20H9.69V8.5h3.24v1.57h.05c.45-.86 1.56-1.77 3.21-1.77 3.43 0 4.06 2.26 4.06 5.19V20z'/%3E%3C/svg%3E");
}
.icon-instagram {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm0 2.2A2.8 2.8 0 0 0 4.2 7v10A2.8 2.8 0 0 0 7 19.8h10a2.8 2.8 0 0 0 2.8-2.8V7A2.8 2.8 0 0 0 17 4.2H7zm10.3 1.7a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2zM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10zm0 2.2a2.8 2.8 0 1 0 0 5.6 2.8 2.8 0 0 0 0-5.6z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm0 2.2A2.8 2.8 0 0 0 4.2 7v10A2.8 2.8 0 0 0 7 19.8h10a2.8 2.8 0 0 0 2.8-2.8V7A2.8 2.8 0 0 0 17 4.2H7zm10.3 1.7a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2zM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10zm0 2.2a2.8 2.8 0 1 0 0 5.6 2.8 2.8 0 0 0 0-5.6z'/%3E%3C/svg%3E");
}

.hr-pie {
  border: 0;
  border-top: 1px solid rgba(212,167,67,0.22);
  margin: 2rem 0 1rem;
}

.text-center {
  text-align: center;
}

.texto-left {
  text-align: left;
}

body[data-theme="light"] .redes a {
  color: #9f7b22;
  border-color: rgba(159,123,34,0.24);
  background: rgba(159,123,34,0.07);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.parallax-layer {
  will-change: transform;
}
.tilt-card {
  transform-style: preserve-3d;
  transition: transform .18s ease, border-color .25s ease, box-shadow .25s ease;
}
.tilt-card:hover {
  box-shadow: var(--shadow-strong);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 821px) {
  .mainbar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
  }
  .primary-nav {
    overflow: visible;
  }
}

@media (max-width: 980px) {
  .hero,
  .grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer-inner { grid-template-columns: 1fr; }
  .mainbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .header-actions {
    position: absolute;
    right: 1rem;
    top: 3.65rem;
  }
  .primary-nav { justify-content: flex-start; }
}

@media (max-width: 820px) {
  .menu-toggle { display: inline-flex; }

  .brand {
    margin-right: .45rem;
  }

  .brand-logo {
    width: clamp(76px, 18vw, 96px);
  }
  .mainbar {
    position: relative;
    padding-bottom: .95rem;
  }
  .primary-nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: .65rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height .35s ease, opacity .25s ease;
  }
  .primary-nav.is-open {
    max-height: 1500px;
    opacity: 1;
    pointer-events: auto;
    padding-top: .85rem;
  }
  .primary-nav > a,
  .primary-nav details > summary,
  .button {
    width: 100%;
  }
  .dropdown-panel {
    position: static;
    margin-top: .65rem;
    min-width: 0;
    max-width: 100%;
  }
  .dropdown-panel .nested-dropdown .nested-links {
    position: static;
    left: auto;
    top: auto;
    min-width: 0;
    margin-top: .45rem;
    display: none;
  }
  .dropdown-panel .nested-dropdown[open] .nested-links {
    display: grid;
  }
}


@media (max-width: 720px) {
  .hero,
  .grid {
    grid-template-columns: 1fr;
  }

  .home-hero-single {
    width: 100%;
    padding: 0;
  }

  .single-hero-figure {
    min-height: clamp(420px, calc(100vh - 74px), 760px);
  }

  .color-fondo-pie .row.margen-abajo {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .titulos-pie {
    font-size: .82rem;
  }

  .color-fondo-pie p,
  .color-fondo-pie a,
  .color-fondo-pie h4 {
    font-size: .84rem;
  }

  .footer-badge-grid {
    gap: .55rem;
  }

  .img-certi {
    max-width: 56px;
  }

  .img-acred {
    max-width: 84px;
  }
  .hero-copy,
  .hero-panel,
  .page-header,
  .content-card,
  .cta-panel {
    padding: 1.15rem;
  }
  .topbar { flex-direction: column; }
  .header-actions {
    position: static;
    margin-top: .5rem;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .topbar,
  .mainbar,
  .hero,
  .content-wrap,
  .site-footer-inner {
    width: min(var(--max), calc(100% - 1.15rem));
  }
  h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  p.lead { font-size: 1rem; }
}

@media (max-width: 420px) {
  .topbar,
  .mainbar,
  .hero,
  .content-wrap,
  .site-footer-inner {
    width: calc(100% - .9rem);
  }

  .home-hero-single {
    width: 100%;
  }

  .single-hero-figure {
    min-height: clamp(360px, calc(100vh - 70px), 620px);
  }
  .content-card,
  .cta-panel,
  .hero-panel,
  .hero-copy,
  .page-header {
    border-radius: 18px;
    padding: 1rem;
  }
  .actions {
    gap: .65rem;
  }
  .button,
  .primary-nav > a,
  .primary-nav details > summary,
  .icon-button,
  .menu-toggle {
    min-height: 42px;
    padding: .8rem .92rem;
  }

  .mainbar {
    gap: .7rem;
  }

  .header-actions {
    gap: .45rem;
  }

  .theme-toggle-label {
    display: none;
  }

}


body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor summary,
body.has-custom-cursor input,
body.has-custom-cursor textarea,
body.has-custom-cursor select {
  cursor: none !important;
}

.cursor,
.cursor-follower {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  top: 0;
  left: 0;
  opacity: 0;
  will-change: transform, opacity;
}

.cursor {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 16px rgba(39, 194, 255, 0.55);
  transition: opacity 0.2s ease;
  mix-blend-mode: difference;
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(39, 194, 255, 0.65);
  box-shadow: 0 0 24px rgba(39, 194, 255, 0.2);
  transition: opacity 0.22s ease, border-color 0.18s ease, background 0.18s ease;
  mix-blend-mode: screen;
}

body.cursor-active .cursor,
body.cursor-active .cursor-follower {
  opacity: 1;
}

body[data-theme="light"] .cursor {
  background: #031321;
  mix-blend-mode: normal;
}

body[data-theme="light"] .cursor-follower {
  border-color: rgba(0, 142, 255, 0.5);
  mix-blend-mode: normal;
}

.lang-toggle {
  min-width: 68px;
  height: 44px;
  padding: 0 .95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(39,194,255,0.1), rgba(255,255,255,0.03));
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

.lang-toggle:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(39,194,255,0.22), rgba(255,255,255,0.08));
  border-color: var(--accent);
}

.topbar {
  color: #d5e9ff;
}

.topbar strong,
.hero-copy .eyebrow,
.content-card h2,
.page-header h1,
.hero-copy h1,
.cta-panel h2,
.footer-block h2 {
  text-shadow: 0 0 18px rgba(39, 194, 255, 0.08);
}

.button.primary,
.actions .button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #02111c;
  box-shadow: 0 18px 32px rgba(0, 168, 255, 0.22);
}

.button.secondary,
.actions .button.secondary {
  border-color: var(--line-strong);
}

.hero-panel,
.content-card,
.cta-panel,
.dropdown-panel,
.site-footer {
  border-color: var(--line) !important;
}


.contact-page {
  display: grid;
  gap: 1.4rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.2rem;
}

.contact-form-card,
.contact-channel-card,
.contact-extra-card {
  min-width: 0;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form label span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--muted);
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

body[data-theme="light"] .contact-form input,
body[data-theme="light"] .contact-form select,
body[data-theme="light"] .contact-form textarea {
  background: rgba(8, 26, 51, 0.03);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(20, 140, 255, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form .full-width {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.form-note {
  margin: 0;
  color: var(--muted);
  max-width: 42ch;
  font-size: 0.92rem;
}

.contact-email-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.contact-email-list li {
  display: grid;
  gap: 0.18rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}

.contact-email-list strong {
  font-size: 0.98rem;
}

.contact-email-list a {
  color: var(--accent-warm);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-email-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-highlights span,
.chat-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
}

.chat-action-link {
  margin-top: 0.7rem;
}

.chat-page-results {
  margin: .65rem 0 0;
  padding-left: 1.05rem;
  display: grid;
  gap: .5rem;
}

.chat-page-results li {
  line-height: 1.35;
}

.chat-page-results .chat-action-link {
  margin-top: 0;
  padding: .42rem .68rem;
  justify-content: flex-start;
}

.chat-page-results small {
  display: block;
  margin-top: .18rem;
  color: rgba(255,255,255,.68);
  font-size: .78rem;
}

.chat-action-link:hover {
  border-color: var(--accent);
  background: rgba(39,194,255,0.14);
}

@media (max-width: 920px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: stretch;
  }

  .form-actions .button {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .lang-toggle {
    min-width: 60px;
    height: 42px;
    padding: 0 .8rem;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor,
  .cursor-follower {
    display: none !important;
  }
}

.home-hero {
  grid-template-columns: 1.02fr .98fr;
  gap: 1.15rem;
  align-items: stretch;
  padding: 3.4rem 0 1.25rem;
}

.home-hero-single {
  grid-template-columns: 1fr;
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero-copy-home {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.hero-copy-home h1 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 5.6vw, 6rem);
  letter-spacing: -0.06em;
}

.hero-copy-home .lead {
  max-width: 42ch;
  font-size: 1.05rem;
}

.hero-note {
  margin-top: 1.4rem;
  color: var(--muted);
  max-width: 46ch;
  font-size: .92rem;
}

.hero-visual-panel {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

body.home-universe-page .hero-visual-panel {
  background: none;
}

.hero-copy-home-single {
  gap: 1rem;
}

.single-hero-figure {
  position: relative;
  min-height: clamp(620px, calc(100vh - 88px), 1040px);
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.single-hero-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 22% 24%, rgba(20,140,255,0.24), transparent 18%),
    radial-gradient(circle at 78% 22%, rgba(0,238,255,0.16), transparent 16%),
    radial-gradient(circle at 52% 78%, rgba(255,255,255,0.08), transparent 24%);
  mix-blend-mode: screen;
}

.single-hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,5,11,0.12) 0%, rgba(3,8,18,0.18) 28%, rgba(1,3,8,0.7) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(10%) contrast(1.01) brightness(1.03);
  transform: scale(1.035);
  opacity: 0;
  transition: opacity .9s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

body[data-theme="light"] .hero-slide {
  filter: grayscale(28%) contrast(1.01) brightness(1.04);
}

.hero-overlay {
  position: absolute;
  inset: auto auto 0 0;
  z-index: 2;
  width: min(760px, 100%);
  padding: clamp(1.25rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.hero-overlay .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(191,228,255,0.28);
  backdrop-filter: blur(10px);
}

.hero-overlay h1 {
  margin: 0;
  max-width: 8ch;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .95;
  letter-spacing: -0.08em;
  text-shadow: 0 12px 40px rgba(0,0,0,0.34);
}

.hero-overlay .lead {
  margin: 0;
  max-width: 34ch;
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  text-shadow: 0 8px 24px rgba(0,0,0,0.34);
}

body[data-theme="light"] .hero-overlay .lead {
  color: rgba(255,255,255,0.92);
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  grid-template-rows: 1fr 1fr;
  min-height: 100%;
}

.visual-tile {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.visual-tile img,
.image-card img,
.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.02) brightness(0.9);
  transition: transform .5s ease, filter .35s ease;
}

body[data-theme="light"] .visual-tile img,
body[data-theme="light"] .image-card img,
body[data-theme="light"] .showcase-card img {
  filter: grayscale(100%) contrast(1.02) brightness(0.96);
}

.visual-tile::after,
.image-card::after,
.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.5));
  pointer-events: none;
}

body[data-theme="light"] .visual-tile::after,
body[data-theme="light"] .image-card::after,
body[data-theme="light"] .showcase-card::after {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.18));
}

.visual-tile:hover img,
.image-card:hover img,
.showcase-card:hover img {
  transform: scale(1.03);
  filter: grayscale(100%) contrast(1.04) brightness(1);
}

.visual-tile figcaption,
.image-card-copy,
.showcase-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.visual-tile figcaption {
  padding: 1rem 1rem 1.1rem;
  font-weight: 600;
}

.visual-tile-lg {
  grid-row: 1 / span 2;
}

.accent-tile {
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(circle at top right, rgba(20, 140, 255, 0.3), transparent 36%),
    linear-gradient(145deg, #111214, #050505 75%);
}

.accent-tile > div {
  padding: 1.2rem;
  position: relative;
  z-index: 1;
}

.tile-kicker,
.section-tag,
.card-label {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .32rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 140, 255, 0.25);
  background: rgba(20, 140, 255, 0.08);
  color: #bfe4ff;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

body[data-theme="light"] .tile-kicker,
body[data-theme="light"] .section-tag,
body[data-theme="light"] .card-label {
  color: var(--accent-strong);
}

.accent-tile strong {
  display: block;
  margin-top: .9rem;
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.accent-tile p {
  margin: .7rem 0 0;
  max-width: 22ch;
  color: #d7dce2;
}

.home-visual-layout {
  padding-top: 1.2rem;
}

.compact-intro {
  margin-bottom: 1.25rem;
}

.compact-intro h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.05em;
}

.compact-intro p {
  max-width: 54ch;
}

.image-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.image-card {
  position: relative;
  min-height: 360px;
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0b0b0c;
  box-shadow: var(--shadow-soft);
}

.image-card-wide {
  grid-column: span 8;
  min-height: 420px;
}

.image-card-copy {
  padding: 1.1rem 1.1rem 1.2rem;
}

.image-card-copy h3,
.showcase-copy h3 {
  margin-bottom: .45rem;
  font-size: clamp(1.25rem, 2vw, 2rem);
  letter-spacing: -0.04em;
}

.image-card-copy p,
.showcase-copy p {
  margin: 0;
  max-width: 30ch;
  color: #d7d7da;
}

body[data-theme="light"] .image-card-copy p,
body[data-theme="light"] .showcase-copy p {
  color: #ebebee;
}

.mono-card {
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    radial-gradient(circle at top right, rgba(20, 140, 255, 0.18), transparent 30%),
    #0b0b0c;
}

.mono-card::after {
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0));
}

.no-image-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.accent-text {
  border-color: rgba(0, 238, 255, 0.35);
  background: rgba(0, 238, 255, 0.08);
  color: #c9fbff;
}

.statement-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.4rem;
  align-items: end;
  margin: 1rem 0;
  padding: 1.35rem 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(20,140,255,0.05), rgba(255,255,255,0.01));
  box-shadow: var(--shadow-soft);
}

.statement-band h2 {
  margin: .55rem 0 0;
  max-width: 13ch;
  font-size: clamp(1.7rem, 2.6vw, 2.9rem);
  letter-spacing: -0.05em;
}

.statement-band p {
  max-width: 32ch;
  margin: 0;
  color: var(--muted);
}

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

.showcase-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #0b0b0c;
  box-shadow: var(--shadow-soft);
}

.showcase-copy {
  padding: 1rem 1rem 1.15rem;
}

.neon-edge {
  box-shadow: 0 0 0 1px rgba(20, 140, 255, 0.32), 0 0 30px rgba(20, 140, 255, 0.12), var(--shadow-soft);
}

.home-cta-panel {
  margin-top: 1rem;
}

.visual-link-list a {
  background: rgba(255,255,255,0.03);
}

@media (max-width: 1024px) {
  .home-hero,
  .statement-band,
  .home-hero-single {
    grid-template-columns: 1fr;
  }

  .hero-overlay {
    width: 100%;
  }

  .image-card,
  .image-card-wide {
    grid-column: span 6;
  }
}

@media (max-width: 820px) {
  .hero-visual-grid,
  .showcase-grid,
  .image-bento {
    grid-template-columns: 1fr;
  }

  .visual-tile,
  .visual-tile-lg,
  .image-card,
  .image-card-wide,
  .showcase-card {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }

  .hero-copy-home h1,
  .compact-intro h2,
  .statement-band h2 {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .color-fondo-pie .row.margen-abajo {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .7rem;
  }

  .footer-badge-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .42rem;
  }

  .img-certi {
    max-width: 46px;
  }

  .img-acred {
    max-width: 72px;
  }

  .hero-copy-home,
  .statement-band,
  .content-card,
  .cta-panel {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-overlay {
    padding: 1rem;
    gap: .8rem;
  }

  .hero-overlay h1 {
    max-width: 9ch;
    font-size: clamp(2.5rem, 13vw, 4.4rem);
  }

  .hero-overlay .lead {
    max-width: 24ch;
    font-size: .98rem;
  }

  .image-card-copy,
  .showcase-copy,
  .visual-tile figcaption,
  .accent-tile > div {
    padding: .9rem;
  }

  .visual-tile,
  .image-card,
  .showcase-card,
  .single-hero-figure {
    min-height: 240px;
  }
}

/* === Studio Size adaptation for LOT home === */
body.home-universe-page {
  --bg: #000000;
  --bg-soft: #000000;
  --surface: rgba(0, 0, 0, 0.92);
  --surface-strong: rgba(0, 0, 0, 0.98);
  --surface-2: #0b0b0b;
  --surface-3: #151515;
  --text: #ffffff;
  --muted: #8b8b8b;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.18);
  --accent: #ffffff;
  --accent-strong: #ffffff;
  --accent-2: #ffffff;
  --accent-warm: #ffffff;
  background: #000;
  color: #fff;
  overflow-x: clip;
}
body.home-universe-page::before,
body.home-universe-page::after,
body.home-universe-page .tri-travellers-bg { display: none !important; }
body.home-universe-page[data-theme="light"] { background: #000; color: #fff; }
body.home-universe-page .site-header,
body.home-universe-page[data-theme="light"] .site-header { position: fixed; top: 0; left: 0; right: 0; background: linear-gradient(180deg, rgba(16,22,34,0.94), rgba(7,9,14,0.88)); border-bottom: 1px solid rgba(119,159,255,0.18); backdrop-filter: blur(14px) saturate(1.15); box-shadow: 0 10px 34px rgba(5,8,16,0.34), inset 0 -1px 0 rgba(255,255,255,0.04); z-index: 300; }
body.home-universe-page .site-header.is-scrolled,
body.home-universe-page[data-theme="light"] .site-header.is-scrolled { background: linear-gradient(180deg, rgba(18,28,44,0.97), rgba(8,10,17,0.94)); border-bottom-color: rgba(128,170,255,0.22); box-shadow: 0 12px 38px rgba(4,7,14,0.42), inset 0 -1px 0 rgba(255,255,255,0.05); }
body.home-universe-page .mainbar { width: min(1340px, calc(100% - 100px)); padding: 16px 0 18px; align-items: center; }
body.home-universe-page .brand-logo { width: clamp(92px, 7vw, 118px); filter: brightness(0) invert(1); }
body.home-universe-page .primary-nav > a, body.home-universe-page .primary-nav details > summary, body.home-universe-page .lang-toggle, body.home-universe-page .icon-button, body.home-universe-page .menu-toggle, body.home-universe-page[data-theme="light"] .primary-nav > a, body.home-universe-page[data-theme="light"] .primary-nav details > summary, body.home-universe-page[data-theme="light"] .lang-toggle, body.home-universe-page[data-theme="light"] .icon-button, body.home-universe-page[data-theme="light"] .menu-toggle { color: #fff; background: transparent; border-color: transparent; box-shadow: none; }
body.home-universe-page .primary-nav > a, body.home-universe-page .primary-nav details > summary { padding: 6px 8px; font-size: 13px; font-weight: 500; letter-spacing: -0.01em; }
body.home-universe-page .primary-nav > a:hover, body.home-universe-page .primary-nav details > summary:hover, body.home-universe-page .primary-nav a.is-active, body.home-universe-page .primary-nav details.is-active > summary, body.home-universe-page[data-theme="light"] .primary-nav > a:hover, body.home-universe-page[data-theme="light"] .primary-nav details > summary:hover, body.home-universe-page[data-theme="light"] .primary-nav a.is-active, body.home-universe-page[data-theme="light"] .primary-nav details.is-active > summary { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.06); transform: none; }
body.home-universe-page .lang-toggle, body.home-universe-page .theme-toggle-button { min-height: 38px; min-width: 38px; padding: 10px 16px; border: 1px solid #1d1d1d; border-radius: 999px; }
body.home-universe-page .theme-toggle-button .theme-toggle-label { font-size: 13px; letter-spacing: -0.01em; }
body.home-universe-page #main-content { margin-top: 0; padding-top: 76px; }
body.home-universe-page .studio-home { width: min(1340px, calc(100% - 100px)); margin: 0 auto; padding: 42px 0 180px; }
body.home-universe-page .studio-kicker, body.home-universe-page .studio-section-label, body.home-universe-page .studio-note-label, body.home-universe-page .studio-note-meta { margin: 0; color: #8b8b8b; font-size: 14px; line-height: 1.2; letter-spacing: -0.02em; text-transform: uppercase; }
body.home-universe-page .studio-home-hero { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr); gap: 38px; align-items: start; margin-bottom: 126px; }
body.home-universe-page .studio-hero-copy { align-self: start; padding-top: 10px; }
body.home-universe-page .studio-hero-copy h1 { margin: 10px 0 22px; max-width: 10.5ch; font-size: clamp(60px, 7.5vw, 108px); line-height: 0.9; letter-spacing: -0.03em; font-weight: 600; }
body.home-universe-page .studio-lead { max-width: 46ch; margin: 0; color: #9a9a9a; font-size: 17px; line-height: 1.55; }
body.home-universe-page .studio-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
body.home-universe-page .studio-pill-button { position: relative; display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 12px 20px; border-radius: 999px; border: 2px solid #1d1d1d; color: #fff; text-decoration: none; overflow: hidden; font-size: 14px; font-weight: 500; letter-spacing: -0.01em; }
body.home-universe-page .studio-pill-button .fill { position: absolute; inset: 0; background: #1d1d1d; border-radius: inherit; transform: scale(0); transform-origin: center; transition: transform .35s cubic-bezier(.22,1,.36,1); }
body.home-universe-page .studio-pill-button .label { position: relative; z-index: 1; }
body.home-universe-page .studio-pill-button:hover .fill, body.home-universe-page .studio-pill-button:focus-visible .fill { transform: scale(1); }
body.home-universe-page .studio-pill-button.is-secondary { color: #bdbdbd; }
body.home-universe-page .studio-pill-button.is-small { min-height: 40px; padding: 10px 18px; }
body.home-universe-page .studio-hero-media { position: relative; margin: 0; min-height: 720px; overflow: hidden; background: #080808; }
body.home-universe-page .studio-slideshow, body.home-universe-page .studio-slideshow .hero-slide { position: absolute; inset: 0; }
body.home-universe-page .studio-slideshow .hero-slide { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .8s ease, transform 1.1s ease; transform: scale(1.02); }
body.home-universe-page .studio-slideshow .hero-slide.is-active { opacity: 1; transform: scale(1); }
body.home-universe-page .studio-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.5) 78%, rgba(0,0,0,0.76)); }
body.home-universe-page .studio-overlay-note { position: absolute; left: 28px; right: 28px; bottom: 26px; display: flex; justify-content: space-between; align-items: center; z-index: 1; }
body.home-universe-page .studio-home-reel { display: grid; grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr); gap: 28px; align-items: start; margin-bottom: 120px; }
body.home-universe-page .studio-home-reel h2, body.home-universe-page .studio-featured-work h2, body.home-universe-page .studio-cta-copy h2 { margin: 12px 0 0; max-width: 16ch; font-size: clamp(30px, 3vw, 40px); line-height: 0.98; letter-spacing: -0.02em; font-weight: 500; }
body.home-universe-page .studio-reel-panel { position: relative; display: block; aspect-ratio: 16 / 9; min-height: 420px; overflow: hidden; color: #fff; text-decoration: none; }
body.home-universe-page .studio-reel-panel img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,1,.36,1); }
body.home-universe-page .studio-reel-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.42) 72%, rgba(0,0,0,0.72)); }
body.home-universe-page .studio-reel-panel:hover img { transform: scale(1.04); }
body.home-universe-page .studio-reel-arrow { position: absolute; top: 24px; right: 24px; z-index: 1; width: 70px; height: 70px; display: grid; place-items: center; border-radius: 999px; background: rgba(255,255,255,0.08); backdrop-filter: blur(6px); font-size: 44px; line-height: 1; }
body.home-universe-page .studio-reel-copy { position: absolute; left: 24px; right: 24px; bottom: 20px; z-index: 1; display: grid; gap: 6px; }
body.home-universe-page .studio-reel-copy span { color: #b7b7b7; font-size: 14px; }
body.home-universe-page .studio-reel-copy strong { font-size: 28px; line-height: 1; font-weight: 500; letter-spacing: -0.02em; }
body.home-universe-page .studio-featured-work { margin-bottom: 140px; }
body.home-universe-page .studio-section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 28px; }
body.home-universe-page .studio-work-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
body.home-universe-page .studio-work-card { color: #fff; text-decoration: none; }
body.home-universe-page .studio-work-media { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: #0f0f0f; }
body.home-universe-page .studio-work-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.18)); transition: opacity .35s ease; }
body.home-universe-page .studio-work-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,1,.36,1), filter .35s ease; }
body.home-universe-page .studio-work-media.is-hovered img, body.home-universe-page .studio-work-card:hover .studio-work-media img, body.home-universe-page .studio-work-card:focus-visible .studio-work-media img { transform: scale(1.06); filter: saturate(1.05) contrast(1.02); }
body.home-universe-page .studio-work-text { padding-top: 16px; }
body.home-universe-page .studio-work-text h3 { margin: 0; font-size: 24px; line-height: 0.92; font-weight: 500; letter-spacing: -0.02em; }
body.home-universe-page .studio-work-text p { margin: 6px 0 0; color: #767676; font-size: 18px; line-height: 1.2; }
body.home-universe-page .studio-statement-block { width: 100%; margin: 0 0 140px; padding: 0 0 18px; }
body.home-universe-page .studio-statement-block p { margin: 0; max-width: 30ch; font-size: clamp(32px, 3.2vw, 52px); line-height: 1.03; letter-spacing: -0.03em; font-weight: 500; }
body.home-universe-page .studio-services-block { margin-bottom: 160px; }
body.home-universe-page .studio-services-intro { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: 18px; }
body.home-universe-page .studio-mini-link { color: #fff; text-decoration: none; font-size: 15px; }
body.home-universe-page .studio-services-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr); gap: 36px; align-items: start; }
body.home-universe-page .studio-services-list { display: grid; }
body.home-universe-page .studio-services-list a { position: relative; padding: 10px 0 14px; color: #fff; text-decoration: none; font-size: clamp(40px, 5.4vw, 80px); line-height: 0.92; letter-spacing: -0.04em; border-bottom: 1px solid rgba(255,255,255,0.08); transition: color .25s ease, transform .25s ease, opacity .25s ease; }
body.home-universe-page .studio-services-list a:hover,
body.home-universe-page .studio-services-list a.is-preview-active { color: #bdbdbd; transform: translateX(8px); }
body.home-universe-page .studio-services-list a.is-preview-active::after { content: ''; position: absolute; left: 0; bottom: -1px; width: min(180px, 22%); height: 1px; background: rgba(255,255,255,0.9); }
body.home-universe-page .studio-services-preview { position: sticky; top: 112px; display: grid; gap: 16px; }
body.home-universe-page .studio-services-preview-media { position: relative; overflow: hidden; min-height: 540px; border-radius: 28px; background: #0d0d0d; }
body.home-universe-page .studio-services-preview-image { display: block; width: 100%; height: 100%; min-height: 540px; object-fit: cover; transition: opacity .28s ease, transform .45s ease; }
body.home-universe-page .studio-services-preview.is-updating .studio-services-preview-image { opacity: 0.78; transform: scale(1.02); }
body.home-universe-page .studio-services-preview-copy { display: grid; gap: 10px; }
body.home-universe-page .studio-services-preview-kicker { margin: 0; color: #8b8b8b; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }
body.home-universe-page .studio-services-preview-title { margin: 0; font-size: clamp(28px, 3vw, 44px); line-height: 0.96; letter-spacing: -0.04em; }
body.home-universe-page .studio-services-preview-text { margin: 0; max-width: 28ch; color: #b7b7b7; font-size: 16px; line-height: 1.5; }
body.home-universe-page .studio-cta-banner { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr); gap: 36px; align-items: center; margin-bottom: 60px; }
body.home-universe-page .studio-cta-copy { min-width: 0; }
body.home-universe-page .studio-cta-copy p + h2 { max-width: 22ch; }
body.home-universe-page .studio-cta-media { width: 100%; max-width: 420px; min-height: 230px; justify-self: end; overflow: hidden; background: #0f0f0f; }
body.home-universe-page .studio-cta-media img { width: 100%; height: 100%; min-height: 230px; object-fit: cover; }
body.home-universe-page .studio-quote-banner {
  display: grid;
  grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}
body.home-universe-page .studio-quote-media {
  width: 100%;
  max-width: 460px;
  min-height: 280px;
  aspect-ratio: 4 / 3;
  justify-self: start;
  align-self: start;
  overflow: hidden;
  background: transparent;
}
body.home-universe-page .studio-quote-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
body.home-universe-page .studio-quote-copy {
  display: grid;
  gap: 16px;
  min-width: 0;
}
body.home-universe-page .studio-quote-copy h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 850;
}
body.home-universe-page .studio-quote-text {
  margin: 0;
  max-width: 52ch;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.65;
}
body.home-universe-page .studio-quote-copy .studio-pill-button {
  justify-self: start;
}
body.home-universe-page .container-fluid.color-fondo-pie, body.home-universe-page[data-theme="light"] .container-fluid.color-fondo-pie { background: #000; border-top: 1px solid rgba(255,255,255,0.08); }
body.home-universe-page .color-fondo-pie .margen-arriba { width: min(1340px, calc(100% - 100px)); padding-top: 60px; }
body.home-universe-page .logo-fot { justify-content: flex-start; margin-bottom: 34px; }
body.home-universe-page .logo-fot img { width: 126px; filter: brightness(0) invert(1); opacity: 0.98; }
body.home-universe-page .titulos-pie { color: #ffffff; font-size: 14px; letter-spacing: -0.01em; }
body.home-universe-page .color-fondo-pie h4 { color: #fff; font-size: 26px; line-height: 1.05; letter-spacing: -0.02em; font-weight: 500; }
body.home-universe-page .color-fondo-pie p, body.home-universe-page .color-fondo-pie a, body.home-universe-page .color-fondo-pie .text-center, body.home-universe-page[data-theme="light"] .color-fondo-pie p, body.home-universe-page[data-theme="light"] .color-fondo-pie a, body.home-universe-page[data-theme="light"] .color-fondo-pie .text-center { color: #8b8b8b; }
body.home-universe-page .color-fondo-pie a:hover, body.home-universe-page .color-fondo-pie a:hover p { color: #fff; }
body.home-universe-page .redes a { border-color: #1d1d1d; color: #fff; }
body.home-universe-page .hr-pie { border-color: rgba(255,255,255,0.08); }
@media (max-width: 1180px) { body.home-universe-page .mainbar, body.home-universe-page .studio-home, body.home-universe-page .color-fondo-pie .margen-arriba { width: min(100%, calc(100% - 48px)); } body.home-universe-page .studio-home-hero, body.home-universe-page .studio-home-reel, body.home-universe-page .studio-cta-banner, body.home-universe-page .studio-services-layout { grid-template-columns: 1fr; } body.home-universe-page .studio-hero-media { min-height: 620px; } body.home-universe-page .studio-services-preview { position: relative; top: 0; } body.home-universe-page .studio-services-preview-media, body.home-universe-page .studio-services-preview-image { min-height: 420px; } body.home-universe-page .studio-quote-banner { grid-template-columns: minmax(280px, 400px) minmax(0, 1fr); gap: 28px; } body.home-universe-page .studio-quote-copy h2 { max-width: 18ch; } }
@media (max-width: 900px) { body.home-universe-page .studio-home { padding-top: 48px; padding-bottom: 120px; } body.home-universe-page .studio-work-grid { grid-template-columns: 1fr 1fr; } body.home-universe-page .color-fondo-pie .row.margen-abajo { grid-template-columns: 1fr; } body.home-universe-page .mainbar { gap: .85rem; } }
@media (max-width: 900px) { body.home-universe-page .studio-home { padding-top: 48px; padding-bottom: 120px; } body.home-universe-page .studio-work-grid { grid-template-columns: 1fr 1fr; } body.home-universe-page .color-fondo-pie .row.margen-abajo { grid-template-columns: 1fr; } body.home-universe-page .mainbar { gap: .85rem; } body.home-universe-page .studio-quote-banner { grid-template-columns: 1fr; gap: 20px; } body.home-universe-page .studio-quote-copy h2, body.home-universe-page .studio-quote-text { max-width: none; } body.home-universe-page .studio-quote-media { max-width: none; } }
@media (max-width: 720px) { body.home-universe-page .site-header { position: sticky; } body.home-universe-page .mainbar, body.home-universe-page .studio-home, body.home-universe-page .color-fondo-pie .margen-arriba { width: min(100%, calc(100% - 28px)); } body.home-universe-page #main-content { padding-top: 30px; } body.home-universe-page .studio-home-hero { gap: 28px; margin-bottom: 90px; } body.home-universe-page .studio-hero-copy h1 { max-width: 11ch; font-size: clamp(42px, 12vw, 68px); } body.home-universe-page .studio-lead { font-size: 15px; } body.home-universe-page .studio-hero-media { min-height: 440px; } body.home-universe-page .studio-home-reel, body.home-universe-page .studio-featured-work, body.home-universe-page .studio-statement-block, body.home-universe-page .studio-services-block { margin-bottom: 90px; } body.home-universe-page .studio-work-grid { grid-template-columns: 1fr; } body.home-universe-page .studio-section-head, body.home-universe-page .studio-services-intro { flex-direction: column; align-items: flex-start; } body.home-universe-page .studio-statement-block p { max-width: none; font-size: clamp(24px, 7.6vw, 34px); line-height: 1.08; } body.home-universe-page .studio-services-list a { font-size: clamp(30px, 9vw, 48px); } body.home-universe-page .studio-services-layout { gap: 24px; } body.home-universe-page .studio-cta-banner { gap: 20px; } body.home-universe-page .studio-cta-copy, body.home-universe-page .studio-quote-copy { order: 1; width: 100%; display: grid; gap: 14px; } body.home-universe-page .studio-cta-copy .studio-section-label { order: 1; } body.home-universe-page .studio-cta-copy h2 { order: 2; margin-top: 0; } body.home-universe-page .studio-cta-copy .studio-pill-button { order: 3; justify-self: start; } body.home-universe-page .studio-cta-copy p + h2, body.home-universe-page .studio-quote-copy h2, body.home-universe-page .studio-quote-text { max-width: none; } body.home-universe-page .studio-cta-media, body.home-universe-page .studio-quote-media { order: 2; width: 100%; max-width: none; justify-self: stretch; } body.home-universe-page .studio-services-preview-media, body.home-universe-page .studio-services-preview-image { min-height: 320px; } body.home-universe-page .studio-cta-media, body.home-universe-page .studio-cta-media img, body.home-universe-page .studio-quote-media, body.home-universe-page .studio-quote-media img { min-height: 240px; } body.home-universe-page .studio-services-preview-text { max-width: none; font-size: 15px; } }

/* === Certificación de Personas inspired home refresh === */
html:has(body.home-universe-page) { background: #020617; }
body.home-universe-page {
  --home-bg-overlay: linear-gradient(180deg, rgba(3, 7, 18, .42) 0%, rgba(3, 7, 18, .58) 42%, rgba(2, 6, 23, .76) 100%);
  --home-video-scroll-opacity: .16;
  background:
    var(--home-bg-overlay),
    radial-gradient(circle at 8% 4%, rgba(201, 168, 74, .10), transparent 31rem),
    radial-gradient(circle at 82% 12%, rgba(217, 16, 35, .08), transparent 24rem),
    radial-gradient(circle at 75% 78%, rgba(201, 168, 74, .08), transparent 28rem),
    linear-gradient(180deg, #030712 0%, #07111f 45%, #020617 100%) !important;
  background-size: auto, auto, auto, auto, auto !important;
  background-position: center, 8% 4%, 82% 12%, 75% 78%, center !important;
  background-attachment: fixed, fixed, fixed, fixed, fixed !important;
  color: #fff;
}
body.home-universe-page[data-theme="light"] {
  background:
    var(--home-bg-overlay),
    radial-gradient(circle at 8% 4%, rgba(201, 168, 74, .10), transparent 31rem),
    radial-gradient(circle at 82% 12%, rgba(217, 16, 35, .08), transparent 24rem),
    radial-gradient(circle at 75% 78%, rgba(201, 168, 74, .08), transparent 28rem),
    linear-gradient(180deg, #030712 0%, #07111f 45%, #020617 100%) !important;
  color: #fff;
}
body.home-universe-page .studio-home-video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #020617;
}
body.home-universe-page .studio-home-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.92) contrast(1.03) brightness(.82);
  transform: scale(1.03);
}
body.home-universe-page .studio-home-video-overlay,
body.home-universe-page .studio-home-video-scroll-shade {
  position: absolute;
  inset: 0;
}
body.home-universe-page .studio-home-video-overlay {
  background:
    linear-gradient(180deg, rgba(2, 6, 23, .34) 0%, rgba(2, 6, 23, .52) 38%, rgba(2, 6, 23, .72) 100%),
    radial-gradient(circle at 20% 18%, rgba(201, 168, 74, .10), transparent 24rem),
    radial-gradient(circle at 76% 12%, rgba(0, 0, 0, .20), transparent 20rem);
}
body.home-universe-page .studio-home-video-scroll-shade {
  background: linear-gradient(180deg, rgba(2, 6, 23, .10) 0%, rgba(2, 6, 23, var(--home-video-scroll-opacity)) 55%, rgba(2, 6, 23, calc(var(--home-video-scroll-opacity) + .18)) 100%);
}
body.home-universe-page .site-header,
body.home-universe-page #main-content,
body.home-universe-page .container-fluid.color-fondo-pie {
  position: relative;
  z-index: 1;
}
body.home-universe-page .studio-home { width: min(1220px, calc(100% - 2rem)); padding: clamp(.45rem, 1.2vw, .9rem) 0 150px; }
body.home-universe-page .studio-home-hero {
  position: relative;
  overflow: visible;
  min-height: clamp(430px, 62vh, 610px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .34fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  margin-bottom: clamp(1rem, 2.6vw, 2.4rem);
  padding: clamp(.35rem, 1.4vw, .9rem) 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}
body.home-universe-page .studio-home-hero::before,
body.home-universe-page .studio-home-hero::after { content: ""; position: absolute; border-radius: 999px; pointer-events: none; z-index: -1; }
body.home-universe-page .studio-home-hero::before { width: 34rem; height: 34rem; top: -17rem; right: -14rem; background: radial-gradient(circle, rgba(201,168,74,.22), transparent 66%); }
body.home-universe-page .studio-home-hero::after { width: 22rem; height: 22rem; left: 24%; bottom: -14rem; background: radial-gradient(circle, rgba(217,16,35,.22), transparent 70%); }
body.home-universe-page .studio-hero-copy { position: relative; z-index: 2; align-self: center; padding: clamp(.2rem, 2vw, 1.2rem); }
body.home-universe-page .studio-kicker { width: fit-content; display: inline-flex; align-items: center; gap: .55rem; margin: 0 0 1rem; padding: .55rem .88rem; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.82); font-size: .75rem; font-weight: 900; letter-spacing: .15em; backdrop-filter: blur(12px); }
body.home-universe-page .studio-kicker::before { content: ""; width: .58rem; height: .58rem; border-radius: 50%; background: #C9A84A; box-shadow: 0 0 0 6px rgba(201,168,74,.12), 0 0 28px rgba(201,168,74,.52); animation: cpPulse 1.8s ease-in-out infinite; }
body.home-universe-page .studio-hero-copy h1 { max-width: 10.8ch; margin: 0; color: #fff; font-size: clamp(2.8rem, 6.8vw, 6.9rem); line-height: .88; letter-spacing: -.075em; font-weight: 850; text-wrap: balance; text-shadow: 0 18px 50px rgba(0,0,0,.36); }
body.home-universe-page .studio-hero-copy h1::first-line { color: #fff; }
body.home-universe-page .studio-lead { max-width: 57ch; margin: 1.1rem 0 0; color: rgba(255,255,255,.78); font-size: clamp(1.02rem, 1.28vw, 1.16rem); line-height: 1.78; }
body.home-universe-page .studio-actions { margin-top: 1.35rem; gap: .78rem; }
body.home-universe-page .studio-pill-button { min-height: 48px; padding: .9rem 1.16rem; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.075); color: #fff; font-weight: 950; backdrop-filter: blur(12px); transition: transform .24s ease, box-shadow .24s ease, background .24s ease; }
body.home-universe-page .studio-pill-button:first-child { border-color: transparent; background: linear-gradient(135deg, #fff, #F0C96E 55%, #ffccd2); color: #07111f; }
body.home-universe-page .studio-pill-button:hover { transform: translateY(-3px); box-shadow: 0 18px 35px rgba(0,0,0,.32); }
body.home-universe-page .studio-pill-button .fill { display: none; }
body.home-universe-page .studio-hero-media {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: min(100%, 270px);
  min-height: 0;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  margin: 0;
  border: 8px solid rgba(255,255,255,.9);
  border-radius: 24px;
  background: #080808;
  box-shadow: 0 34px 90px rgba(0,0,0,.5), 18px 18px 0 rgba(201,168,74,.12), -18px -18px 0 rgba(217,16,35,.13);
  transform: rotate(-2deg);
}
body.home-universe-page .studio-slideshow,
body.home-universe-page .studio-slideshow .hero-slide { position: absolute; inset: 0; }
body.home-universe-page .studio-slideshow .hero-slide { filter: brightness(.9) contrast(1.04) saturate(1.08); }
body.home-universe-page .studio-hero-media::after { background: linear-gradient(180deg, rgba(3,7,18,.02) 0%, rgba(3,7,18,.36) 100%); }
body.home-universe-page .studio-overlay-note { left: 18px; right: 18px; bottom: 16px; }
body.home-universe-page .studio-note-label,
body.home-universe-page .studio-note-meta { color: rgba(255,255,255,.82); font-size: .72rem; letter-spacing: .12em; font-weight: 900; }
body.home-universe-page .studio-home-reel,
body.home-universe-page .studio-featured-work,
body.home-universe-page .studio-statement-block,
body.home-universe-page .studio-services-block { margin-bottom: clamp(3rem, 7vw, 7rem); }
body.home-universe-page .studio-reel-panel,
body.home-universe-page .studio-work-media,
body.home-universe-page .studio-services-preview-media,
body.home-universe-page .studio-cta-media { border-radius: 30px; border: 1px solid rgba(255,255,255,.11); box-shadow: 0 22px 70px rgba(0,0,0,.25); }
body.home-universe-page .studio-work-card,
body.home-universe-page .studio-statement-block,
body.home-universe-page .studio-services-block,
body.home-universe-page .studio-cta-banner,
body.home-universe-page .studio-quote-banner { position: relative; }
body.home-universe-page .studio-work-text h3,
body.home-universe-page .studio-home-reel h2,
body.home-universe-page .studio-featured-work h2,
body.home-universe-page .studio-cta-copy h2,
body.home-universe-page .studio-quote-copy h2,
body.home-universe-page .studio-statement-block p { font-weight: 850; letter-spacing: -.055em; }
body.home-universe-page .studio-work-text p,
body.home-universe-page .studio-services-preview-text { color: rgba(255,255,255,.7); }
body.home-universe-page .container-fluid.color-fondo-pie,
body.home-universe-page[data-theme="light"] .container-fluid.color-fondo-pie { background: rgba(2,6,23,.92); backdrop-filter: blur(16px); }
@media (max-width: 1180px) {
  body.home-universe-page .studio-home { width: min(100%, calc(100% - 48px)); }
  body.home-universe-page .studio-home-hero { grid-template-columns: 1fr; }
  body.home-universe-page .studio-hero-media { order: -1; width: min(72vw, 420px); }
}
@media (max-width: 720px) {
  body.home-universe-page { background-attachment: fixed, fixed, fixed, fixed, fixed !important; }
  body.home-universe-page .studio-home { width: min(100%, calc(100% - 28px)); padding-top: 1rem; }
  body.home-universe-page .studio-home-hero { padding-top: .6rem; gap: .7rem; min-height: auto; margin-bottom: 2.4rem; }
  body.home-universe-page .studio-hero-media { width: min(86vw, 360px); border-width: 7px; border-radius: 24px; transform: rotate(0deg); }
  body.home-universe-page .studio-hero-copy h1 { max-width: 11ch; font-size: clamp(2.45rem, 12vw, 4.2rem); }
}

/* === Studio Size global inner-page system === */
body.inner-enhanced-page,
body.inner-enhanced-page[data-theme="light"] {
  --bg: #000;
  --bg-soft: #000;
  --surface: rgba(0,0,0,0.94);
  --surface-strong: rgba(0,0,0,0.98);
  --surface-2: #090909;
  --surface-3: #141414;
  --text: #fff;
  --muted: #8c8c8c;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.18);
  background: #000;
  color: #fff;
}

body.inner-enhanced-page::before,
body.inner-enhanced-page::after {
  background: none !important;
  filter: none !important;
}

body.inner-enhanced-page .site-header,
body.inner-enhanced-page[data-theme="light"] .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  box-shadow: none;
  z-index: 300;
}

body.inner-enhanced-page .site-header.is-scrolled,
body.inner-enhanced-page[data-theme="light"] .site-header.is-scrolled {
  background: rgba(0,0,0,0.96);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: none;
}

body.inner-enhanced-page .mainbar {
  width: min(1340px, calc(100% - 100px));
  padding: 20px 0 22px;
}

body.inner-enhanced-page .brand-logo {
  width: clamp(92px, 7vw, 118px);
  filter: brightness(0) invert(1);
}

body.inner-enhanced-page .primary-nav > a,
body.inner-enhanced-page .primary-nav details > summary,
body.inner-enhanced-page .lang-toggle,
body.inner-enhanced-page .icon-button,
body.inner-enhanced-page .menu-toggle,
body.inner-enhanced-page[data-theme="light"] .primary-nav > a,
body.inner-enhanced-page[data-theme="light"] .primary-nav details > summary,
body.inner-enhanced-page[data-theme="light"] .lang-toggle,
body.inner-enhanced-page[data-theme="light"] .icon-button,
body.inner-enhanced-page[data-theme="light"] .menu-toggle {
  color: #fff;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

body.inner-enhanced-page .primary-nav > a,
body.inner-enhanced-page .primary-nav details > summary {
  padding: 6px 8px;
  font-size: 13px;
  font-weight: 500;
}

body.inner-enhanced-page .primary-nav > a:hover,
body.inner-enhanced-page .primary-nav details > summary:hover,
body.inner-enhanced-page .primary-nav a.is-active,
body.inner-enhanced-page .primary-nav details.is-active > summary,
body.inner-enhanced-page[data-theme="light"] .primary-nav > a:hover,
body.inner-enhanced-page[data-theme="light"] .primary-nav details > summary:hover,
body.inner-enhanced-page[data-theme="light"] .primary-nav a.is-active,
body.inner-enhanced-page[data-theme="light"] .primary-nav details.is-active > summary {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.06);
  transform: none;
}

body.inner-enhanced-page .lang-toggle,
body.inner-enhanced-page .theme-toggle-button {
  min-height: 38px;
  min-width: 38px;
  padding: 10px 16px;
  border: 1px solid #1d1d1d;
  border-radius: 999px;
}

body.inner-enhanced-page #main-content {
  padding-top: 82px;
}

body.inner-enhanced-page .content-wrap {
  width: min(1340px, calc(100% - 100px));
  padding: 0.35rem 0 8rem;
}

body.inner-enhanced-page .page-header-compact {
  margin-bottom: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.inner-enhanced-page .page-header-compact::after,
body.inner-enhanced-page .visual-card::before,
body.inner-enhanced-page .inner-visual-copy::before,
body.inner-enhanced-page .inner-floating-shape,
body.inner-enhanced-page .card-media-glow,
body.inner-enhanced-page .card-media-orb {
  display: none !important;
}

body.inner-enhanced-page .breadcrumbs,
body.inner-enhanced-page .breadcrumbs a {
  color: #777;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.inner-enhanced-page .inner-visual-hero,
body.inner-enhanced-page .route-about .inner-visual-hero,
body.inner-enhanced-page .route-services .inner-visual-hero,
body.inner-enhanced-page .route-academy .inner-visual-hero,
body.inner-enhanced-page .route-companies .inner-visual-hero,
body.inner-enhanced-page .route-contact .inner-visual-hero,
body.inner-enhanced-page .route-transition .inner-visual-hero,
body.inner-enhanced-page .route-communications .inner-visual-hero,
body.inner-enhanced-page .route-processes .inner-visual-hero,
body.inner-enhanced-page .route-legal .inner-visual-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: 32px;
  margin-bottom: 24px;
  align-items: start;
}

body.inner-enhanced-page .inner-visual-copy,
body.inner-enhanced-page .inner-visual-media,
body.inner-enhanced-page .visual-card,
body.inner-enhanced-page .cta-panel,
body.inner-enhanced-page .content-card,
body.inner-enhanced-page .contact-form-card,
body.inner-enhanced-page .contact-channel-card {
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}

body.inner-enhanced-page .inner-visual-copy {
  order: 1 !important;
  margin: 0 !important;
  padding: 8px 0 0;
  background: transparent;
  border: 0;
}

body.inner-enhanced-page .inner-visual-eyebrow {
  padding: 0;
  margin-bottom: 12px;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #7d7d7d;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.inner-enhanced-page .inner-visual-copy h1 {
  margin: 0 0 16px;
  max-width: 9ch;
  font-size: clamp(58px, 7vw, 106px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-weight: 600;
}

body.inner-enhanced-page .inner-visual-copy .lead {
  max-width: 46ch;
  color: #989898;
  font-size: 17px;
  line-height: 1.55;
}

body.inner-enhanced-page .inner-visual-facts,
body.inner-enhanced-page .inner-quick-pills {
  gap: 10px;
}

body.inner-enhanced-page .inner-visual-facts span,
body.inner-enhanced-page .inner-quick-pill {
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid #1d1d1d;
  border-radius: 999px;
  background: transparent;
  color: #d0d0d0;
  box-shadow: none;
  text-decoration: none;
  font-size: 13px;
}

body.inner-enhanced-page .inner-quick-pill:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-1px);
  box-shadow: none;
}

body.inner-enhanced-page .actions {
  gap: 12px;
  margin-top: 24px;
}

body.inner-enhanced-page .button.primary,
body.inner-enhanced-page .button.secondary {
  min-height: 44px;
  padding: 12px 20px;
  background: transparent;
  color: #fff;
  border: 2px solid #1d1d1d;
  box-shadow: none;
  font-size: 14px;
  font-weight: 500;
}

body.inner-enhanced-page .button.primary:hover,
body.inner-enhanced-page .button.secondary:hover {
  background: #141414;
  transform: translateY(-1px);
  box-shadow: none;
}

body.inner-enhanced-page .inner-visual-media {
  order: 2 !important;
  min-height: 700px;
  overflow: hidden;
  background: #0a0a0a;
}

body.inner-enhanced-page .inner-visual-media::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.42) 76%, rgba(0,0,0,0.72));
}

body.inner-enhanced-page .inner-visual-media img {
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translateY(var(--inner-parallax-shift)) scale(1.02);
  filter: grayscale(0.1) contrast(1.05) brightness(0.88);
}

body.inner-enhanced-page .grid,
body.inner-enhanced-page .route-contact .grid,
body.inner-enhanced-page .route-companies .grid,
body.inner-enhanced-page .route-legal .grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

body.inner-enhanced-page .visual-card,
body.inner-enhanced-page .content-card,
body.inner-enhanced-page .cta-panel {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: #090909;
}

body.inner-enhanced-page .route-about .visual-card:nth-child(odd),
body.inner-enhanced-page .route-about .visual-card:nth-child(even),
body.inner-enhanced-page .route-transition .visual-card:nth-child(odd),
body.inner-enhanced-page .route-transition .visual-card:nth-child(even),
body.inner-enhanced-page .route-communications .visual-card:nth-child(3n + 2),
body.inner-enhanced-page .route-processes .visual-card:nth-child(odd) {
  transform: none;
  margin: 0;
}

body.inner-enhanced-page .route-processes .visual-card::after {
  display: none;
}

body.inner-enhanced-page .card-media {
  height: 140px;
  margin: -22px -22px 18px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.0)),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    #0f0f0f;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

body.inner-enhanced-page .card-media-grid {
  inset: 0;
  opacity: 0.34;
}

body.inner-enhanced-page .card-kicker {
  margin-bottom: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #7c7c7c;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

body.inner-enhanced-page .content-card h2,
body.inner-enhanced-page .cta-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 2.3vw, 38px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 500;
}

body.inner-enhanced-page .content-card p,
body.inner-enhanced-page .cta-panel p,
body.inner-enhanced-page .notice,
body.inner-enhanced-page .content-card li,
body.inner-enhanced-page .contact-form label,
body.inner-enhanced-page .contact-status,
body.inner-enhanced-page .content-card address {
  color: #8d8d8d;
}

body.inner-enhanced-page .content-card:hover,
body.inner-enhanced-page .cta-panel:hover,
body.inner-enhanced-page .inner-visual-media:hover {
  border-color: rgba(255,255,255,0.16);
  box-shadow: none;
}

body.inner-enhanced-page .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 20px;
}

body.inner-enhanced-page .contact-form,
body.inner-enhanced-page .form-grid {
  display: grid;
  gap: 14px;
}

body.inner-enhanced-page .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.inner-enhanced-page .form-grid .field-full,
body.inner-enhanced-page .contact-form button,
body.inner-enhanced-page .contact-status {
  grid-column: 1 / -1;
}

body.inner-enhanced-page .contact-form input,
body.inner-enhanced-page .contact-form select,
body.inner-enhanced-page .contact-form textarea {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid #1d1d1d;
  border-radius: 0;
  background: #0a0a0a;
  color: #fff;
}

body.inner-enhanced-page .contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

body.inner-enhanced-page .contact-form button {
  min-height: 46px;
  background: #fff;
  color: #000;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
}

body.inner-enhanced-page .contact-form button:hover {
  background: #d7d7d7;
}

body.inner-enhanced-page .contact-channel-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

body.inner-enhanced-page .contact-channel-card a {
  color: #fff;
}


body.inner-enhanced-page .container-fluid.color-fondo-pie,
body.inner-enhanced-page[data-theme="light"] .container-fluid.color-fondo-pie {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.08);
}

body.inner-enhanced-page .color-fondo-pie .margen-arriba {
  width: min(1340px, calc(100% - 100px));
  padding-top: 60px;
}

body.inner-enhanced-page .logo-fot,
body.inner-enhanced-page .text-center {
  text-align: left;
}

body.inner-enhanced-page .logo-fot {
  justify-content: flex-start;
  margin-bottom: 34px;
}

body.inner-enhanced-page .logo-fot img {
  width: 126px;
  filter: brightness(0) invert(1);
}

body.inner-enhanced-page .titulos-pie {
  color: #fff;
}

body.inner-enhanced-page .color-fondo-pie h4 {
  color: #fff;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
}

body.inner-enhanced-page .color-fondo-pie p,
body.inner-enhanced-page .color-fondo-pie a,
body.inner-enhanced-page .color-fondo-pie .text-center,
body.inner-enhanced-page[data-theme="light"] .color-fondo-pie p,
body.inner-enhanced-page[data-theme="light"] .color-fondo-pie a,
body.inner-enhanced-page[data-theme="light"] .color-fondo-pie .text-center {
  color: #8b8b8b;
}

body.inner-enhanced-page[data-theme="light"] {
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --surface: rgba(255,255,255,0.96);
  --surface-strong: rgba(255,255,255,0.98);
  --surface-2: #f1f3f6;
  --surface-3: #e8ebf0;
  --text: #101114;
  --muted: #5e6572;
  --line: rgba(16,17,20,0.1);
  --line-strong: rgba(16,17,20,0.18);
  background: #fff;
  color: #101114;
}

body.inner-enhanced-page[data-theme="light"] #main-content {
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
}

body.inner-enhanced-page[data-theme="light"] .inner-visual-copy,
body.inner-enhanced-page[data-theme="light"] .visual-card,
body.inner-enhanced-page[data-theme="light"] .content-card,
body.inner-enhanced-page[data-theme="light"] .cta-panel,
body.inner-enhanced-page[data-theme="light"] .contact-form-card,
body.inner-enhanced-page[data-theme="light"] .contact-channel-card {
  background: #ffffff;
  border-color: rgba(16,17,20,0.1);
  color: #101114;
}

body.inner-enhanced-page[data-theme="light"] .page-header-compact,
body.inner-enhanced-page[data-theme="light"] .inner-visual-copy {
  color: #101114;
}

body.inner-enhanced-page[data-theme="light"] .inner-visual-copy h1,
body.inner-enhanced-page[data-theme="light"] .content-card h2,
body.inner-enhanced-page[data-theme="light"] .cta-panel h2,
body.inner-enhanced-page[data-theme="light"] .visual-card h2,
body.inner-enhanced-page[data-theme="light"] .visual-card h3 {
  color: #101114;
}

body.inner-enhanced-page[data-theme="light"] .inner-visual-copy .lead,
body.inner-enhanced-page[data-theme="light"] .content-card p,
body.inner-enhanced-page[data-theme="light"] .cta-panel p,
body.inner-enhanced-page[data-theme="light"] .notice,
body.inner-enhanced-page[data-theme="light"] .content-card li,
body.inner-enhanced-page[data-theme="light"] .contact-form label,
body.inner-enhanced-page[data-theme="light"] .contact-status,
body.inner-enhanced-page[data-theme="light"] .content-card address,
body.inner-enhanced-page[data-theme="light"] .visual-card p {
  color: #5e6572;
}

body.inner-enhanced-page[data-theme="light"] .inner-visual-eyebrow,
body.inner-enhanced-page[data-theme="light"] .card-kicker,
body.inner-enhanced-page[data-theme="light"] .breadcrumbs,
body.inner-enhanced-page[data-theme="light"] .breadcrumbs a {
  color: #6a7280;
}

body.inner-enhanced-page[data-theme="light"] .card-media {
  background:
    linear-gradient(180deg, rgba(16,17,20,0.02), rgba(16,17,20,0.00)),
    linear-gradient(90deg, rgba(16,17,20,0.06) 1px, transparent 1px),
    linear-gradient(rgba(16,17,20,0.05) 1px, transparent 1px),
    #f2f5f8;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

body.inner-enhanced-page[data-theme="light"] .inner-visual-media::after {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.12) 70%, rgba(255,255,255,0.2));
}

body.inner-enhanced-page .color-fondo-pie a:hover,
body.inner-enhanced-page .color-fondo-pie a:hover p {
  color: #fff;
}

body.inner-enhanced-page .redes a {
  border-color: #1d1d1d;
  color: #fff;
}

body.inner-enhanced-page .hr-pie {
  border-color: rgba(255,255,255,0.08);
}

body.home-universe-page .studio-reel-arrow,
body.home-universe-page .studio-mini-link span,
body.home-universe-page .studio-services-list a::after {
  transition: transform .28s cubic-bezier(.22,1,.36,1), opacity .28s ease;
}

body.home-universe-page .studio-reel-panel:hover .studio-reel-arrow {
  transform: translateX(4px);
}

body.home-universe-page .studio-mini-link:hover span {
  transform: translate(4px,-2px);
}

body.home-universe-page .studio-services-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

body.home-universe-page .studio-services-list a::after {
  content: '↗';
  color: #5f5f5f;
  font-size: .38em;
}

body.home-universe-page .studio-services-list a:hover::after {
  transform: translate(6px,-4px);
  color: #fff;
}

body.home-universe-page .studio-work-card:hover .studio-work-text h3 {
  color: #dcdcdc;
}

@media (max-width: 1180px) {
  body.inner-enhanced-page .mainbar,
  body.inner-enhanced-page .content-wrap,
  body.inner-enhanced-page .color-fondo-pie .margen-arriba {
    width: min(100%, calc(100% - 48px));
  }

  body.inner-enhanced-page .inner-visual-hero,
  body.inner-enhanced-page .route-about .inner-visual-hero,
  body.inner-enhanced-page .route-services .inner-visual-hero,
  body.inner-enhanced-page .route-academy .inner-visual-hero,
  body.inner-enhanced-page .route-companies .inner-visual-hero,
  body.inner-enhanced-page .route-contact .inner-visual-hero,
  body.inner-enhanced-page .route-transition .inner-visual-hero,
  body.inner-enhanced-page .route-communications .inner-visual-hero,
  body.inner-enhanced-page .route-processes .inner-visual-hero,
  body.inner-enhanced-page .route-legal .inner-visual-hero,
  body.inner-enhanced-page .contact-layout {
    grid-template-columns: 1fr;
  }

  body.inner-enhanced-page .inner-visual-media {
    min-height: 620px;
  }
}

@media (max-width: 900px) {
  body.inner-enhanced-page .grid,
  body.inner-enhanced-page .route-contact .grid,
  body.inner-enhanced-page .route-companies .grid,
  body.inner-enhanced-page .route-legal .grid,
  body.inner-enhanced-page .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  body.inner-enhanced-page .site-header {
    position: sticky;
  }

  body.inner-enhanced-page .mainbar,
  body.inner-enhanced-page .content-wrap,
  body.inner-enhanced-page .color-fondo-pie .margen-arriba {
    width: min(100%, calc(100% - 28px));
  }

  body.inner-enhanced-page #main-content {
    padding-top: 30px;
  }

  body.inner-enhanced-page .inner-visual-copy h1 {
    max-width: 11ch;
    font-size: clamp(42px, 12vw, 70px);
  }

  body.inner-enhanced-page .inner-visual-copy .lead {
    font-size: 15px;
  }

  body.inner-enhanced-page .inner-visual-media {
    min-height: 420px;
  }

  body.inner-enhanced-page .grid,
  body.inner-enhanced-page .route-contact .grid,
  body.inner-enhanced-page .route-companies .grid,
  body.inner-enhanced-page .route-legal .grid,
  body.inner-enhanced-page .form-grid {
    grid-template-columns: 1fr;
  }

  body.inner-enhanced-page .visual-card,
  body.inner-enhanced-page .content-card,
  body.inner-enhanced-page .cta-panel {
    padding: 18px;
  }

  body.inner-enhanced-page .card-media {
    margin: -18px -18px 16px;
    height: 112px;
  }
}


/* === Studio Size mobile overflow fixes === */
body.home-universe-page,
body.inner-enhanced-page {
  overflow: visible;
}

body.home-universe-page .studio-home > *,
body.home-universe-page .studio-home-reel > *,
body.home-universe-page .studio-cta-banner > *,
body.home-universe-page .studio-quote-banner > *,
body.inner-enhanced-page .inner-visual-hero > *,
body.inner-enhanced-page .contact-layout > * {
  min-width: 0;
}

body.home-universe-page .studio-reel-panel {
  width: 100%;
}

body.home-universe-page .studio-reel-panel img {
  display: block;
}

@media (max-width: 900px) {
  .cursor,
  .cursor-follower {
    display: none !important;
  }

  body.has-custom-cursor {
    cursor: auto;
  }
}

@media (max-width: 720px) {
  body.home-universe-page .studio-reel-panel {
    min-height: 0;
  }

  body.home-universe-page .studio-reel-copy strong {
    font-size: 22px;
    line-height: 1.02;
  }

  body.home-universe-page .studio-reel-arrow {
    width: 52px;
    height: 52px;
    font-size: 30px;
  }
}


@media (max-width: 560px) {
  body.home-universe-page .color-fondo-pie .row.margen-abajo,
  body.inner-enhanced-page .color-fondo-pie .row.margen-abajo {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body.home-universe-page .footer-badge-grid,
  body.inner-enhanced-page .footer-badge-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.home-universe-page .redes,
  body.inner-enhanced-page .redes {
    justify-content: flex-start;
  }
}


/* === Shared header/footer uniform chrome ===
   Header and footer visual rules live here as the single source of truth for pages
   that mount shared/header.html and shared/footer.html. Page templates should not
   redefine .site-header, .mainbar, .brand-logo, or footer chrome styles locally. */
.site-header,
body[data-theme="light"] .site-header,
body.home-universe-page .site-header,
body.home-universe-page[data-theme="light"] .site-header,
body.inner-enhanced-page .site-header,
body.inner-enhanced-page[data-theme="light"] .site-header {
  position: sticky !important;
  top: 0 !important;
  left: auto !important;
  right: auto !important;
  z-index: 5000 !important;
  isolation: isolate;
  background: rgba(5, 9, 20, .92) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 12px 34px rgba(0,0,0,.24) !important;
  backdrop-filter: blur(16px) saturate(1.08);
}
.site-header.is-scrolled,
body[data-theme="light"] .site-header.is-scrolled,
body.home-universe-page .site-header.is-scrolled,
body.home-universe-page[data-theme="light"] .site-header.is-scrolled,
body.inner-enhanced-page .site-header.is-scrolled,
body.inner-enhanced-page[data-theme="light"] .site-header.is-scrolled {
  background: rgba(5, 9, 20, .97) !important;
  border-bottom-color: rgba(255,255,255,.12) !important;
  box-shadow: 0 14px 40px rgba(0,0,0,.30) !important;
}
.site-header .mainbar,
body.home-universe-page .mainbar,
body.inner-enhanced-page .mainbar {
  width: min(1340px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
  padding: 14px 0 16px !important;
  align-items: center !important;
}
.site-header .brand-logo,
body.home-universe-page .brand-logo,
body.inner-enhanced-page .brand-logo {
  width: clamp(88px, 7vw, 116px) !important;
  filter: brightness(0) invert(1) drop-shadow(0 8px 18px rgba(0,0,0,.18)) !important;
}
.site-header .primary-nav > a,
.site-header .primary-nav details > summary,
.site-header .lang-toggle,
.site-header .icon-button,
.site-header .menu-toggle,
body[data-theme="light"] .site-header .primary-nav > a,
body[data-theme="light"] .site-header .primary-nav details > summary,
body[data-theme="light"] .site-header .lang-toggle,
body[data-theme="light"] .site-header .icon-button,
body[data-theme="light"] .site-header .menu-toggle {
  color: #fff !important;
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.site-header .primary-nav > a,
.site-header .primary-nav details > summary,
body.home-universe-page .primary-nav > a,
body.home-universe-page .primary-nav details > summary,
body.inner-enhanced-page .primary-nav > a,
body.inner-enhanced-page .primary-nav details > summary {
  padding: 7px 10px !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  letter-spacing: -.01em !important;
}
.site-header .primary-nav > a:hover,
.site-header .primary-nav details > summary:hover,
.site-header .primary-nav a.is-active,
.site-header .primary-nav details.is-active > summary,
body[data-theme="light"] .site-header .primary-nav > a:hover,
body[data-theme="light"] .site-header .primary-nav details > summary:hover,
body[data-theme="light"] .site-header .primary-nav a.is-active,
body[data-theme="light"] .site-header .primary-nav details.is-active > summary {
  color: #fff !important;
  background: rgba(255,255,255,.075) !important;
  border-color: rgba(255,255,255,.08) !important;
  transform: translateY(-1px);
}
.site-header .lang-toggle,
.site-header .theme-toggle-button,
.site-header .menu-toggle {
  min-height: 38px !important;
  min-width: 38px !important;
  padding: 10px 16px !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 999px !important;
}
.site-header .dropdown-panel,
body[data-theme="light"] .site-header .dropdown-panel {
  z-index: 5100 !important;
  background: rgba(10, 16, 30, .97) !important;
  border-color: rgba(255,255,255,.10) !important;
  box-shadow: 0 22px 54px rgba(0,0,0,.38) !important;
}
.site-header .dropdown-panel a,
.site-header .dropdown-panel .nested-dropdown > summary,
body[data-theme="light"] .site-header .dropdown-panel a,
body[data-theme="light"] .site-header .dropdown-panel .nested-dropdown > summary {
  color: #f3f7ff !important;
}
.site-header .dropdown-panel a:hover,
body[data-theme="light"] .site-header .dropdown-panel a:hover {
  background: rgba(255,255,255,.08) !important;
}
.site-header .dropdown-panel .nested-dropdown .nested-links,
body[data-theme="light"] .site-header .dropdown-panel .nested-dropdown .nested-links {
  z-index: 5200 !important;
  background: linear-gradient(180deg, rgba(12,20,37,.97), rgba(23,32,56,.97)) !important;
  border-color: rgba(95,138,255,.24) !important;
  box-shadow: 0 20px 50px rgba(4,10,22,.45) !important;
}
body.home-universe-page #main-content,
body.inner-enhanced-page #main-content {
  padding-top: 0 !important;
}
.container-fluid.color-fondo-pie,
body[data-theme="light"] .container-fluid.color-fondo-pie,
body.home-universe-page .container-fluid.color-fondo-pie,
body.home-universe-page[data-theme="light"] .container-fluid.color-fondo-pie,
body.inner-enhanced-page .container-fluid.color-fondo-pie,
body.inner-enhanced-page[data-theme="light"] .container-fluid.color-fondo-pie {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #070b14 !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
}
.color-fondo-pie .margen-arriba,
body.home-universe-page .color-fondo-pie .margen-arriba,
body.inner-enhanced-page .color-fondo-pie .margen-arriba {
  width: min(1340px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
  padding-top: 48px !important;
}
.logo-fot,
body.home-universe-page .logo-fot,
body.inner-enhanced-page .logo-fot {
  justify-content: center !important;
  margin-bottom: 2rem !important;
}
.logo-fot img,
body.home-universe-page .logo-fot img,
body.inner-enhanced-page .logo-fot img {
  width: min(220px, 72vw) !important;
  filter: brightness(0) invert(1) !important;
  opacity: 1 !important;
}
.titulos-pie,
body.home-universe-page .titulos-pie,
body.inner-enhanced-page .titulos-pie {
  color: #d4a743 !important;
  font-size: 1rem !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}
.color-fondo-pie h4,
body.home-universe-page .color-fondo-pie h4,
body.inner-enhanced-page .color-fondo-pie h4 {
  color: #fff !important;
  font-size: 1rem !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
  font-weight: 700 !important;
}
.color-fondo-pie p,
.color-fondo-pie a,
.color-fondo-pie .text-center,
body.home-universe-page .color-fondo-pie p,
body.home-universe-page .color-fondo-pie a,
body.home-universe-page .color-fondo-pie .text-center,
body.inner-enhanced-page .color-fondo-pie p,
body.inner-enhanced-page .color-fondo-pie a,
body.inner-enhanced-page .color-fondo-pie .text-center,
body[data-theme="light"] .color-fondo-pie p,
body[data-theme="light"] .color-fondo-pie a,
body[data-theme="light"] .color-fondo-pie .text-center {
  color: rgba(255,255,255,.72) !important;
}
.color-fondo-pie a:hover,
.color-fondo-pie a:hover p,
body.home-universe-page .color-fondo-pie a:hover,
body.home-universe-page .color-fondo-pie a:hover p,
body.inner-enhanced-page .color-fondo-pie a:hover,
body.inner-enhanced-page .color-fondo-pie a:hover p {
  color: #d4a743 !important;
}
.color-fondo-pie .row.margen-abajo > div:nth-child(2),
.color-fondo-pie .row.margen-abajo > div:nth-child(2) .titulos-pie,
.color-fondo-pie .row.margen-abajo > div:nth-child(2) .text-pie,
.color-fondo-pie .row.margen-abajo > div:nth-child(2) p,
body.home-universe-page .color-fondo-pie .row.margen-abajo > div:nth-child(2),
body.inner-enhanced-page .color-fondo-pie .row.margen-abajo > div:nth-child(2) {
  text-align: left !important;
}
@media (max-width: 720px) {
  .site-header .mainbar,
  body.home-universe-page .mainbar,
  body.inner-enhanced-page .mainbar,
  .color-fondo-pie .margen-arriba,
  body.home-universe-page .color-fondo-pie .margen-arriba,
  body.inner-enhanced-page .color-fondo-pie .margen-arriba {
    width: min(100%, calc(100% - 28px)) !important;
  }
  .site-header .mainbar,
  body.home-universe-page .mainbar,
  body.inner-enhanced-page .mainbar {
    padding: 12px 0 14px !important;
  }
}
