

.land-shell,
html,
body {
  background: #0d0d1a;
}

.land-shell {
  min-height: 100vh;
  background: #0d0d1a;
  color: #f5f5f5;
  overflow-x: hidden;
}

main {
  display: block;
  background: transparent;
}

header {
  position: relative;
  z-index: 1;
}


.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


.land-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 60px;
  background: #0d0d1a;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(102, 126, 234, 0.12);
}

.land-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.land-nav-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: block;
}

.land-nav-logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, #667eea, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.land-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.land-nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  transition: color 0.15s;
}
.land-nav-link:hover { color: #ffffff; }

.land-nav-cta {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
  display: inline-flex;
  align-items: center;
}
.land-nav-cta:hover { opacity: 0.88; transform: translateY(-1px); color: #fff; }


.land-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 1.5rem 80px;
  overflow: hidden;
  background: #0d0d1a;
  margin: 0;
}

.land-hero::before, .land-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: land-orb-drift 14s ease-in-out infinite alternate;
}
.land-hero::before {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(102,126,234,0.38) 0%, transparent 70%);
  top: -100px; left: -80px;
  animation-delay: 0s;
}
.land-hero::after {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(118,75,162,0.32) 0%, transparent 70%);
  bottom: -80px; right: -60px;
  animation-delay: -7s;
}

@keyframes land-orb-drift {
  0%   { transform: translate(0,0) scale(1); }
  40%  { transform: translate(30px,-35px) scale(1.06); }
  100% { transform: translate(-15px,25px) scale(0.96); }
}

.land-hero-orb3 {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67,56,202,0.22) 0%, transparent 70%);
  filter: blur(70px);
  top: 40%; left: 55%;
  pointer-events: none;
  animation: land-orb-drift 18s ease-in-out infinite alternate;
  animation-delay: -4s;
}

.land-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.land-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(102,126,234,0.5);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #a5b4fc;
  margin-bottom: 2rem;
  letter-spacing: 0.2px;
}
.land-hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #667eea;
  animation: land-badge-pulse 2s ease-in-out infinite;
}
@keyframes land-badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.land-hero-h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #ffffff;
  margin: 0 0 1.4rem;
}
.land-hero-h1 .grad {
  background: linear-gradient(90deg, #a78bfa 0%, #667eea 40%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.land-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.land-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.land-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(102,126,234,0.4);
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}
.land-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(102,126,234,0.55);
  color: #fff; opacity: 1;
}

