@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px) scale(0.96); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

:root {
  --bg: oklch(0.16 0.02 250);
  --bg-alt: oklch(0.13 0.02 250);
  --bg-card: oklch(0.19 0.02 250);
  --border: oklch(0.28 0.02 250);
  --border-soft: oklch(0.26 0.02 250);
  --border-input: oklch(0.3 0.02 250);
  --text: oklch(0.97 0.005 250);
  --text-soft: oklch(0.95 0.005 250);
  --text-muted: oklch(0.9 0.005 250);
  --text-dim: oklch(0.72 0.02 250);
  --text-dim2: oklch(0.7 0.02 250);
  --text-dim3: oklch(0.68 0.02 250);
  --text-dim4: oklch(0.65 0.02 250);
  --text-dim5: oklch(0.62 0.02 250);
  --text-dim6: oklch(0.6 0.02 250);
  --text-dim7: oklch(0.55 0.02 250);
  --text-dim8: oklch(0.5 0.02 250);
  --accent: oklch(0.83 0.16 195);
  --accent-hover: oklch(0.9 0.13 195);
  --accent-ink: oklch(0.14 0.02 250);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--accent-ink); }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

input, textarea, button { font-family: inherit; }
input::placeholder, textarea::placeholder { color: oklch(0.5 0.02 250); }

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

