/* =========================================================
   NODO ANDINO — Design System
   Paleta: piedra oscura + cobre + blanco piedra
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;600;700;800;900&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Brand palette */
  --color-copper:        #C97A3A;
  --color-copper-light:  #E09A5A;
  --color-copper-dark:   #A05E22;

  /* Surfaces — dark mode as default */
  --color-bg:            #0E0D0B;
  --color-surface:       #141310;
  --color-surface-2:     #1A1916;
  --color-surface-3:     #222019;
  --color-border:        #2A2824;
  --color-border-light:  #333128;

  /* Text */
  --color-text:          #E8E4DC;
  --color-text-muted:    #8C8880;
  --color-text-faint:    #504E49;

  /* Primary = copper */
  --color-primary:       var(--color-copper);
  --color-primary-hover: var(--color-copper-light);

  /* Type */
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;

  /* Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3.2rem,   0.5rem  + 7vw,    7.5rem);

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --w-narrow:  640px;
  --w-default: 980px;
  --w-wide:    1240px;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  /* Transitions */
  --t-fast:   160ms cubic-bezier(0.16, 1, 0.3, 1);
  --t-normal: 280ms cubic-bezier(0.16, 1, 0.3, 1);
  --t-slow:   480ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.6);
}

/* Light mode overrides */
[data-theme="light"] {
  --color-bg:           #F5F3EE;
  --color-surface:      #FAFAF7;
  --color-surface-2:    #FFFFFF;
  --color-surface-3:    #F0EDE7;
  --color-border:       #DDD9D1;
  --color-border-light: #E8E4DC;
  --color-text:         #1A1815;
  --color-text-muted:   #6B6860;
  --color-text-faint:   #B0ADA6;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.15);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  transition: background var(--t-normal), color var(--t-normal);
}
img, video { display: block; max-width: 100%; height: auto; }
ul[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.1; }
p, li { text-wrap: pretty; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }

::selection { background: rgba(201,122,58,0.25); color: var(--color-text); }
:focus-visible { outline: 2px solid var(--color-copper); outline-offset: 3px; border-radius: var(--r-sm); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── UTILS ──────────────────────────────────────────────── */
.container { max-width: var(--w-wide); margin: 0 auto; padding: 0 var(--sp-6); }
.container--narrow { max-width: var(--w-default); }
.section { padding: clamp(var(--sp-16), 8vw, var(--sp-32)) 0; }
.section-tag {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: var(--sp-4);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: var(--sp-6);
  line-height: 1.05;
}
.body-text { font-size: var(--text-base); color: var(--color-text-muted); line-height: 1.75; margin-bottom: var(--sp-5); max-width: 58ch; text-align: justify; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-8);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--color-copper);
  color: #fff;
  border: 1.5px solid var(--color-copper);
}
.btn-primary:hover { background: var(--color-copper-light); border-color: var(--color-copper-light); }
.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border-light);
}
.btn-ghost:hover { border-color: var(--color-copper); color: var(--color-copper); }
.btn-outline {
  background: transparent;
  color: var(--color-copper);
  border: 1.5px solid var(--color-copper);
}
.btn-outline:hover { background: var(--color-copper); color: #fff; }
.btn-large { padding: var(--sp-4) var(--sp-10); font-size: var(--text-base); }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--t-normal), box-shadow var(--t-normal), transform var(--t-normal);
  background: rgba(14,13,11,0);
}
.site-header.scrolled {
  background: rgba(14,13,11,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--color-border);
}
[data-theme="light"] .site-header.scrolled {
  background: rgba(245,243,238,0.92);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--sp-4) var(--sp-6);
  height: 80px;
}
.logo { display: flex; align-items: center; }
.logo-svg { height: 60px; width: auto; color: var(--color-text); }