.land-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.land-btn-ghost:hover { background: #4f46e5; color: #fff; }

.land-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.land-stat { padding: 1.25rem 1rem; background: rgba(255,255,255,0.04); text-align: center; }
.land-stat-num {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, #a78bfa, #667eea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.land-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; line-height: 1.3; }


.land-section { padding: 100px 1.5rem; }
.land-section-light  { background: #f8f8ff; color: #1a1a2e; }
.land-section-white  { background: #ffffff; color: #1a1a2e; }
.land-section-tint   { background: #f0eeff; color: #1a1a2e; }

.land-section-inner { max-width: 1100px; margin: 0 auto; }
.land-section-inner--narrow { max-width: 760px; margin: 0 auto; }

.land-section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.8px;
  text-align: center;
  margin: 0 0 1rem;
  line-height: 1.15;
}
.land-section-sub {
  font-size: 1rem;
  text-align: center;
  color: #6b7280;
  max-width: 560px;
  margin: 0 auto 3.5rem;
  line-height: 1.65;
}


.land-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.land-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102,126,234,0.4) 20%, rgba(102,126,234,0.4) 80%, transparent);
}
.land-step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
.land-step-icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(102,126,234,0.15) 0%, rgba(118,75,162,0.15) 100%);
  border: 1.5px solid rgba(102,126,234,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  font-size: 2rem;
}
.land-step-num {
  position: absolute;
  top: -8px; right: -8px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.land-step-title { font-size: 1rem; font-weight: 700; color: #1a1a2e; margin: 0; }
.land-step-desc  { font-size: 0.88rem; color: #6b7280; line-height: 1.6; margin: 0; }


.land-cycle-toggle {
  display: flex;
  align-items: center;
  background: #f0eeff;
  border-radius: 100px;
  padding: 4px;
  margin: 0 auto 3rem;
  width: fit-content;
  gap: 4px;
  border: none;
  min-inline-size: 0;
}
.land-cycle-btn {
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  border: none;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  background: transparent;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.land-cycle-btn.active {
  background: #ffffff;
  color: #1a1a2e;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.land-cycle-badge {
  font-size: 0.65rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  padding: 0.1rem 0.5rem;
  border-radius: 100px;
}

.land-plan-card {
  border-radius: 20px;
  padding: 2.5rem 2rem;
  background: #ffffff;
  border: 1.5px solid #667eea;
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(102,126,234,0.18);
}

.land-plan-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.land-plan-promo-banner {
  background: #eef2ff;
  border: 1px solid rgba(102,126,234,0.3);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #4338ca;
  font-weight: 600;
}
.land-plan-promo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #667eea;
  flex-shrink: 0;
  animation: land-badge-pulse 2s ease-in-out infinite;
}

.land-plan-name { font-size: 1.2rem; font-weight: 800; color: #1a1a2e; margin: 0 0 0.5rem; }

.land-plan-price-row {
  display: flex;
  align-items: flex-end;
  gap: 0.3rem;
  margin-bottom: 0.3rem;
}
.land-plan-currency      { font-size: 1rem; font-weight: 700; color: #667eea; line-height: 2.4; }
.land-plan-currency--ars { color: #764ba2; }
.land-plan-amount        { font-size: 3.2rem; font-weight: 900; letter-spacing: -2px; color: #1a1a2e; line-height: 1; }
.land-plan-cycle         { font-size: 0.82rem; color: #9ca3af; margin-bottom: 0.2rem; }
.land-plan-usd-ref       { font-size: 0.76rem; color: #9ca3af; margin: 0 0 0.5rem; }
.land-plan-loading       { font-size: 0.85rem; color: #9ca3af; margin: 0.5rem 0; }
.land-plan-annual-note   { font-size: 0.72rem; color: #667eea; margin: 0 0 1rem; }

.land-plan-setup {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.land-plan-setup-strike { text-decoration: line-through; }
.land-plan-setup-promo  { color: #667eea; font-weight: 700; }

.land-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border-top: 1px solid #f0eeff;
  padding-top: 1.25rem;
}
.land-plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.4;
}
.land-plan-feature-icon { color: #667eea; flex-shrink: 0; margin-top: 1px; }

.land-plan-cta {
  width: 100%;
  padding: 0.95rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(102,126,234,0.35);
}
.land-plan-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(102,126,234,0.45);
}

.land-rate-note {
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 1.5rem;
}


.land-faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.land-faq-item {
  background: #fff;
  border: 1.5px solid #e8e4ff;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.land-faq-item.open {
  border-color: #667eea;
  box-shadow: 0 4px 20px rgba(102,126,234,0.1);
}
.land-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.6rem;
  font-size: 0.97rem;
  font-weight: 700;
  color: #1a1a2e;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 1.25rem;
  line-height: 1.4;
}
.land-faq-q:hover { background: #f8f7ff; }
.land-faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #eef2ff;
  color: #4338ca;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), background 0.2s;
}
.land-faq-item.open .land-faq-icon { transform: rotate(45deg); background: rgba(102,126,234,0.18); }
.land-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0,1,0.5,1); }
.land-faq-item.open .land-faq-a { max-height: 400px; }
.land-faq-a-inner {
  padding: 1rem 1.6rem 1.4rem;
  font-size: 0.92rem;
  color: #6b7280;
  line-height: 1.7;
  border-top: 1px solid #f0eeff;
}


.land-cta-section {
  background: #0d0d1a;
  padding: 100px 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.land-cta-section::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102,126,234,0.2) 0%, transparent 70%);
  filter: blur(80px);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.land-cta-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.8px;
  color: #fff;
  margin: 0 0 1rem;
  position: relative;
}
.land-cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  position: relative;
}


.land-footer {
  background: #080810;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.land-footer-brand {
  font-size: 0.88rem;
  font-weight: 800;
  background: linear-gradient(90deg, #667eea, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.land-footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.land-footer-links { display: flex; gap: 1.5rem; }
.land-footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.65); text-decoration: none; }
.land-footer-links a:hover { color: #fff; }


.land-lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2rem;
  position: relative;
}
.land-lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.land-lead-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.2s;
}
.land-lead-form input::placeholder { color: rgba(255,255,255,0.4); }
.land-lead-form input:focus { border-color: #667eea; }
.land-lead-msg {
  font-size: 0.85rem;
  margin: 0;
  min-height: 1.2em;
  text-align: center;
}
.land-lead-msg.success { color: #4ade80; }
.land-lead-msg.error   { color: #f87171; }


@media (max-width: 900px) {
  .land-steps { grid-template-columns: 1fr; }
  .land-steps::before { display: none; }
}
@media (max-width: 640px) {
  .land-hero-stats { grid-template-columns: repeat(3, 1fr); }
  .land-stat { padding: 1rem 0.5rem; }
  .land-stat-num { font-size: 1.3rem; }
  .land-nav { padding: 0 1rem; }
  .land-nav-link { display: none; }
  .land-section { padding: 64px 1rem; }
  .land-lead-row { grid-template-columns: 1fr; }
  .land-footer { flex-direction: column; align-items: center; text-align: center; }
}


output.land-plan-promo-banner { display: flex; }
output.land-lead-msg { display: block; }


:focus-visible {
  outline: 2px solid #667eea;
  outline-offset: 3px;
  border-radius: 4px;
}


@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .land-hero::before,
  .land-hero::after,
  .land-hero-orb3,
  .land-hero-badge-dot,
  .land-plan-promo-dot {
    animation: none;
  }
  * { transition-duration: 0.01ms !important; }
}
