/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #080C09;
  --bg-2:         #0C1110;
  --bg-card:      #111916;
  --bg-card-2:    #161F1A;
  --text:         #E8EBE8;
  --text-2:       #8A9A8D;
  --text-3:       #536057;
  --accent:       #4ADE80;
  --accent-hover: #6EE7A4;
  --border:       rgba(255, 255, 255, 0.07);
  --border-2:     rgba(255, 255, 255, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.17s; }
.reveal-d3 { transition-delay: 0.26s; }

/* ─── EYEBROW ─── */
.eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
}

/* ─── TYPOGRAPHY ─── */
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-body {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 0;
}

.section-body strong {
  color: var(--text);
  font-weight: 600;
}

/* ─── SECTION BASE ─── */
.section-full {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.section-inner {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
}

.section-header {
  margin-bottom: 48px;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  height: 60px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 12, 9, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.navbar.scrolled {
  background: rgba(8, 12, 9, 0.96);
}

.logo { display: flex; align-items: center; text-decoration: none; }

.navbar .logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 5px;
  padding: 2px 7px;
}

.navbar-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-link {
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }

/* ─── CTA BUTTON ─── */
.btn-cta {
  background: var(--accent);
  color: #000;
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.btn-cta-lg {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: 10px;
}

.btn-ghost {
  font-size: 14px;
  color: var(--text-2);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text); }

/* ─── HERO ─── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  background: var(--bg);
}

/* Background video */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg);
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5; /* Darken video so text is readable */
}

/* Bottom vignette and overlay for readability */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to bottom, transparent 60%, rgba(8, 12, 9, 0.95) 100%),
    radial-gradient(circle at center, transparent 30%, rgba(8, 12, 9, 0.4) 100%);
  pointer-events: none;
}

/* Centered headline block */
.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
  margin-top: -40px; /* optical balance accounting for navbar height */
}

.hero-eyebrow {
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s ease forwards;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(64px, 10.5vw, 128px);
  font-weight: 700;
  line-height: 0.97;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.7s 0.35s ease forwards;
}

.btn-cta-xl {
  padding: 16px 44px;
  font-size: 15px;
  border-radius: 10px;
  letter-spacing: 0.1px;
  opacity: 0;
  animation: fadeUp 0.6s 0.55s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Stats glass bar — pinned at bottom */
.hero-stats-glass {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  background: rgba(8, 12, 9, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  min-height: 76px;
}

.hero-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 18px 16px;
}

.hero-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}

.stat-label {
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  line-height: 1.4;
}

/* ─── ¿QUÉ ES GOFARMER? (intro) ─── */
.intro-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}

.intro-header { margin-bottom: 64px; max-width: 760px; }
.intro-header .section-body { max-width: 720px; font-size: 17px; }

.intro-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pillar {
  background: var(--bg);
  padding: 36px 32px 36px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.pillar:not(:first-child) { padding-left: 32px; }

.pillar-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.pillar-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.pillar-body {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ─── ONBOARDING ─── */
.onboarding-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}

.onboarding-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 72px;
  align-items: center;
}

.onboarding-text .section-body { margin-bottom: 28px; }

.onboarding-note {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 14px;
  margin-bottom: 40px;
  letter-spacing: 0.2px;
}

.onboarding-flow {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.flow-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.25);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.flow-text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}

/* Video placeholder */
.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.video-placeholder:hover .video-play-btn {
  border-color: var(--accent);
  background: rgba(74, 222, 128, 0.14);
  transform: scale(1.07);
}

.video-bg-shimmer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 40% 50%, rgba(74, 222, 128, 0.05) 0%, transparent 65%),
    radial-gradient(ellipse at 80% 20%, rgba(74, 222, 128, 0.03) 0%, transparent 50%),
    linear-gradient(160deg, #0C1410 0%, #080C09 60%, #0A0F0C 100%);
}

.video-center-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.video-play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1.5px solid rgba(74, 222, 128, 0.4);
  background: rgba(74, 222, 128, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.video-play-btn svg { margin-left: 4px; }

.video-label {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.2px;
}

.video-corner-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-3);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 8px;
  z-index: 1;
}

/* ─── EL PROBLEMA ─── */
.problem-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}

.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem-left { padding-top: 4px; }

.problem-questions {
  font-style: italic;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 2px solid var(--border-2);
}

