/* ---------------------------------------------------------------------------
   landing.css — dark hero with systemic loop SVG + scroll into CTA.
   Overrides base.css's light theme for this page only.
--------------------------------------------------------------------------- */

body {
  background: #0B1120;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  font-family: 'DM Sans', 'Montserrat', sans-serif;
  overflow-x: hidden;
  color: #fff;
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr minmax(0, 600px);
  align-items: center;
  gap: 40px;
  max-width: 1280px;
  width: 100%;
  padding: 0 40px;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* Keep CTA above the fixed mycelium canvas */
.cta-section {
  z-index: 1;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  color: #E8EDF4;
  letter-spacing: -0.3px;
}

.hero-subtitle {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  color: #8A9BB5;
}

/* ─── SVG LOOP CONTAINER ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  max-width: 600px;
}

svg text {
  font-family: 'DM Sans', sans-serif;
}

/* ─── CAROUSEL DOTS ──────────────────────────────────────────────────────── */
.dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1E2D42;
  transition: background 0.38s ease, transform 0.38s ease;
  cursor: pointer;
}

.dot.active {
  transform: scale(1.3);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
/* El hero pasa a 1 columna (texto primero por orden de DOM, loop después) y se
   acota el tamaño del SVG para que no domine la pantalla. */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 72px 20px 48px;
    min-height: auto;
  }
  .hero-title { font-size: 30px; }
  .hero-subtitle { font-size: 17px; }
  .container { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 26px; }
  .hero-subtitle { font-size: 16px; }
  .container { max-width: 300px; }
}
