/* Travel Tribus – estética tipo wecamp: limpia, naturaleza, responsive */

:root {
  --bg: #f8f7f4;
  --bg-alt: #eeece6;
  --text: #1a1a1a;
  --text-muted: #5a5a52;
  --accent: #2d6a4f;
  --accent-light: #40916c;
  --accent-soft: rgba(45, 106, 79, 0.12);
  --white: #fff;
  --border: #e0ddd6;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.1);
  /* Ancho unificado de bloques de contenido (home y páginas principales) */
  --layout-max: 1200px;
  /* Móvil: columna de lectura más estrecha, misma medida en todas las secciones */
  --layout-mobile-max: 32rem;
  /* Espacio vertical uniforme en bloques landing-panel--stack (Real, One, Trust, FAQ…) */
  --landing-stack-pad-y: clamp(3rem, 8vw, 5.5rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}
.logo-img {
  display: block;
  height: 64px;
  width: auto;
  object-fit: contain;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  transition: color 0.2s, opacity 0.2s;
}

.nav a:hover {
  color: rgba(255,255,255,0.85);
}

.header-call {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  background: #2d6a4f;
  color: #fff;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  flex-shrink: 0;
}
.header-call:hover {
  background: #40916c;
  color: #fff;
  transform: translateY(-1px);
}

/* Header: CTAs (Book a demo / Get Started) */
.header-ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.55rem 1rem;
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  flex-shrink: 0;
  white-space: nowrap;
}
.header-cta:not(.header-cta-secondary):hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: #fff;
  transform: translateY(-1px);
}

/* Get Started: invertido — borde verde, fondo negro, texto verde (FAQ) */
.header-cta-secondary {
  background: #0a0a0a;
  color: var(--accent);
  border-color: var(--accent);
}
.header-cta-secondary:hover {
  background: #141414;
  color: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-1px);
}

/* Header: Platform dropdown */
.nav-platform {
  position: relative;
}
.nav-platform-toggle {
  appearance: none;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}
.nav-platform-toggle:hover {
  color: rgba(255,255,255,0.85);
}

.nav-platform-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 260px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  display: none;
  z-index: 250;
}
.nav-platform-dropdown.is-open {
  display: block;
}

.nav-platform-section-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
  margin: 0.65rem 0 0.35rem;
}
.nav-platform-dropdown .nav-platform-section-title:first-child {
  margin-top: 0;
}

.nav-platform-dropdown a {
  color: #fff;
  display: block;
  padding: 0.35rem 0;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s, opacity 0.2s;
}
.nav-platform-dropdown a:hover {
  color: var(--accent-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

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

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

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

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 1.5rem;
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.5rem 0;
    font-size: 1rem;
  }

  .header-right {
    margin-left: auto;
    gap: 0.75rem;
  }

  .header-call {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
  }

  .nav-toggle {
    display: flex;
  }

  .header-ctas {
    margin-left: auto;
    gap: 0.5rem;
  }

  /* On mobile, dropdown should flow in the column (no absolute overlay) */
  .nav-platform-dropdown {
    position: static;
    min-width: 100%;
    margin-top: 0.5rem;
    padding: 0.25rem 0 0.5rem;
    background: transparent;
    border: none;
    display: none;
  }
  .nav-platform-dropdown.is-open {
    display: block;
  }
  .nav-platform-toggle {
    width: 100%;
    text-align: left;
    padding: 0.25rem 0;
  }
}

/* —— Landing: cada sección ≈ un viewport (referencia 1920×1080 / 16:9) —— */
.landing-main {
  width: 100%;
}

.landing-panel {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100dvh;
  scroll-margin-top: 88px;
}

.landing-panel--stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding-top: var(--landing-stack-pad-y);
  padding-bottom: var(--landing-stack-pad-y);
}

.landing-panel__content {
  width: 100%;
  flex: 0 1 auto;
}

.hero.landing-panel--hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding-block: 0;
}

.landing-panel.section {
  padding-top: 0;
  padding-bottom: 0;
}

