/* Metaverde.com — VSAT Premium Dark Aesthetic */
:root {
  --bg: #070708;
  --bg-elevated: #0c0c0d;
  --panel: #0a0a0b;
  --panel-hover: #101012;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --accent: #10B981;
  --accent-soft: rgba(16, 185, 129, 0.12);
  --accent-glow: rgba(16, 185, 129, 0.25);
  --gold: rgba(201, 169, 98, 0.45);
  --text: #E5E5E5;
  --text-muted: #A3A3A3;
  --text-dim: #737373;
  --white: #ffffff;
  --overlay: rgba(7, 7, 8, 0.72);
  --overlay-strong: rgba(7, 7, 8, 0.88);
  --glass: rgba(12, 12, 13, 0.55);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.32);
  --radius: 14px;
  --radius-lg: 18px;
  --transition: all 400ms ease;
  --section-y: clamp(5.5rem, 8vw, 7.5rem);
  --card-min-h: 320px;
  --card-pad: clamp(1.75rem, 3vw, 2.25rem);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.18em;
  transition: var(--transition);
}

a:hover {
  color: #34D399;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 30;
  background: var(--accent);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 800;
  transition: var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 7, 8, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  min-height: 72px;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: var(--transition);
}

.brand-logo {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  color: var(--text);
}

.brand-accent {
  color: var(--accent);
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.72rem;
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.06);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
}

.partner-bullet {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--accent-glow);
}

.nav-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.35rem 0.85rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.03em;
  transition: var(--transition);
  padding: 0.35rem 0;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.header-cta {
  display: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 0.55rem 0.85rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.menu-toggle:hover {
  border-color: var(--border-hover);
  background: var(--panel-hover);
}

.menu-toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}

.menu-toggle-icon span {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open .menu-toggle-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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


.mobile-nav {
  display: none;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 1.25rem;
  border-top: 1px solid var(--border);
}

.mobile-nav.open {
  display: grid;
  gap: 0.65rem;
}

.mobile-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.92rem;
  padding: 0.35rem 0;
}

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

.mobile-nav-lang {
  padding: 0.5rem 0;
}

main {
  overflow: hidden;
}

/* Video Hero */
.hero-video {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero-video .bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.04);
}

.hero-video .video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 7, 8, 0.45) 0%,
    rgba(7, 7, 8, 0.72) 55%,
    rgba(7, 7, 8, 0.96) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(6rem, 14vh, 9rem) 0 clamp(3.5rem, 8vh, 5rem);
  max-width: 860px;
}

.hero-content h1,
.hero-content .lead,
.hero-content .eyebrow {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.85);
}

/* Legacy hero (other pages) */
.section, .hero, .network-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: var(--section-y) 0 clamp(4rem, 6vw, 5rem);
  display: grid;
  gap: 2rem;
}

.hero-grid, .two-col {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.hero-grid {
  align-items: start;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.hero .eyebrow,
.hero-content .eyebrow {
  display: inline-block;
  margin: 0 0 1.15rem;
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  line-height: 1.35;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 999px;
  padding: 0.48rem 1rem;
}

h1, h2, h3 {
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.85rem);
  line-height: 1.05;
  max-width: 820px;
  font-weight: 800;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 3.5vw, 2.45rem);
  font-weight: 750;
}

h3 {
  margin: 0 0 0.65rem;
  font-size: 1.12rem;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
}

.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
  max-width: 760px;
  letter-spacing: 0.02em;
}

.hero .lead,
.hero-content .lead {
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.58;
  max-width: 720px;
}

.hero-support {
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 720px;
}

.hero-offer-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 1.15rem 0 0;
  list-style: none;
}

.hero-offer-list li {
  position: relative;
  padding: 0.62rem 0.85rem 0.62rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  font-weight: 650;
  font-size: clamp(0.88rem, 1vw, 0.96rem);
  line-height: 1.4;
  color: var(--text-muted);
  transition: var(--transition);
}

.hero-offer-list li:hover {
  background: var(--panel-hover);
  border-color: var(--border-hover);
}

.hero-offer-list li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0.85rem;
  top: 0.95rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: linear-gradient(135deg, #0d9668, var(--accent));
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.03em;
  font-size: 0.92rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
}

.button:hover {
  background: linear-gradient(135deg, var(--accent), #34D399);
  border-color: #34D399;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border);
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  color: var(--text);
  transform: translateY(-1px);
}

.button.dark {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
  box-shadow: none;
}

.button.dark:hover {
  background: var(--panel-hover);
}

/* Sections */
.section {
  padding: var(--section-y) 0;
}

.section.alt {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 50%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section.alt > .inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section.alt .holding-grid {
  margin-top: 1.75rem;
}

.kicker {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  margin-bottom: 0.8rem;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

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

/* Portfolio holding grid */
.holding-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}

.card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--card-pad);
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.holding-grid .holding-card,
.holding-card {
  position: relative;
  min-height: var(--card-min-h);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: var(--card-pad);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(
    165deg,
    rgba(16, 185, 129, 0.04) 0%,
    rgba(255, 255, 255, 0.02) 35%,
    rgba(7, 7, 8, 0.95) 100%
  );
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.holding-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), rgba(201, 169, 98, 0.2), transparent);
  opacity: 0.7;
}

