@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@500;600;700&display=swap');

:root {
  --primary: #F96467;
  --primary-glow: rgba(249, 100, 103, 0.3);
  --bg-color: #f8f9fc;
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-bg-hover: rgba(255, 255, 255, 1);
  --text-primary: #1D1D1F;
  --text-secondary: #5f6368;
  --glass-border: rgba(0, 0, 0, 0.08);
  --font-inter: 'Inter', sans-serif;
  --font-montserrat: 'Montserrat', sans-serif;
}

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

body {
  font-family: var(--font-inter);
  background-color: var(--bg-color);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gradient {
  background: linear-gradient(135deg, #1D1D1F 0%, #F96467 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-primary {
  color: var(--primary);
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(248, 249, 252, 0.75);
  transition: all 0.3s ease;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-montserrat);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}



.logo span {
  color: var(--primary);
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow:
    0 2px 4px rgba(249, 100, 103, 0.1),
    0 4px 8px rgba(249, 100, 103, 0.1),
    0 8px 16px rgba(249, 100, 103, 0.1),
    0 16px 32px rgba(249, 100, 103, 0.1);
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 8px rgba(249, 100, 103, 0.15),
    0 8px 16px rgba(249, 100, 103, 0.15),
    0 16px 32px rgba(249, 100, 103, 0.15),
    0 32px 64px rgba(249, 100, 103, 0.15);
  color: white;
}

.btn-secondary {
  background-color: white;
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background-color: #f2f2f7;
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

/* Aurora Background for Light Mode */
.aurora-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  opacity: 0.8;
}

.aurora-blob {
  position: absolute;
  filter: blur(90px);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: rgba(249, 100, 103, 0.15);
  /* Light Salmon */
}

.blob-2 {
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: rgba(139, 92, 246, 0.1);
  /* Light purple */
  animation-delay: -5s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-30px, 50px) scale(1.1);
  }

  100% {
    transform: translate(50px, -30px) scale(0.9);
  }
}

/* Phone Mockup */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  perspective: 1000px;
}