.problem-closing {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.pain-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.pain-item {
  background: var(--bg-card);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background 0.2s;
}
.pain-item:hover { background: var(--bg-card-2); }

.pain-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.pain-title { font-weight: 600; font-size: 14px; color: var(--text); margin-bottom: 6px; }
.pain-body  { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ─── EL ECOSISTEMA ─── */
.ecosystem-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}

.ecosystem-header { margin-bottom: 48px; }

.products-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s;
}
.product-card:hover { border-color: var(--border-2); }

.product-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #08100A;
}

.product-img-hub {
  background: #0A0F0C;
}

.product-render {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.product-card:hover .product-render { transform: scale(1.04); }

.product-info { padding: 28px 28px 32px; }

.product-tag {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 10px;
}

.product-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.product-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 18px;
}

.product-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.product-specs li {
  font-size: 12px;
  color: var(--text-3);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.product-specs li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 11px;
}

/* ─── CÓMO FUNCIONA ─── */
.how-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.how-steps { display: flex; flex-direction: column; }

.step-row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step-row:first-child { border-top: 1px solid var(--border); }

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  min-width: 56px;
  opacity: 0.5;
  flex-shrink: 0;
  padding-top: 4px;
}

.step-text {}

.step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.step-body {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
}

.how-visual { position: sticky; top: 80px; }

.diagram-render {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #09120B;
}

.diagram-caption {
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ─── POR QUÉ GOFARMER ─── */
.why-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}

/* Editorial list — replaces the generic card grid */
.why-list {
  border-top: 1px solid var(--border);
}

.why-row {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 40px 48px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.why-row:hover { background: rgba(255, 255, 255, 0.015); }
.why-row:hover .why-row-title { color: var(--accent); }

.why-row-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  line-height: 1.3;
  transition: color 0.2s;
}

.why-row-body {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

.why-row-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  opacity: 0.7;
  letter-spacing: 0.3px;
}

/* Legacy check-row kept for potential reuse */
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.check-mark {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── EL EQUIPO ─── */
.team-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}

.team-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}

.team-photo-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-photo-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(8, 12, 9, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 5px 10px;
  backdrop-filter: blur(6px);
}

.team-text .section-body { font-size: 16px; max-width: 100%; margin-bottom: 32px; }

.team-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.team-list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.team-list-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.team-list-bio {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.45;
}

.team-list-role {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ─── HARDWARE ─── (alias of ecosystem-section) */
.hardware-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}

/* Plug & play callout */
.plug-play-callout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.05), rgba(74, 222, 128, 0.02));
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 32px 0 36px;
}

.pp-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.pp-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.pp-body {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

.pp-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  border-left: 1px solid rgba(74, 222, 128, 0.18);
  padding-left: 28px;
}

.pp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.pp-stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  line-height: 1;
}

.pp-stat-label {
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* ─── LAS 3 PLATAFORMAS ─── */
.layers-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}

.layers-section .section-header { margin-bottom: 48px; }

.layers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.layer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}
.layer-card:hover { border-color: var(--border-2); transform: translateY(-2px); }

.layer-card-featured {
  border-color: rgba(74, 222, 128, 0.18);
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.02), var(--bg-card) 30%);
}

.layer-visual {
  width: 100%;
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.layer-visual-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(74, 222, 128, 0.045) 0%, transparent 60%),
    linear-gradient(160deg, #0C1410 0%, #080C09 100%);
}
.layer-visual-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 28px 28px;
}

.layer-visual-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--accent);
}

.layer-visual-arrow {
  color: var(--accent);
  opacity: 0.6;
}

.layer-visual-tag {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-3);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 7px;
  z-index: 2;
}

/* Chart placeholder for web layer */
.layer-visual-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60%;
  padding: 0 8px;
}
.chart-bar {
  flex: 1;
  background: rgba(74, 222, 128, 0.18);
  border-radius: 2px 2px 0 0;
  min-height: 8px;
}
.chart-bar-active {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.3);
}

/* Grid placeholder for enterprise layer */
.layer-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  width: 60%;
  aspect-ratio: 1 / 1;
}
.grid-cell {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 3px;
}
.grid-cell-active {
  background: rgba(74, 222, 128, 0.22);
  border-color: rgba(74, 222, 128, 0.4);
}
.grid-cell-warn {
  background: rgba(251, 191, 36, 0.15);
  border-color: rgba(251, 191, 36, 0.3);
}