.landing-panel--stack .split-section {
  margin-bottom: clamp(1rem, 3vw, 1.75rem);
}

.landing-panel .platform-section {
  margin-top: 0;
}

.platform-spotlight.landing-panel--request {
  margin-top: 0;
  min-height: 100vh;
  min-height: 100dvh;
}

.platform-spotlight.landing-panel--request .platform-spotlight-frame {
  min-height: 100vh;
  min-height: 100dvh;
}

.pricing-section.landing-panel .landing-panel__content {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

.pricing-lead {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.pricing-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-link:hover {
  color: var(--accent-light);
}

/* ONE — one platform, every stakeholder (3 pillars) */
.one-section {
  scroll-margin-top: 90px;
}

/* Aire extra al inicio de la sección (título + lead) */
.one-section.landing-panel--stack {
  padding-top: calc(var(--landing-stack-pad-y) + clamp(1rem, 3vw, 2.5rem));
}

.one-header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 2.5rem;
}

.one-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 1rem;
}

.one-lead {
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.one-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .one-pillars {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.one-pillar {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  scroll-margin-top: 88px;
}

@media (prefers-reduced-motion: no-preference) {
  .one-pillar {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }

  .one-pillar.one-pillar--inview {
    opacity: 1;
    transform: translateY(0);
  }
}

.one-pillar-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.one-pillar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.one-pillar-visual--organisers {
  background: linear-gradient(145deg, rgba(45, 106, 79, 0.18), rgba(238, 236, 230, 0.95));
}

.one-pillar-visual--tribus {
  background: linear-gradient(145deg, rgba(64, 145, 108, 0.15), rgba(248, 247, 244, 1));
}

.one-pillar-visual--brands {
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.08), rgba(45, 106, 79, 0.12));
}

.one-pillar-stat {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

.one-pillar-audience {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 0.65rem;
  color: var(--text);
  line-height: 1.25;
}

.one-pillar-desc {
  font-size: 0.94rem;
  line-height: 1.62;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  flex: 1 1 auto;
}

.one-pillar-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}

.one-pillar .one-pillar-cta-primary {
  font-size: 0.88rem;
  padding: 0.7rem 1.25rem;
}

.one-pillar-cta-secondary {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.one-pillar-cta-secondary:hover {
  color: var(--accent-light);
}

@media (max-width: 768px) {
  .one-header {
    margin-bottom: 2rem;
  }

  .one-pillar {
    padding: 1.15rem;
  }
}

/* Hero (static image background — no video) */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #000000;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.22) 45%,
    rgba(0, 0, 0, 0.5) 100%
  );
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
}
.hero-container {
  position: relative;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* Hero “Events.” → “Community.” swap */
.hero-title-dynamic {
  display: inline;
  white-space: nowrap;
}
.hero-title-word {
  display: inline;
  transition: opacity 0.38s ease;
  opacity: 1;
}
.hero-title-word--out {
  opacity: 0;
}
.hero-title-cursor {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  margin-left: 2px;
  vertical-align: -0.06em;
  background: rgba(255, 255, 255, 0.85);
  animation: hero-cursor-blink 0.85s step-end infinite;
}
.hero-title-cursor--off {
  display: none;
}
@keyframes hero-cursor-blink {
  50% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-title-word { transition-duration: 0.22s; }
  .hero-title-cursor { animation: none; opacity: 0.7; }
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.95);
  max-width: 560px;
  margin: 0 auto 2rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-1px);
}

/* Latido suave solo en “Explore the Platform” (hero) */
@keyframes explore-pulse {
  0%, 100% { transform: scale(1); }
  12% { transform: scale(1.045); }
  24% { transform: scale(1); }
  36% { transform: scale(1.03); }
  48% { transform: scale(1); }
}
.btn-explore-pulse {
  animation: explore-pulse 2.5s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}
.btn-explore-pulse:hover {
  animation: none;
  transform: translateY(-1px);
}
@media (prefers-reduced-motion: reduce) {
  .btn-explore-pulse {
    animation: none;
  }
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent-soft);
  border-color: var(--accent-light);
  color: var(--accent);
}