.page {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  background: var(--bg);
}

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding: 14px 40px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.is-scrolled {
  background: oklch(0.16 0.02 250 / 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-brand img { width: 56px; height: 56px; object-fit: contain; }
.nav-brand span { font-weight: 800; font-size: 26px; letter-spacing: -0.02em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  row-gap: 12px;
}
.nav-links a.nav-link { font-size: 15px; font-weight: 600; color: var(--text-muted); }
.lang-toggle {
  display: flex;
  gap: 2px;
  background: oklch(0.22 0.02 250);
  border-radius: 100px;
  padding: 3px;
}
.lang-toggle button {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--text-dim2);
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-toggle button.active {
  background: var(--accent);
  color: var(--accent-ink);
}
.nav-cta {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h, 96px) + 64px) 24px 64px;
  text-align: center;
}
.hero-text {
  position: relative;
  animation: fadeInUp 1.2s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-kicker {
  font-size: 14px; font-weight: 700; letter-spacing: 0.16em;
  color: var(--accent); margin: 0 0 20px;
}
.hero h1 {
  font-size: clamp(36px, 7vw, 84px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.02;
  margin: 0 0 24px; max-width: 900px;
}
.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.5;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: var(--accent-ink);
  padding: 16px 32px; border-radius: 100px; font-size: 16px; font-weight: 700;
}
.btn-secondary {
  border: 1px solid oklch(0.4 0.02 250); color: var(--text-soft);
  padding: 16px 32px; border-radius: 100px; font-size: 16px; font-weight: 700;
}

/* Reveal utility */
.reveal {
  opacity: 0;
  filter: blur(6px);
  transition: opacity 1.1s cubic-bezier(0.16,1,0.3,1), transform 1.1s cubic-bezier(0.16,1,0.3,1), filter 1.1s ease;
}
.reveal.is-visible { opacity: 1; filter: blur(0); transform: none; }
.reveal--section { transform: translateY(60px) scale(0.97); }
.reveal--section-lg { transform: translateY(70px) scale(0.94); }
.reveal--card { transform: translateY(40px) scale(0.92); }
.reveal--photo { transform: translateY(40px) scale(0.9); }
.reveal--left { transform: translate(-90px,50px) scale(0.92) rotate(-3deg); }
.reveal--right { transform: translate(90px,50px) scale(0.92) rotate(3deg); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-text, .adn-track .adn-session, .adn-stage-head { transition: none !important; animation: none !important; opacity: 1 !important; filter: none !important; transform: none !important; }
  * { animation-duration: 0.001ms !important; }
}

/* Metodo */
.metodo { position: relative; padding: 120px 24px 40px; }
.metodo-head { max-width: 1200px; margin: 0 auto 100px; }
.section-kicker { font-size: 14px; font-weight: 700; letter-spacing: 0.16em; color: var(--accent); margin: 0 0 12px; }
.metodo-head h2 { font-size: clamp(32px, 4vw, 56px); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 20px; max-width: 760px; }
.metodo-head p:not(.section-kicker) { font-size: clamp(16px, 1.6vw, 19px); color: var(--text-dim6); max-width: 640px; margin: 0; }

.pasos { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 80px; }
.paso {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.paso.imgFirst .paso-text { order: 2; }
.paso.imgFirst .paso-img { order: 1; }
.paso-letter {
  font-size: clamp(70px, 10vw, 160px);
  font-weight: 800; line-height: 1; display: block; margin: 0 0 12px;
}
.paso-text h3 { font-size: clamp(28px, 3.2vw, 44px); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 20px; }
.paso-text p { font-size: 17px; line-height: 1.7; color: var(--text-dim2); max-width: 480px; margin: 0; }
.paso-img { display: flex; justify-content: center; }
.visual-outer { position: relative; width: 100%; max-width: 420px; aspect-ratio: 4 / 3; perspective: 900px; }
.visual-inner {
  position: relative; width: 100%; height: 100%; border-radius: 24px;
  border: 1px solid oklch(0.3 0.02 250);
  transform: rotateY(-8deg) rotateX(6deg);
  transform-style: preserve-3d;
  overflow: hidden;
}
.visual-inner.hue-195 { background: radial-gradient(circle at 30% 20%, oklch(0.24 0.03 195 / 0.7), oklch(0.18 0.02 250)); }
.visual-inner.hue-265 { background: radial-gradient(circle at 30% 20%, oklch(0.24 0.03 265 / 0.7), oklch(0.18 0.02 250)); }
.visual-inner.hue-150 { background: radial-gradient(circle at 30% 20%, oklch(0.24 0.03 150 / 0.7), oklch(0.18 0.02 250)); }

.shape { position: absolute; animation: floatY ease-in-out infinite; }
.shape-bar-195 { background: linear-gradient(135deg, oklch(0.78 0.15 195), oklch(0.6 0.13 195)); box-shadow: 0 20px 40px -12px oklch(0.1 0.02 250 / 0.6); left: 50%; height: 56px; border-radius: 16px; }
.shape-bar-195.s0 { top: 58%; width: 220px; transform: translate(-50%,-50%) translateZ(0px); animation-duration: 4s; }
.shape-bar-195.s1 { top: 40%; width: 194px; transform: translate(-50%,-50%) translateZ(20px); animation-duration: 4.6s; animation-delay: 0.3s; }
.shape-bar-195.s2 { top: 22%; width: 168px; transform: translate(-50%,-50%) translateZ(40px); animation-duration: 5.2s; animation-delay: 0.6s; }

.shape-circle-265 { border-radius: 50%; mix-blend-mode: screen; transform: translate(-50%,-50%); }
.shape-circle-265.s0 { left: 38%; top: 44%; width: 150px; height: 150px; background: radial-gradient(circle at 35% 30%, oklch(0.85 0.14 265 / 0.85), oklch(0.4 0.1 265 / 0.3)); animation-duration: 5s; }
.shape-circle-265.s1 { left: 52%; top: 54%; width: 140px; height: 140px; background: radial-gradient(circle at 35% 30%, oklch(0.85 0.14 285 / 0.85), oklch(0.4 0.1 285 / 0.3)); animation-duration: 6s; animation-delay: 0.4s; }
.shape-circle-265.s2 { left: 66%; top: 44%; width: 130px; height: 130px; background: radial-gradient(circle at 35% 30%, oklch(0.85 0.14 305 / 0.85), oklch(0.4 0.1 305 / 0.3)); animation-duration: 7s; animation-delay: 0.8s; }

.shape-bar-150 { bottom: 20%; width: 34px; border-radius: 8px; background: linear-gradient(180deg, oklch(0.78 0.15 150), oklch(0.6 0.13 150)); box-shadow: 0 0 24px 0 oklch(0.7 0.15 150 / 0.5); }
.shape-bar-150.s0 { left: 22%; height: 60px; animation-duration: 3.4s; }
.shape-bar-150.s1 { left: 42%; height: 94px; animation-duration: 3.8s; animation-delay: 0.2s; }
.shape-bar-150.s2 { left: 62%; height: 128px; animation-duration: 4.2s; animation-delay: 0.4s; }
.shape-bar-150.s3 { left: 82%; height: 162px; animation-duration: 4.6s; animation-delay: 0.6s; }

/* Método ADN — resumen 3 columnas */
.adn-overview {
  max-width: 1160px;
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.adn-ov-card {
  display: block;
  width: 100%;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid var(--border);
  border-top: 3px solid var(--stage);
  border-radius: 18px;
  background: var(--bg-card);
  padding: 28px 26px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.adn-ov-card:hover { transform: translateY(-4px); border-color: var(--stage-border); }
.adn-ov-card:focus-visible { outline: none; border-color: var(--stage); }
.adn-ov-card.is-active {
  border-color: var(--stage);
  box-shadow: inset 0 0 0 1px var(--stage), 0 12px 34px -18px var(--stage);
  background: linear-gradient(180deg, var(--stage-soft), var(--bg-card) 55%);
}
.adn-ov-etapa { display: block; font-size: 12px; font-weight: 800; letter-spacing: 0.1em; color: var(--stage); }
.adn-ov-letter {
  display: block;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  color: var(--stage);
  margin: 8px 0 14px;
}
.adn-ov-name { display: block; font-size: clamp(22px, 2.6vw, 26px); font-weight: 800; letter-spacing: -0.01em; margin: 0 0 12px; color: var(--text); }
.adn-ov-desc { display: block; font-size: 16px; line-height: 1.6; color: var(--text-dim2); margin: 0 0 18px; }
.adn-ov-see {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--stage);
}
.adn-ov-see::after { content: '↓'; transition: transform 0.2s ease; }
.adn-ov-card.is-active .adn-ov-see::after { transform: translateY(2px); }
.adn-ov-card:not(.is-active) .adn-ov-see { color: var(--text-dim6); }

/* Método ADN — detalle de la etapa activa */
.adn-roadmap { max-width: 1160px; margin: 0 auto; }
.adn-detail-head {
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim6);
  margin: 0 0 40px;
}

.adn-entry {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  border: 1px solid var(--accent);
  border-radius: 20px;
  background: radial-gradient(circle at 50% 0%, oklch(0.83 0.16 195 / 0.12), oklch(0.19 0.02 250));
  padding: 30px 28px;
  margin-bottom: 52px;
}
.adn-entry:hover { border-color: var(--accent-hover); }
.adn-entry .cal-btn-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--accent); }
.adn-entry h3 { font-size: clamp(20px, 2.6vw, 24px); font-weight: 800; letter-spacing: -0.01em; margin: 4px 0 2px; color: var(--text); }
.adn-entry p { font-size: 15px; line-height: 1.55; color: var(--text-dim2); max-width: 520px; margin: 0 0 14px; }
.adn-entry-cta {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 12px 26px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
}