/* Nav */
.nav-main ul {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  list-style: none;
}
.nav-main a {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--t-fast);
  padding: var(--sp-1) 0;
  position: relative;
}
.nav-main a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--color-copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast);
}
.nav-main a:hover { color: var(--color-text); }
.nav-main a:hover::after { transform: scaleX(1); }
.nav-cta {
  color: var(--color-copper) !important;
  border: 1.5px solid var(--color-copper);
  padding: var(--sp-2) var(--sp-5) !important;
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast) !important;
}
.nav-cta:hover { background: var(--color-copper) !important; color: #fff !important; }
.nav-cta::after { display: none !important; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: var(--sp-3); }
.theme-toggle {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted);
  border-radius: var(--r-md);
  transition: color var(--t-fast), background var(--t-fast);
}
.theme-toggle:hover { color: var(--color-text); background: var(--color-surface-3); }
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--color-text);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  padding: var(--sp-6);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-4); }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--t-fast);
}
.nav-mobile a:hover { color: var(--color-copper); }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(var(--sp-16), 8vw, var(--sp-24));
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.7) brightness(0.55);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,9,8,0.96) 0%, rgba(10,9,8,0.55) 45%, rgba(10,9,8,0.25) 100%),
    linear-gradient(to right, rgba(10,9,8,0.6) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  padding-top: 120px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: var(--sp-6);
}
.eyebrow-line {
  display: block;
  width: 40px; height: 1px;
  background: var(--color-copper);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: #fff;
  margin-bottom: var(--sp-8);
  text-transform: uppercase;
}
.hero-title em {
  font-style: normal;
  color: var(--color-copper);
}
.hero-sub {
  font-size: var(--text-base);
  color: rgba(232,228,220,0.75);
  margin-bottom: var(--sp-10);
  line-height: 1.7;
  max-width: 52ch;
}
.hero-actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: var(--sp-8);
  right: var(--sp-8);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.stats-inner {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--sp-8) var(--sp-6);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-6);
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-copper);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--sp-1);
}
.stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 500;
}
.stat-divider { width: 1px; height: 48px; background: var(--color-border-light); }

/* ── SOBRE ──────────────────────────────────────────────── */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-12), 6vw, var(--sp-24));
  align-items: center;
}
.sobre-text {}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.feature-list li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--color-copper);
  margin-top: 2px;
}
.sobre-visual { position: relative; }
.sobre-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.sobre-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.sobre-img-badge {
  position: absolute;
  bottom: var(--sp-6);
  left: var(--sp-6);
  background: var(--color-copper);
  color: #fff;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.badge-year {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.9;
}
.badge-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  line-height: 1;
}

/* ── MODELO OPERATIVO ───────────────────────────────────── */
.modelo { background: var(--color-surface); }
.modelo-header { margin-bottom: var(--sp-16); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 1px;
  background: linear-gradient(to right, var(--color-copper) 0%, var(--color-border) 100%);
  z-index: 0;
}
.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
  border-radius: var(--r-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.step-card:hover { border-color: var(--color-copper); transform: translateY(-4px); }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-surface-3);
  border: 2px solid var(--color-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--color-copper);
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--sp-3);
}
.step-card p { font-size: var(--text-xs); color: var(--color-text-muted); line-height: 1.6; text-align: justify; }

/* ── PILARES ────────────────────────────────────────────── */
.pilares-header { margin-bottom: var(--sp-12); }
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.pilar-card {
  padding: var(--sp-8) var(--sp-6);
  border-radius: var(--r-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: border-color var(--t-fast), transform var(--t-fast), background var(--t-fast);
}
.pilar-card:hover {
  border-color: var(--color-copper);
  transform: translateY(-4px);
  background: var(--color-surface-2);
}
.pilar-icon {
  width: 52px; height: 52px;
  color: var(--color-copper);
  margin-bottom: var(--sp-6);
}
.pilar-icon svg { width: 100%; height: 100%; }
.pilar-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--sp-3);
  letter-spacing: 0.02em;
}
.pilar-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; text-align: justify; }