.layer-info { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }

.layer-tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 10px;
}

.layer-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.layer-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 18px;
}

.layer-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.layer-features li {
  font-size: 12px;
  color: var(--text-3);
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}
.layer-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 11px;
}

/* ─── INTELIGENCIA PRODUCTIVA ─── */
.intel-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}

.intel-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.intel-text .section-body { margin-bottom: 24px; }

.intel-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  color: var(--text);
  line-height: 1.55;
  padding: 20px 24px;
  border-left: 2px solid var(--accent);
  background: rgba(74, 222, 128, 0.03);
  border-radius: 0 8px 8px 0;
  font-style: italic;
}
.intel-quote strong { font-weight: 600; font-style: normal; color: var(--text); }

.intel-flywheel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.fw-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
}

.fw-row-result {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.07), rgba(74, 222, 128, 0.02));
  border-color: rgba(74, 222, 128, 0.25);
}

.fw-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.55;
  line-height: 1;
}
.fw-row-result .fw-num { opacity: 1; }

.fw-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.fw-desc {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.5;
}

.fw-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: 0.5;
  padding: 8px 0;
}

/* ─── VISIÓN ─── */
.vision-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}

.vision-content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.vision-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 28px;
}

.vision-body {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 40px;
}

.vision-statement {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}

.vision-highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.vision-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--accent);
  opacity: 0.4;
}

.vision-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.vision-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 24px;
}

.vision-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

.vision-stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.vision-stat-label {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.45;
}

/* ─── CONTROL REMOTO ─── */
.control-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}

.feature-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.feature-text .section-body { margin-bottom: 36px; }

.control-flow {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.control-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.control-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.55;
  line-height: 1;
}

.control-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.control-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}

/* Animation placeholder */
.anim-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anim-placeholder-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(74, 222, 128, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(74, 222, 128, 0.04) 0%, transparent 50%),
    linear-gradient(160deg, #0C1410 0%, #080C09 100%);
}
.anim-placeholder-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 40px 40px;
}

.anim-placeholder-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 32px;
}

.anim-phone-icon,
.anim-field-icon,
.anim-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.anim-phone-icon { color: var(--accent); }
.anim-field-icon { color: var(--text-2); }
.anim-arrow {
  color: var(--accent);
  opacity: 0.6;
  transform: rotate(90deg);
}

.anim-placeholder-content > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.anim-label {
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
  max-width: 260px;
}

.anim-corner-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-3);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 8px;
  z-index: 2;
}

/* ─── RIEGO DINÁMICO ─── */
.dynamic-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}

.dynamic-header {
  margin-bottom: 64px;
  max-width: 760px;
}

.dynamic-equation {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 64px;
}

.dyn-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.dyn-system {
  border-color: rgba(74, 222, 128, 0.25);
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.04), var(--bg-card));
}

.dyn-block-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
}

.dyn-block-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.dyn-system .dyn-block-val { color: var(--accent); }
.dyn-block-val-text { font-size: 24px; }

.dyn-block-sub {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.5;
  margin-top: 4px;
}

.dyn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: 0.5;
}

.dynamic-body {
  max-width: 820px;
}

.dynamic-body .section-body { margin-bottom: 24px; max-width: 100%; }

.dynamic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dyn-pill {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 999px;
  padding: 7px 14px;
  letter-spacing: 0.2px;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 0 0 0;
  justify-content: space-between;
}

.footer-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
}

.footer-cta-block {
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.footer-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 16px;
}

.footer-body {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--border);
  padding: 32px 80px;
  max-width: 100%;
}

.footer-logo-block {}
.footer .logo-img,
.footer-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 5px;
  padding: 2px 7px;
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-3);
}

.footer-copy {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 4px;
  opacity: 0.7;
}

.footer-info {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: var(--text-3);
}

.footer-link {
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--accent); }

.footer-sep { opacity: 0.4; }
.footer-text { color: var(--text-3); }