.adn-stage { display: none; }
.adn-stage.is-active { display: block; }
.adn-stage-head { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 28px; }
.adn-stage-letter {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--stage);
  background: var(--stage-soft);
  border: 1px solid var(--stage-border);
}
.adn-stage-meta { font-size: 13px; font-weight: 800; letter-spacing: 0.1em; color: var(--stage); margin: 4px 0 4px; }
.adn-stage-name { font-size: clamp(24px, 3vw, 30px); font-weight: 800; letter-spacing: -0.01em; margin: 0; }

.adn-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.adn-session {
  position: relative;
  border: 1px solid var(--border);
  border-left: 3px solid var(--stage);
  border-radius: 16px;
  background: var(--bg-card);
  padding: 26px 28px;
}
.adn-session-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--stage);
  background: var(--stage-soft);
  border-radius: 8px;
  padding: 3px 10px;
  margin: 0;
}
.adn-session-title { font-size: 21px; font-weight: 700; margin: 12px 0 10px; color: var(--text); }
.adn-ses-topics { font-size: 16px; line-height: 1.65; color: var(--text-dim); margin: 0 0 14px; }
.adn-ses-deliv { font-size: 16px; line-height: 1.55; color: var(--text-soft); margin: 0; }
.adn-deliv-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stage);
  border: 1px solid var(--stage-border);
  border-radius: 100px;
  padding: 3px 10px;
  margin-right: 8px;
  vertical-align: 1px;
}