.holding-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at top right, rgba(16, 185, 129, 0.06), transparent 55%);
  pointer-events: none;
}

.holding-card > * {
  position: relative;
  z-index: 1;
}

.holding-card .holding-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.75);
}

.holding-card .holding-card-vignette {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: linear-gradient(to top, rgba(7, 7, 8, 0.92), transparent 60%);
  pointer-events: none;
}

.holding-card .holding-card-content {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  color: var(--text);
}

.holding-card:hover {
  border-color: rgba(16, 185, 129, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card:hover {
  border-color: var(--border-hover);
}

.card h3 a {
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}

.card h3 a:hover {
  color: var(--accent);
}

.card-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.7rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding: 0.28rem 0.65rem;
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.06);
}

.muted {
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.holding-card .muted {
  margin-top: auto;
  padding-top: 1rem;
}

.holding-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

/* Montage showcase */
.montage-showcase {
  padding: clamp(5.5rem, 9vw, 7.5rem) 0;
}

.montage-showcase-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.montage-showcase-header {
  max-width: 780px;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.montage-showcase .montage-eyebrow {
  margin-bottom: 1rem;
}

.montage-showcase .montage-title {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 750;
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}

.montage-showcase .montage-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  max-width: 640px;
  margin: 0;
}

.video-slider {
  position: relative;
}

.video-slider-viewport {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn--edge {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 7, 8, 0.55);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: rgba(229, 229, 229, 0.9);
}

.slider-btn--edge:hover {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.1);
  color: var(--text);
}

.video-slider-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px 18px;
  scrollbar-width: none;
}

.video-slider-track::-webkit-scrollbar {
  display: none;
}

.video-slide {
  flex: 0 0 86%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.video-slide-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
  aspect-ratio: 9 / 16;
  max-height: 480px;
  box-shadow: var(--shadow);
}

.video-slide-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 7, 8, 0.85) 0%,
    rgba(7, 7, 8, 0.35) 18%,
    transparent 45%
  );
  pointer-events: none;
}

.slider-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.slider-dots--premium {
  gap: 10px;
  margin-top: 24px;
}

.slider-dot {
  width: 28px;
  height: 2px;
  border-radius: 1px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active,
.slider-dot:hover {
  background: var(--accent);
}

/* Partner section */
.partner-section {
  position: relative;
}

.partner-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.partner-grid {
  align-items: stretch;
}

.glass-card {
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.partner-disclaimer {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-left: 3px solid var(--accent);
}

.partner-copy .lead {
  max-width: 680px;
}

.two-col .card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 320px;
  padding: var(--card-pad);
}

.feature-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.feature-list li {
  padding-left: 1.6rem;
  position: relative;
  color: var(--text-muted);
}

.feature-list li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.form-panel {
  background: transparent;
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
}

form {
  display: grid;
  gap: 1rem;
}

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

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--text);
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.82rem 0.9rem;
  font: inherit;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: 1px solid var(--accent);
  outline-offset: 0;
  border-color: var(--accent);
}

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

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-page .form-panel input:not(.honeypot),
.contact-page .form-panel select,
.contact-page .form-panel textarea {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.contact-page .form-panel input:not(.honeypot):focus,
.contact-page .form-panel select:focus,
.contact-page .form-panel textarea:focus {
  border-color: rgba(255, 255, 255, 0.6);
  outline: 1px solid var(--accent);
  outline-offset: 0;
}
.contact-page .form-panel select {
  color: #f5f5f5;
}

.contact-page .form-panel select option {
  background-color: #ffffff;
  color: #1a1a1a;
}

.faq details {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  transition: var(--transition);
}

.faq details:hover {
  background: var(--panel-hover);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
}

.article {
  max-width: 850px;
  margin: 0 auto;
}

.article p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.article-nav {
  margin-top: 2rem;
}

.network-strip {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 0;
}

.network-box {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.03), transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  margin-top: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 4rem) 0;
  display: grid;
  gap: 1.25rem;
}

.footer-brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.footer-inner strong {
  color: var(--text);
  font-size: 1.15rem;
}

.footer-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.03em;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-disclaimers {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0.75rem;
}