/* ─── LATERAL NAV INDICATOR ─── */
.section-nav {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100vh;
  background: rgba(8, 12, 9, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 49;
}
.nav-overlay.visible { opacity: 1; }

.section-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nav-bar {
  display: block;
  width: 2px;
  height: 18px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  transition: height 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s;
}
.section-nav-item:hover .nav-bar        { background: rgba(255, 255, 255, 0.35); }
.section-nav-item.active .nav-bar       { background: var(--accent); height: 28px; }
.section-nav-item.active:hover .nav-bar { background: var(--accent-hover); }

.nav-label {
  position: absolute;
  left: 14px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.18s;
  letter-spacing: 0.02em;
}
.section-nav:hover .nav-label,
.section-nav.expanded .nav-label { opacity: 1; }

/* ─── UNIVERSAL Y EXPANSIBLE ─── */
.universal-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}
.universal-section .section-header { margin-bottom: 56px; max-width: 760px; }

.universal-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.universal-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: border-color 0.25s;
}
.universal-block:hover { border-color: var(--border-2); }

.ub-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}

.ub-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  padding-top: 4px;
}

.ub-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.ub-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* Crops showcase */
.crops-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.crop-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 16px 9px 12px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  transition: all 0.2s;
}
.crop-pill:hover {
  border-color: rgba(74, 222, 128, 0.3);
  background: rgba(74, 222, 128, 0.04);
}
.crop-emoji { font-size: 16px; line-height: 1; }
.crop-pill-more {
  background: rgba(74, 222, 128, 0.08);
  border-color: rgba(74, 222, 128, 0.25);
  color: var(--accent);
  font-weight: 600;
}

/* Sensor track */
.sensor-track {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.sensor-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.sensor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-3);
}
.sensor-item-active .sensor-dot {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.12);
}

.sensor-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.sensor-item-future .sensor-name { color: var(--text-2); }

.sensor-status {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.4;
}

.sensor-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-3);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 8px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}
.sensor-badge-active {
  color: var(--accent);
  background: rgba(74, 222, 128, 0.08);
  border-color: rgba(74, 222, 128, 0.25);
}

/* Placeholder note (creative descriptive placeholder) */
.placeholder-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  background: rgba(74, 222, 128, 0.025);
  border: 1px dashed rgba(74, 222, 128, 0.18);
  border-radius: 8px;
  margin-top: auto;
}

.ph-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 5px;
  position: relative;
  flex-shrink: 0;
}
.ph-pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(74, 222, 128, 0.4);
  animation: ph-pulse 2.4s ease-out infinite;
}
@keyframes ph-pulse {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.ph-text {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.55;
}
.ph-text strong { color: var(--accent); font-weight: 600; }

/* ─── PRICING ─── */
.pricing-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}
.pricing-section .section-header { margin-bottom: 48px; max-width: 760px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.pricing-card:hover { border-color: var(--border-2); transform: translateY(-2px); }

.pricing-card-featured {
  border-color: rgba(74, 222, 128, 0.25);
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.04), var(--bg-card) 30%);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}

.pricing-tier {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.pricing-tagline {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 24px;
}

.pricing-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.pricing-card-featured .price-amount { color: var(--accent); }

.price-detail {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.5px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-features li {
  font-size: 13px;
  color: var(--text-2);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.feat-bonus {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}
.feat-bonus::before { content: '★' !important; }

.btn-tier {
  display: block;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}
.btn-tier:hover {
  border-color: var(--accent);
  background: rgba(74, 222, 128, 0.05);
}
.btn-tier-primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.btn-tier-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #000;
}

.pricing-disclaimer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 18px 22px;
}

.pd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 5px;
  flex-shrink: 0;
  opacity: 0.7;
}

.pd-text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}
.pd-text strong { color: var(--text); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .section-inner { padding: 0 48px; }
  .hero-content  { padding: 64px 48px 56px 48px; }
  .hero-stats-bar { padding: 0; }
  .footer-main   { padding: 64px 48px; }
  .footer-bottom { padding: 28px 48px; }
}