/* Cascada de sub-etapas al activar cada etapa */
@keyframes adnSesIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.adn-stage.is-active .adn-stage-head { animation: adnSesIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both; }
.adn-stage.is-active .adn-session { animation: adnSesIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) both; }
.adn-stage.is-active .adn-session:nth-child(1) { animation-delay: 0.08s; }
.adn-stage.is-active .adn-session:nth-child(2) { animation-delay: 0.18s; }
.adn-stage.is-active .adn-session:nth-child(3) { animation-delay: 0.28s; }
.adn-stage.is-active .adn-session:nth-child(4) { animation-delay: 0.38s; }

.adn-note {
  max-width: 680px;
  margin: 44px auto 26px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dim7);
}
.adn-cta-wrap { text-align: center; }

/* Agenda */
.agenda { padding: 100px 24px 140px; }
.agenda-inner { max-width: 1160px; margin: 0 auto; }
.agenda-head { text-align: center; margin: 0 auto 56px; }
.agenda-head .section-kicker { text-align: center; }
.agenda-head h2 { font-size: clamp(30px, 3.6vw, 48px); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 16px; }
.agenda-head p:not(.section-kicker) { font-size: 16px; color: var(--text-dim4); max-width: 560px; margin: 0 auto; }

.session-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}

.session-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.2s ease;
}
.session-card:hover { border-color: oklch(0.36 0.02 250); }

.session-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
}
.cal-btn-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.session-meta {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim6);
  white-space: nowrap;
}
.session-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  line-height: 1.25;
}
.session-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dim2);
  margin: 0;
}
.session-full {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}
.session-card.is-expanded .session-full { display: block; }
.session-full p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-dim2);
  margin: 0 0 16px;
}
.session-full .session-bullets-label {
  font-weight: 700;
  color: var(--text-soft);
  margin: 0 0 10px;
}
.session-full ul {
  margin: 0 0 16px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.session-full li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-dim2);
}
.session-full .session-note {
  font-size: 13px;
  font-style: italic;
  color: var(--text-dim7);
}
.session-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: auto 0 16px;
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  cursor: pointer;
}
.session-toggle:hover { color: var(--accent-hover); }
.session-toggle::after {
  content: '↓';
  transition: transform 0.2s ease;
}
.session-card.is-expanded .session-toggle::after { transform: rotate(180deg); }

.cal-btn {
  display: block;
  width: 100%;
  cursor: pointer;
  text-align: center;
  border-radius: 100px;
  padding: 14px 24px;
  border: none;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cal-btn:hover, .cal-btn:focus-visible {
  background: var(--accent-hover);
  transform: translateY(-2px);
  outline: none;
}
.agenda-hint { font-size: 14px; color: var(--text-dim7); text-align: center; margin: 28px 0 0; }

/* Testimonio */
.testimonio {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.testimonio-inner { max-width: 880px; margin: 0 auto; padding: 120px 24px; text-align: center; }
.testimonio-inner svg { margin: 0 auto 32px; display: block; }
.testimonio-quote { font-size: clamp(22px, 3vw, 34px); font-weight: 600; line-height: 1.45; letter-spacing: -0.01em; margin: 0 0 32px; }
.testimonio-name { font-size: 17px; font-weight: 700; margin: 0; }
.testimonio-role { font-size: 15px; color: var(--text-dim6); margin: 4px 0 0; }

/* Instagram */
.insta { padding: 110px 24px 140px; }
.insta-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.insta-inner .section-kicker { text-align: center; }
.insta-inner h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 16px; }
.insta-inner p.insta-sub { font-size: 16px; color: var(--text-dim4); max-width: 520px; margin: 0 auto 40px; }
.insta-embed {
  margin: 0 auto 32px;
  border-radius: 16px;
  overflow: hidden;
}
.insta-cta {
  display: inline-block;
  border: 1px solid oklch(0.4 0.02 250);
  color: var(--text-soft);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
}

/* Apps / Descargas */
.apps { padding: 110px 24px 40px; }
.apps-inner { max-width: 1160px; margin: 0 auto; }
.apps-head { text-align: center; margin: 0 auto 56px; max-width: 820px; }
.apps-head .section-kicker { text-align: center; }
.apps-head h2 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; margin: 0 0 18px; }
.apps-head .apps-sub { font-size: 17px; color: var(--text-dim4); margin: 0; line-height: 1.5; }