/* ── AREAS DE SERVICIO ──────────────────────────────────── */
.areas { background: var(--color-surface); }
.areas-header { margin-bottom: var(--sp-12); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.area-card {
  padding: var(--sp-8) var(--sp-6);
  border-radius: var(--r-lg);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.area-card:hover { border-color: var(--color-copper); transform: translateY(-3px); }
.area-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--color-copper);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.area-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: var(--sp-3);
  text-transform: uppercase;
}
.area-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; text-align: justify; }

/* ── PROYECTOS MINEROS ──────────────────────────────────── */
.proyectos-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-12);
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.proyectos-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--color-border);
}
.proyectos-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.proyectos-table thead {
  background: var(--color-surface-3);
  border-bottom: 1px solid var(--color-border-light);
}
.proyectos-table th {
  padding: var(--sp-4) var(--sp-5);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-copper);
  text-align: left;
  white-space: nowrap;
}
.proyectos-table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--t-fast);
}
.proyectos-table tbody tr:last-child { border-bottom: none; }
.proyectos-table tbody tr:hover { background: var(--color-surface); }
.proyectos-table td {
  padding: var(--sp-4) var(--sp-5);
  color: var(--color-text-muted);
  line-height: 1.5;
}
.proyectos-table td:first-child {
  font-weight: 600;
  color: var(--color-text);
}
.stage-badge {
  display: inline-block;
  padding: 2px var(--sp-3);
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.stage-produccion { background: rgba(201,122,58,0.15); color: var(--color-copper); }
.stage-desarrollo  { background: rgba(50,130,200,0.12); color: #5A9EC8; }
.stage-factibilidad { background: rgba(80,180,120,0.12); color: #5AB87C; }

/* ── MONETIZACION ───────────────────────────────────────── */
.monetizacion { background: var(--color-surface); }
.monetizacion-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(var(--sp-12), 6vw, var(--sp-24));
  align-items: start;
}
.monetizacion-highlight {
  position: sticky;
  top: 100px;
  text-align: center;
  padding: var(--sp-12) var(--sp-8);
  border: 1px solid var(--color-copper);
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(201,122,58,0.08) 0%, transparent 60%);
}
.pct-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  color: var(--color-copper);
  line-height: 1;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.04em;
}
.pct-label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-6);
  display: block;
}
.pct-desc { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; }
.pct-example {
  margin-top: var(--sp-8);
  padding: var(--sp-5) var(--sp-6);
  border-radius: var(--r-md);
  background: var(--color-surface-3);
  border: 1px solid var(--color-border);
  text-align: left;
}
.pct-example-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--sp-3);
}
.pct-example strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-copper);
  margin-bottom: var(--sp-1);
}
.pct-example span { font-size: var(--text-xs); color: var(--color-text-muted); }

.servicios-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-top: var(--sp-4);
}
.servicio-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-5);
  border-radius: var(--r-md);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  transition: border-color var(--t-fast);
}
.servicio-item:hover { border-color: var(--color-copper); }
.servicio-icon {
  width: 36px; height: 36px;
  color: var(--color-copper);
  flex-shrink: 0;
  margin-top: 2px;
}
.servicio-icon svg { width: 100%; height: 100%; }
.servicio-item h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: var(--sp-1);
  text-transform: uppercase;
}
.servicio-item p { font-size: var(--text-xs); color: var(--color-text-muted); line-height: 1.6; text-align: justify; }

/* ── FULLBLEED ──────────────────────────────────────────── */
.fullbleed-section {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}
.fullbleed-section img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.6) brightness(0.5);
}
.fullbleed-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, rgba(10,9,8,0.7) 0%, transparent 60%);
  padding: 0 var(--sp-6);
}
.fullbleed-quote {
  max-width: 620px;
  padding-left: clamp(var(--sp-8), 8vw, var(--sp-24));
}
.fullbleed-quote p {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: var(--sp-4);
  max-width: none;
}
.fullbleed-quote cite {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-copper);
  font-style: normal;
}