@media (max-width: 768px) {
  /* ── Native scroll-snap for mobile section transitions ── */
  html {
    scroll-snap-type: y mandatory;   /* snap after every swipe */
    scroll-padding-top: 52px;        /* account for fixed navbar — keeps snap aligned with goTo() */
    overflow-y: scroll;              /* html is the scroll container */
  }
  .section-full {
    scroll-snap-align: start;        /* snap to top of each section */
    min-height: auto;
  }

  .section-inner { padding: 0 24px; }

  /* Navbar */
  .navbar { padding: 0 20px; height: 52px; }
  .navbar-links { display: none; }

  /* Hero */
  .hero-section {
    min-height: 100svh;        /* full safe viewport — handles iOS browser chrome */
    padding-top: 52px;         /* clear fixed navbar */
    justify-content: flex-start;
  }
  .hero-anim-tag { display: none; }  /* hidden on mobile — overlaps title */
  .hero-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 28px 24px 24px;
    margin-top: 0;             /* remove desktop optical offset */
  }
  .hero-eyebrow { margin-bottom: 16px; font-size: 10px; }
  .hero-title { font-size: clamp(44px, 12vw, 68px); line-height: 1.0; margin-bottom: 32px; }
  .btn-cta-xl { padding: 14px 32px; font-size: 15px; width: 100%; text-align: center; }
  .hero-stats-glass { position: static; flex-wrap: wrap; margin-top: 0; width: 100%; }
  .hero-stat-item { min-width: 50%; padding: 14px 16px; align-items: flex-start; }
  .hero-stat-divider { display: none; }
  .stat-val { font-size: 18px; }

  /* ¿Qué es? */
  .intro-header { max-width: 100%; margin-bottom: 40px; }
  .intro-header .section-body { font-size: 15px; max-width: 100%; }
  .section-title { font-size: clamp(26px, 7.5vw, 38px); }

  /* Why list */
  .why-row { grid-template-columns: 1fr; gap: 6px; }
  .why-row-tag { display: none; }

  /* Sections */
  .problem-section,
  .ecosystem-section,
  .hardware-section,
  .intro-section,
  .how-section,
  .why-section,
  .team-section,
  .control-section,
  .layers-section,
  .dynamic-section,
  .intel-section,
  .vision-section,
  .universal-section,
  .pricing-section { padding: 72px 0; }

  .universal-split { grid-template-columns: 1fr; }
  .universal-block { padding: 24px; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px 24px; }

  /* Plug-and-play callout */
  .plug-play-callout { grid-template-columns: 1fr; gap: 18px; padding: 22px; }
  .pp-stats { border-left: none; border-top: 1px solid rgba(74, 222, 128, 0.15); padding-left: 0; padding-top: 16px; justify-content: space-between; }

  /* Layers */
  .layers-grid { grid-template-columns: 1fr; }

  /* Intel */
  .intel-layout { grid-template-columns: 1fr; gap: 40px; }

  /* Vision */
  .vision-stats { flex-direction: column; gap: 20px; padding: 24px 0; }
  .vision-stat-divider { width: 40px; height: 1px; }

  .intro-pillars { grid-template-columns: 1fr; }
  .pillar { padding: 28px 0; border-bottom: 1px solid var(--border); }
  .pillar:not(:first-child) { padding-left: 0; }

  .team-layout { grid-template-columns: 1fr; gap: 32px; }
  .team-photo-wrap { aspect-ratio: 4 / 3; }

  .feature-layout { grid-template-columns: 1fr; gap: 40px; }
  .anim-placeholder { aspect-ratio: 4 / 3; }

  .dynamic-equation { grid-template-columns: 1fr; gap: 16px; }
  .dyn-arrow { transform: rotate(90deg); padding: 4px 0; }
  .dyn-block-val { font-size: 32px; }

  .onboarding-layout { grid-template-columns: 1fr; gap: 40px; }
  .onboarding-section { padding: 72px 0; }
  .video-placeholder { aspect-ratio: 16 / 9; }

  .problem-layout { grid-template-columns: 1fr; gap: 40px; }

  .products-showcase,
  .how-grid { grid-template-columns: 1fr; gap: 40px; }

  .how-visual { position: static; }

  .why-grid   { grid-template-columns: 1fr; }
  .why-checks { grid-template-columns: 1fr; }

  .team-grid  { grid-template-columns: 1fr; }
  .team-meta  { flex-direction: column; gap: 24px; padding-top: 28px; }
  .team-meta-item { padding: 0 !important; }
  .team-meta-divider { width: 40px; height: 1px; }

  /* Footer */
  .footer-main   { padding: 64px 24px; }
  .footer-bottom { flex-direction: column; gap: 20px; align-items: flex-start; padding: 24px 24px; }
  .footer-info   { flex-wrap: wrap; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal      { opacity: 1; transform: none; transition: none; }
  .hero-q      { opacity: 1; transform: none; animation: none; }
}