.fineprint {
  color: var(--text-dim);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

/* Cookie notice */
.cookie-notice {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  max-width: 980px;
  margin: 0 auto;
  background: rgba(12, 12, 13, 0.95);
  backdrop-filter: blur(12px);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: clamp(1rem, 2vw, 1.25rem);
  display: grid;
  gap: 0.9rem;
}

.cookie-notice p {
  margin: 0;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-actions button {
  border: 1px solid var(--border);
  border-radius: 999px;
  min-height: 42px;
  padding: 0.65rem 1rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  background: var(--bg);
  color: var(--text);
  transition: var(--transition);
}

.cookie-actions .reject {
  background: transparent;
}

.cookie-actions .reject:hover {
  background: var(--panel-hover);
}

.cookie-actions .accept {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.cookie-actions .accept:hover {
  background: #34D399;
  border-color: #34D399;
}

/* Language toggle */
.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  flex-shrink: 0;
}

.language-toggle button.lang-btn {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  font-weight: 800;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1.2;
  letter-spacing: 0.03em;
  font-size: 0.82rem;
  transition: var(--transition);
}

.language-toggle button.lang-btn:hover {
  color: var(--text);
}

.language-toggle button.lang-btn.active {
  background: var(--accent);
  color: var(--white);
}

.language-toggle button.lang-btn:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 2px;
}

.language-toggle-separator {
  color: var(--text-dim);
  font-weight: 700;
  user-select: none;
}

.nav-lang-inline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Legacy video wrappers */
.hero-video-wrap,
.video-hero,
.video-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-video-wrap video,
.video-hero video,
.video-wrap video,
video.hero-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-wrap::after,
.video-hero::after,
.video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 7, 8, 0.9) 0%, transparent 45%);
  pointer-events: none;
}

[data-lang="es"][hidden],
[data-lang="en"][hidden] {
  display: none !important;
}

h1 [data-lang], h2 [data-lang], h3 [data-lang], h4 [data-lang], h5 [data-lang], h6 [data-lang],
p [data-lang], li [data-lang], label [data-lang], summary [data-lang],
.eyebrow [data-lang], .kicker [data-lang], .lead [data-lang], .muted [data-lang],
.button [data-lang], .fineprint [data-lang], .partner-badge [data-lang], .card-tag [data-lang],
.montage-title [data-lang], .montage-lead [data-lang],
.footer-partner-badge [data-lang] {
  display: block;
}

.nav-links a [data-lang],
.mobile-nav a [data-lang],
.footer-links a [data-lang] {
  display: inline;
}

/* Responsive */
@media (min-width: 640px) {
  .video-slide {
    flex-basis: calc(50% - 9px);
  }
}

@media (min-width: 760px) {
  .nav-shell {
    flex-wrap: nowrap;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  }

  .contact-page .contact-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
    align-items: start;
  }

  .two-col,
  .partner-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  }

  .grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .holding-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

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

  .cookie-notice {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 960px) {
  .nav-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 1.25rem;
    min-height: 72px;
    padding: 0.85rem 0;
  }

  .brand-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    max-width: 10.5rem;
  }

  .site-header .partner-badge {
    font-size: 0.62rem;
    padding: 0.28rem 0.55rem;
    letter-spacing: 0.05em;
  }

  .nav-links {
    justify-self: center;
    justify-content: center;
    flex-wrap: nowrap;
    min-width: 0;
    padding: 0;
  }

  .nav-links a {
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .nav-actions {
    margin-left: 0;
    justify-self: end;
  }

  .nav-lang-inline {
    flex-wrap: nowrap;
  }

  .header-cta {
    display: inline-flex;
    white-space: nowrap;
    font-size: 0.85rem;
    padding: 0.65rem 1rem;
  }

  .menu-toggle,
  .mobile-nav,
  .mobile-nav.open {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .holding-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .holding-grid .card-wide {
    grid-column: span 2;
  }

  .video-slide {
    flex: 0 0 calc(33.333% - 12px);
  }

  .video-slider-viewport {
    gap: 18px;
  }
}

@media (max-width: 959.98px) {
  .nav-shell {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 64px;
    padding: 0.75rem 0;
  }

  .brand-row {
    flex: 1;
    min-width: 0;
  }

  .site-header .partner-badge {
    display: none;
  }

  .nav-links,
  .nav-lang-inline {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-actions {
    margin-left: 0;
    flex-shrink: 0;
  }
}

@media (max-width: 759.98px) {
  .holding-grid .holding-card {
    min-height: 280px;
  }
}

@media (max-width: 639.98px) {
  .slider-btn--edge {
    display: none;
  }

  .video-slider-viewport {
    grid-template-columns: 1fr;
  }

  .montage-showcase-header {
    margin-bottom: 2rem;
  }
}

@media (max-width: 520px) {
  .button, .cookie-actions button {
    width: 100%;
  }

  .hero .cta-row .button,
  .hero-content .cta-row .button {
    width: 100%;
  }
}