/* Value statement – mismo espacio vertical que el resto vía .landing-panel--stack */
.value-statement {
  background: #fff;
  color: #1a1a1a;
  padding: 0;
  text-align: center;
}
.value-statement-inner {
  max-width: 900px;
  margin: 0 auto;
}
.value-statement-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.85rem, 5vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 clamp(1.5rem, 4vw, 2.35rem);
  color: #1a1a1a;
}
.value-statement-lead {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 2.1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.72;
  color: #333;
  margin: 0 auto;
  max-width: 100%;
}

.value-statement-lead + .value-statement-lead {
  margin-top: 1.15rem;
}

.value-statement-body {
  max-width: 42rem;
  margin: 0 auto;
  text-align: left;
}

/* White section + split two columns */
.section-white {
  background: #fff;
  color: #1a1a1a;
}
.section-white .text-muted { color: #5a5a52; }

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .split-section { grid-template-columns: 1fr; }
}
.split-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  line-height: 1.25;
  color: #1a1a1a;
}
.split-right p { margin: 0; font-size: 1rem; line-height: 1.65; color: #333; }
.split-right p + p { margin-top: 1rem; }

/* Anclas menú Platform → pilares #one */
.platform-scroll-target {
  scroll-margin-top: 92px;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text);
  margin-bottom: 0.5rem;
}

/* Platform (Home): full-width image + overlay (#platform) */
.platform-spotlight {
  width: 100%;
  margin: 2.75rem 0 0;
  padding: 0;
  scroll-margin-top: 90px;
}
.platform-spotlight-frame {
  position: relative;
  width: 100%;
  min-height: min(70vh, 680px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.platform-spotlight-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.platform-spotlight-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.62) 100%
  );
  pointer-events: none;
}
.platform-spotlight-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(2.5rem, 6vw, 4rem) 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Columna centrada en la imagen; texto alineado a la izquierda */
.platform-spotlight-inner {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}
.platform-spotlight-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.35rem, 3.6vw, 2.15rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 1.35rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.platform-spotlight-ctas {
  margin-bottom: 1.25rem;
  text-align: left;
}
/* Request Early Access: mismo verde que header + cantos redondeados (radius-lg) */
.platform-spotlight-cta.header-cta {
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.platform-spotlight-note {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
.platform-spotlight-join {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.platform-spotlight-join:hover {
  color: rgba(255, 255, 255, 0.82);
}
@media (max-width: 600px) {
  .platform-spotlight:not(.landing-panel--request) .platform-spotlight-frame {
    min-height: 520px;
  }
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.site-footer p {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Footer tipo producto SaaS (multi-columna, estilo limpio) */
.site-footer--mega {
  padding: 0;
  border-top: none;
  background: #0f0f10;
  color: rgba(255, 255, 255, 0.88);
}

.footer-mega-main {
  padding: 3rem 0 1.75rem;
}

.footer-mega-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 2rem 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .footer-mega-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-mega-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-mega-grid {
    grid-template-columns: 1fr;
  }
}

.footer-mega-logo-link {
  display: inline-block;
  margin-bottom: 0.85rem;
}

.footer-mega-logo {
  height: 40px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}

.footer-mega-tagline {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
  max-width: 22rem;
  text-align: left;
}

.footer-mega-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 1rem;
}

.footer-mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-mega-list li {
  margin-bottom: 0.55rem;
}

.footer-mega-list a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-mega-list a:hover {
  color: var(--accent-light);
}

.footer-mega-newsletter-lead {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 0.85rem;
  text-align: left;
}

.footer-mega-cta {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
  background: var(--accent);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s;
}

.footer-mega-cta:hover {
  background: var(--accent-light);
}

/* Mailchimp embed: mínimo y discreto (footer oscuro) */
.footer-mailchimp {
  width: 100%;
  max-width: 22rem;
}

.footer-newsletter-form {
  margin: 0;
}

.footer-newsletter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
}

.footer-newsletter-input {
  flex: 1 1 9rem;
  min-width: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  padding: 0.52rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-input:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.footer-newsletter-input:focus {
  border-color: var(--accent-light);
  background: rgba(255, 255, 255, 0.09);
}

.footer-newsletter-submit {
  flex: 0 0 auto;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  padding: 0.52rem 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.12s;
}

.footer-newsletter-submit:hover {
  background: var(--accent-light);
}

.footer-newsletter-submit:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}

.footer-mce-responses {
  margin-top: 0.5rem;
}

.footer-mce-response {
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

.footer-mailchimp-honeypot {
  position: absolute;
  left: -5000px;
  height: 0;
  overflow: hidden;
}

.footer-mailchimp-note {
  margin: 0.65rem 0 0;
  font-size: 0.7rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.35);
}

.footer-mailchimp-note a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-mailchimp-note a:hover {
  color: rgba(255, 255, 255, 0.65);
}

.footer-mega-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-top: 1.35rem;
}

.footer-mega-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.footer-mega-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-mega-legal a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-mega-divider {
  color: rgba(255, 255, 255, 0.25);
}

.footer-mega-copyright {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
}

@media (max-width: 560px) {
  .footer-mega-copyright {
    text-align: left;
    width: 100%;
  }

  .footer-mega-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Trust & accountability (home) */
.trust-section {
  scroll-margin-top: 90px;
}

.trust-header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 1.75rem;
}

.trust-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.8vw, 2.1rem);
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--text);
  margin: 0 0 1rem;
}