.phone-mockup {
  width: 100%;
  height: 750px;
  background: #fff;
  border-radius: 40px;
  border: 10px solid #e5e5ea;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), inset 0 0 0 2px #d1d1d6;
  overflow: hidden;
  position: relative;
  transform: rotateY(-15deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.hero-visual:hover .phone-mockup {
  transform: rotateY(-5deg) rotateX(2deg) translateY(-10px);
  box-shadow: 0 40px 70px rgba(0, 0, 0, 0.12), inset 0 0 0 2px #d1d1d6;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background-color: #f2f2f7;
  display: flex;
  flex-direction: column;
}

/* App UI Simulation inside Mockup */
.app-header {
  padding: 3rem 1.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-greeting {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.typewriter-text {
  border-right: 2px solid var(--primary);
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: blinkCursor 0.75s step-end infinite;
}

@keyframes blinkCursor {

  from,
  to {
    border-color: transparent
  }

  50% {
    border-color: var(--primary);
  }
}

.app-search {
  margin: 0 1.5rem 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #8e8e93;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.app-card {
  margin: 0 1.5rem 1rem;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 4px 8px rgba(0, 0, 0, 0.02),
    0 8px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.app-card:hover {
  transform: scale(0.97);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01);
}

.app-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.app-badge {
  background: rgba(249, 100, 103, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

/* Telegram CTA Section */
.telegram-section {
  padding: 4rem 0 2rem;
  position: relative;
}

.telegram-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.01),
    0 4px 8px rgba(0, 0, 0, 0.01),
    0 8px 16px rgba(0, 0, 0, 0.02),
    0 16px 32px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.telegram-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 136, 204, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

.telegram-card:hover::before {
  opacity: 1;
}

.telegram-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 136, 204, 0.2);
  box-shadow:
    0 4px 8px rgba(0, 136, 204, 0.04),
    0 8px 16px rgba(0, 136, 204, 0.04),
    0 16px 32px rgba(0, 136, 204, 0.04),
    0 32px 64px rgba(0, 136, 204, 0.04);
}

.telegram-card > * {
  position: relative;
  z-index: 1;
}

.telegram-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(0, 136, 204, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #0088cc;
  font-size: 1.8rem;
}

.telegram-card h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.telegram-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.btn-telegram {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #0088cc;
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow:
    0 2px 4px rgba(0, 136, 204, 0.15),
    0 4px 8px rgba(0, 136, 204, 0.1),
    0 8px 16px rgba(0, 136, 204, 0.08);
}

.btn-telegram:hover {
  transform: translateY(-2px);
  background: #006da3;
  box-shadow:
    0 4px 8px rgba(0, 136, 204, 0.2),
    0 8px 16px rgba(0, 136, 204, 0.15),
    0 16px 32px rgba(0, 136, 204, 0.1);
}

.btn-telegram i {
  font-size: 1.2rem;
}

.telegram-social-proof {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 1.25rem;
  opacity: 0.7;
}

/* Features Section */
.features {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 2rem;
}

.bento-large {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-small {
  grid-column: span 1;
  grid-row: span 1;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.01),
    0 4px 8px rgba(0, 0, 0, 0.01),
    0 8px 16px rgba(0, 0, 0, 0.01),
    0 16px 32px rgba(0, 0, 0, 0.01);
}

.feature-card::before,
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(249, 100, 103, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

.feature-card:hover::before,
.pricing-card:hover::before {
  opacity: 1;
}

.feature-card>* {
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  background: var(--card-bg-hover);
  transform: translateY(-5px);
  border-color: rgba(249, 100, 103, 0.2);
  box-shadow:
    0 4px 8px rgba(249, 100, 103, 0.04),
    0 8px 16px rgba(249, 100, 103, 0.04),
    0 16px 32px rgba(249, 100, 103, 0.04),
    0 32px 64px rgba(249, 100, 103, 0.04);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(249, 100, 103, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Origin / Storytelling Section */
.origin-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.04) 50%, rgba(0, 0, 0, 0.02) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

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

.origin-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.origin-story {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.origin-tagline {
  font-size: 0.95rem;
  color: var(--text-secondary);
  opacity: 0.6;
  font-style: italic;
  letter-spacing: 0.3px;
}

/* Feature Spotlight */
.spotlight {
  padding: 8rem 0;
}

.spotlight-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.spotlight-content.reverse {
  direction: rtl;
}

.spotlight-content.reverse>* {
  direction: ltr;
}

.spotlight-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.spotlight-text p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.list-icon {
  color: var(--primary);
  background: rgba(249, 100, 103, 0.1);
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
}

.list-text h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.list-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* UI Preview Mockup */
.ui-preview {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  padding: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.ui-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f2f2f7;
  margin-bottom: 1rem;
}

.ui-content-line {
  height: 10px;
  background: #e5e5ea;
  border-radius: 5px;
  margin-bottom: 0.75rem;
}

.ui-content-line.short {
  width: 60%;
}

.ui-content-line.medium {
  width: 80%;
}

/* Pricing */
.pricing {
  padding: 8rem 0;
  background: linear-gradient(180deg, transparent, rgba(249, 100, 103, 0.05));
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.01),
    0 8px 16px rgba(0, 0, 0, 0.01),
    0 16px 32px rgba(0, 0, 0, 0.01),
    0 32px 64px rgba(0, 0, 0, 0.01);
}

.pricing-card>* {
  position: relative;
  z-index: 1;
}

.pricing-card.premium {
  border-color: rgba(249, 100, 103, 0.3);
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.02);
  box-shadow:
    0 8px 16px rgba(249, 100, 103, 0.05),
    0 16px 32px rgba(249, 100, 103, 0.05),
    0 32px 64px rgba(249, 100, 103, 0.05),
    0 64px 128px rgba(249, 100, 103, 0.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  margin: 1.5rem 0;
  color: var(--text-primary);
}

.price span {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.pricing-features li i {
  color: var(--primary);
}

.launch-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.5rem;
  letter-spacing: 0.2px;
}

.price-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-top: -0.75rem;
  margin-bottom: 0.5rem;
}

/* Ecosystem / Memodi Family Section */
.ecosystem-section {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.02);
  border-top: 1px solid var(--glass-border);
}

.ecosystem-title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  letter-spacing: 0.3px;
}

.ecosystem-accent {
  color: var(--text-primary);
  font-weight: 700;
}

.ecosystem-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 0.75rem;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.ecosystem-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.75rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.ecosystem-card:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.03),
    0 8px 16px rgba(0, 0, 0, 0.03);
}

.ecosystem-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.ecosystem-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.ecosystem-btn {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s ease;
}

.ecosystem-card:hover .ecosystem-btn {
  gap: 0.7rem;
}

.ecosystem-btn i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.ecosystem-card:hover .ecosystem-btn i {
  transform: translateX(2px);
}

/* Footer */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 4rem 0 2rem;
  text-align: center;
  background-color: #ffffff;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Animations and responsiveness */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 3.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-large {
    grid-column: span 1;
    /* Adjusted for mobile stacking */
  }

  .spotlight-content,
  .spotlight-content.reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero {
    padding-top: 10rem;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-text p {
    margin: 0 auto 2.5rem;
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .hero-buttons a {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  /* Quitamos rotaciones que causan desbordamientos horizontales */
  .hero-visual {
    padding: 0 1rem;
    perspective: none;
  }

  .phone-mockup {
    height: 600px;
    max-width: 100%;
    margin: 0 auto;
    transform: none;
  }

  .hero-visual:hover .phone-mockup {
    transform: translateY(-5px);
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .bento-large,
  .bento-small {
    grid-column: span 1;
  }

  .spotlight,
  .features {
    padding: 4rem 0;
  }

  /* Ajustes a Spotlight (Lectura Impecable / Suscripciones) para evitar desbordes */
  .spotlight-content,
  .spotlight-content.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 0.5rem;
    /* Margen de seguridad interno extra */
  }

  .spotlight-text h2,
  .section-header h2 {
    font-size: 2rem;
  }

  .spotlight-text p {
    font-size: 1rem;
  }

  /* Evitar desborde en el componente ui-preview */
  .ui-preview {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 1.5rem;
  }

  .pricing-cards {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
    width: 100%;
  }

  .pricing-card.premium {
    transform: scale(1);
  }

  .nav-content {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 1rem;
  }

  .nav-links .btn-primary {
    display: none;
  }

  .ecosystem-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}