.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}
.app-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-top: 3px solid var(--app);
  border-radius: 22px;
  background: var(--bg-card);
  padding: 32px 30px;
}
.app-head { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.app-icon {
  width: 88px; height: 88px;
  border-radius: 20px;
  flex-shrink: 0;
  border: 1px solid var(--app-border);
  object-fit: cover;
}
.app-name { font-size: clamp(24px, 3vw, 30px); font-weight: 800; letter-spacing: -0.01em; margin: 0 0 4px; }
.app-tagline { font-size: 15px; font-weight: 600; color: var(--app); margin: 0; line-height: 1.4; }
.app-desc { font-size: 16px; line-height: 1.6; color: var(--text-dim2); margin: 0 0 22px; }
.app-feat-label { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--app); margin: 0 0 12px; }
.app-features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-features li {
  position: relative;
  padding-left: 28px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-dim);
}
.app-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--app-soft);
  border: 1px solid var(--app-border);
}
.app-features li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--app);
}
.app-pro {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-soft);
  background: var(--app-soft);
  border: 1px solid var(--app-border);
  border-radius: 12px;
  padding: 12px 16px;
  margin: 0 0 16px;
}
.app-privacy { font-size: 13px; color: var(--text-dim6); margin: 0 0 22px; line-height: 1.5; }

.app-store-row { margin: auto 0 26px; padding-top: 12px; }
.store-badges { display: flex; flex-wrap: wrap; gap: 14px; }
.store-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid oklch(0.4 0.02 250);
  border-radius: 12px;
  padding: 9px 18px 9px 14px;
  background: oklch(0.12 0.02 250);
  color: var(--text-soft);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.store-badge.is-soon { cursor: not-allowed; }
.store-badge.is-soon .store-ico,
.store-badge.is-soon .store-badge-txt { opacity: 0.45; }
.store-badge.is-live { cursor: pointer; border-color: var(--app-border); }
.store-badge.is-live:hover, .store-badge.is-live:focus-visible {
  border-color: var(--app);
  transform: translateY(-2px);
  outline: none;
}
.store-flag {
  position: absolute;
  top: -10px;
  right: -6px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
}
.store-flag.is-live { background: var(--app); color: var(--accent-ink); }
.store-flag.is-soon { background: oklch(0.2 0.02 250); color: var(--text-dim6); border: 1px solid var(--border-input); }
.store-ico { width: 24px; height: 24px; fill: currentColor; flex-shrink: 0; }
.store-badge-txt { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-badge-txt small { font-size: 10px; font-weight: 500; color: var(--text-dim3); }
.store-badge-txt strong { font-size: 16px; font-weight: 700; }

.app-gallery {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 14px;
  margin: 0 -4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--app-border) transparent;
}
.app-gallery::-webkit-scrollbar { height: 8px; }
.app-gallery::-webkit-scrollbar-thumb { background: var(--app-border); border-radius: 100px; }
.app-gallery img {
  height: 380px;
  width: auto;
  flex-shrink: 0;
  border-radius: 18px;
  scroll-snap-align: start;
  border: 1px solid var(--border-soft);
}