.trust-lead {
  font-size: clamp(1rem, 2vw, 1.08rem);
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.trust-pilots {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow);
}

.trust-subtitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.65rem;
  color: var(--text);
}

.trust-pilots-text {
  font-size: 0.95rem;
  line-height: 1.62;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.trust-checklist {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.trust-checklist li {
  margin-bottom: 0.45rem;
}

.trust-checklist li:last-child {
  margin-bottom: 0;
}

.trust-inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.trust-inline-link:hover {
  color: var(--accent-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
}

.trust-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  margin: 0 0 0.65rem;
  color: var(--text);
}

.trust-card-body {
  font-size: 0.92rem;
  line-height: 1.62;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.trust-card-body:last-child {
  margin-bottom: 0;
}

/* FAQ (home): fondo negro, cajas verdes — espacio vertical vía .landing-panel--stack */
.faq-section {
  background: #0a0a0a;
  color: #fff;
  padding: 0;
  scroll-margin-top: 90px;
}

.faq-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  text-align: center;
  margin: 0 0 2rem;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.faq-item {
  background: var(--accent);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-summary {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 1.15rem 1.25rem;
  padding-right: 2.5rem;
  cursor: pointer;
  list-style: none;
  color: #fff;
  line-height: 1.4;
  position: relative;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: '+';
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  font-size: 1.15rem;
  opacity: 0.9;
  line-height: 1;
}

.faq-item[open] .faq-summary::after {
  content: '–';
}

.faq-summary:hover {
  background: rgba(0, 0, 0, 0.08);
}

.faq-answer {
  padding: 0 1.25rem 1.2rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.95rem;
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-answer p {
  margin: 0;
  padding-top: 0.9rem;
}

.faq-answer strong {
  color: #fff;
}

.faq-answer-link {
  color: #b8e6cf;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-answer-link:hover {
  color: #fff;
}

/* Getting started (after FAQ) — espacio vertical vía .landing-panel--stack */
.getting-started-section {
  background: var(--bg-alt);
  padding: 0;
  scroll-margin-top: 90px;
}

.getting-started-section.landing-panel {
  padding: 0;
}

.getting-started-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.getting-started-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.65rem;
}

.getting-started-lead {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.getting-started-steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 640px) {
  .getting-started-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .getting-started-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.getting-started-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 100%;
}

.getting-started-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
  border-radius: var(--radius);
}

.getting-started-step-body {
  min-width: 0;
}

.getting-started-step-body h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  color: var(--text);
  line-height: 1.3;
}

.getting-started-step-body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.getting-started-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.getting-started-link:hover {
  color: var(--accent-light);
}

@media (max-width: 639px) {
  .getting-started-step {
    padding: 1.2rem 1.1rem;
  }
}

/* —— Landing móvil: legibilidad, sin scroll horizontal, CTAs tocables —— */
@media (max-width: 768px) {
  /* Contenido al mismo ancho en todas las secciones (no a todo el viewport) */
  .landing-main .container,
  .site-footer .container {
    max-width: min(var(--layout-mobile-max), calc(100vw - 2rem));
    margin-left: auto;
    margin-right: auto;
  }

  .landing-panel--stack > .container {
    align-self: center;
  }

  /* Igualar pricing (antes 42rem, más ancho que el resto) */
  .landing-main .pricing-section.landing-panel .landing-panel__content {
    max-width: min(var(--layout-mobile-max), calc(100vw - 2rem));
  }

  .section {
    padding: 2.75rem 0;
  }

  .landing-panel.section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .header-inner {
    min-height: 56px;
    height: auto;
    padding: 0.35rem 0;
    gap: 0.35rem;
  }

  .logo-img {
    height: 44px;
  }

  .header-ctas {
    gap: 0.35rem;
  }

  .header-cta {
    font-size: 0.78rem;
    padding: 0.48rem 0.6rem;
  }

  .hero.landing-panel--hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero:not(.landing-panel--hero) {
    min-height: min(82vh, 720px);
  }

  /* Título hero en una sola línea (incl. «Connect Your Community.») */
  .hero .hero-title {
    white-space: nowrap;
    font-size: clamp(0.92rem, 4.6vw + 0.35rem, 2.2rem);
    letter-spacing: -0.025em;
  }

  .hero-lead {
    padding: 0 0.25rem;
  }

  .btn {
    min-height: 44px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .platform-spotlight.landing-panel--request .platform-spotlight-frame {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .platform-spotlight:not(.landing-panel--request) .platform-spotlight-frame {
    min-height: min(58vh, 500px);
  }

  .platform-spotlight-content {
    padding: 2rem 1rem;
  }

  .platform-spotlight-title {
    font-size: clamp(1.15rem, 4.8vw, 1.72rem);
    line-height: 1.25;
    margin-bottom: 1.25rem;
  }

}

@media (max-width: 400px) {
  .header-cta {
    font-size: 0.7rem;
    padding: 0.45rem 0.5rem;
  }
}

/* Legal pages (Privacy, Terms) */
.nav--legal {
  margin-left: auto;
  margin-right: 0.5rem;
}

.legal-page {
  padding: 2.5rem 0 4rem;
  background: var(--bg);
  min-height: 50vh;
}

.legal-inner {
  max-width: 720px;
}

.legal-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--text);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.legal-updated {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.legal-lead {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.legal-h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 2rem 0 0.65rem;
  color: var(--text);
}

.legal-inner p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 0.85rem;
}

.legal-inner p:last-of-type {
  margin-bottom: 0;
}

.legal-list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.legal-list li {
  margin-bottom: 0.4rem;
}

.legal-inner a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-inner a:hover {
  color: var(--accent-light);
}

.legal-back {
  margin-top: 2.5rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.legal-back a {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.legal-footer-min .footer-mega-main {
  padding: 1.25rem 0 1.75rem;
}

.legal-footer-bottom {
  border: none;
  padding-top: 0;
}

/* Floating WhatsApp (+34 647 145 686 → wa.me/34647145686) */
.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0, 0, 0, 0.22);
}

.whatsapp-float:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.whatsapp-float-icon {
  position: relative;
  z-index: 1;
}

.whatsapp-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.45;
  animation: whatsapp-pulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.45;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float-pulse {
    animation: none;
    opacity: 0;
  }

  .whatsapp-float:hover {
    transform: none;
  }
}