/* ── EQUIPO ─────────────────────────────────────────────── */
.equipo-header { margin-bottom: var(--sp-12); }
.equipo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.equipo-card {
  padding: var(--sp-8) var(--sp-6);
  border-radius: var(--r-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.equipo-card:hover { border-color: var(--color-copper); transform: translateY(-4px); }
.equipo-card.feature { border-color: var(--color-copper); background: linear-gradient(135deg, rgba(201,122,58,0.06) 0%, var(--color-surface) 60%); }
.equipo-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--color-surface-3);
  border: 2px solid var(--color-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-copper);
}
.equipo-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--sp-1);
  letter-spacing: 0.02em;
}
.equipo-role {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: var(--sp-5);
}
.equipo-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; text-align: justify; }
.equipo-contact {
  margin-top: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.equipo-contact a {
  font-size: var(--text-xs);
  color: var(--color-copper);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.equipo-contact a:hover { color: var(--color-copper-light); }

/* ── CTA / CONTACTO ─────────────────────────────────────── */
.cta-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.cta-inner {
  max-width: var(--w-default);
  margin: 0 auto;
}
.cta-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: var(--sp-5);
  line-height: 1.05;
}
.cta-sub { font-size: var(--text-base); color: var(--color-text-muted); margin-bottom: var(--sp-10); max-width: 52ch; line-height: 1.7; }
.cta-form { display: flex; flex-direction: column; gap: var(--sp-5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-group label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.form-group input,
.form-group textarea {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: var(--text-base);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-faint); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-copper);
  box-shadow: 0 0 0 3px rgba(201,122,58,0.15);
}
.form-group textarea { min-height: 120px; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding-top: clamp(var(--sp-16), 6vw, var(--sp-24));
}
.footer-inner {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(var(--sp-12), 6vw, var(--sp-24));
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid var(--color-border);
}
.footer-logo-svg { height: 40px; width: auto; color: var(--color-text); margin-bottom: var(--sp-5); }
.footer-tagline { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6; }
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-5);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a, .footer-col span {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--color-copper); }
.footer-bottom {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--sp-6) var(--sp-6);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.06em;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before { display: none; }
  .pilares-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .sobre-grid { grid-template-columns: 1fr; }
  .monetizacion-inner { grid-template-columns: 1fr; }
  .monetizacion-highlight { position: static; }
  .equipo-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--sp-10); }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-main { display: none; }
  .menu-toggle { display: flex; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .pilares-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .proyectos-header { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.8rem, 9vw, 5rem); }
  .hero-scroll-hint { display: none; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; gap: var(--sp-6); padding: var(--sp-8) var(--sp-6); }
  .footer-nav { grid-template-columns: 1fr; }
}

/* ── VECTOR DE ENTRADA ───────────────────────────────── */
.vector { background: var(--color-surface); }
.vector-header { text-align: center; margin-bottom: var(--sp-12); }
.vector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.vector-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-copper);
  border-radius: 4px;
  padding: var(--sp-8) var(--sp-6);
  transition: border-color .25s, transform .25s;
}
.vector-card:hover {
  border-top-color: var(--color-copper-light);
  transform: translateY(-3px);
}
.vector-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-copper);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}
.vector-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--sp-3);
}
.vector-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-muted);
  text-align: justify;
}

/* ── CASOS DE USO ─────────────────────────────────────── */
.casos { background: var(--color-bg); }
.casos-header { text-align: center; margin-bottom: var(--sp-10); }
.casos-table-wrap { overflow-x: auto; }

/* ── RESPONSIVE NUEVAS SECCIONES ─────────────────────── */
@media (max-width: 1000px) {
  .vector-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
}
@media (max-width: 720px) {
  .vector-grid { grid-template-columns: 1fr; }
}