/* Contacto */
.contacto { }
.contacto-inner {
  max-width: 1100px; margin: 0 auto; padding: 100px 24px 120px;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px;
}
.contacto-copy h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 24px; }
.contacto-copy p:not(.section-kicker) { font-size: 16px; color: var(--text-dim3); line-height: 1.6; margin: 0 0 36px; }
.contacto-details { display: flex; flex-direction: column; gap: 18px; }
.contacto-details a { font-size: 16px; color: var(--text-soft); font-weight: 600; }
.contacto-details span { font-size: 16px; color: var(--text-dim3); }

.contacto-form {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contacto-form input, .contacto-form textarea {
  background: var(--bg); border: 1px solid var(--border-input); border-radius: 10px;
  padding: 14px 16px; color: var(--text-soft); font-size: 15px; outline: none; width: 100%;
}
.contacto-form textarea { resize: vertical; }
.contacto-form input:focus, .contacto-form textarea:focus { border-color: var(--accent); }
.contacto-form button {
  margin-top: 8px; background: var(--accent); color: var(--accent-ink);
  border: none; padding: 16px; border-radius: 12px; font-size: 16px; font-weight: 700; cursor: pointer;
}
.contacto-form button:hover { background: var(--accent-hover); }

/* Footer */
footer.site-footer { border-top: 1px solid var(--border-soft); padding: 56px 24px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 48px; height: 48px; object-fit: contain; }
.footer-brand span { font-weight: 800; font-size: 22px; color: var(--accent); }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: var(--text-dim4); }
.footer-copy { max-width: 1200px; margin: 32px auto 0; font-size: 13px; color: var(--text-dim8); }

/* Legal page */
.legal-wrap { position: relative; width: 100%; min-height: 100vh; }
.legal-nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 40px; border-bottom: 1px solid var(--border-soft); }
.legal-nav .nav-brand span { color: var(--text); }
.legal-body { max-width: 760px; margin: 0 auto; padding: 80px 24px 120px; }
.legal-body h1 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 8px; }
.legal-body .legal-meta { font-size: 15px; color: var(--text-dim6); margin: 0 0 56px; }
.legal-body h2 { font-size: 24px; font-weight: 800; margin: 48px 0 16px; }
.legal-body h3 { font-size: 17px; font-weight: 700; margin: 28px 0 8px; }
.legal-body p:not(.section-kicker), .legal-body li { font-size: 16px; line-height: 1.7; color: oklch(0.75 0.015 250); }
.legal-body ul { line-height: 1.8; margin: 0; padding-left: 20px; }

/* Responsive */
@media (max-width: 900px) {
  .nav { padding: 14px 20px; }
  .paso { grid-template-columns: 1fr; gap: 32px; }
  .paso.imgFirst .paso-text, .paso.imgFirst .paso-img { order: initial; }
  .paso-img { order: -1; }
  .session-list { grid-template-columns: 1fr; }
  .adn-overview { grid-template-columns: 1fr; gap: 16px; margin-bottom: 56px; }
  .adn-track { grid-template-columns: 1fr; }
  .apps-grid { grid-template-columns: 1fr; gap: 20px; }
  .contacto-inner { grid-template-columns: 1fr; gap: 48px; padding: 80px 24px 100px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero { padding: calc(var(--nav-h, 190px) + 48px) 20px 48px; }
  .metodo { padding: 90px 20px 20px; }
  .session-card { padding: 24px; }
  .adn-ov-card { padding: 24px; }
  .adn-ov-letter { font-size: 52px; }
  .adn-stage-letter { width: 54px; height: 54px; font-size: 30px; }
  .adn-session { padding: 22px 22px; }
  .app-card { padding: 26px 22px; }
  .app-icon { width: 72px; height: 72px; border-radius: 16px; }
  .app-gallery img { height: 340px; }
  .nav-links { gap: 14px; }
  .nav-links a.nav-link { font-size: 14px; }
}
