/* Minimalist Homepage Styles for Wmimo - Side-by-Side Split Layout */

/* Hero Section */
.hero-section {
  padding: 60px 0 50px 0;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.hero-left {
  text-align: left;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--badge-bg);
  color: var(--badge-text);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Right Screenshot Frame */
.hero-right {
  position: relative;
}

.screenshot-frame {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(var(--brand-primary-rgb), 0.08);
  transition: all var(--transition-normal);
  overflow: hidden;
}

.screenshot-frame:hover {
  border-color: rgba(var(--brand-primary-rgb), 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(var(--brand-primary-rgb), 0.15);
  transform: translateY(-2px);
}

.screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
}

/* Feature Grid */
.features-section {
  padding: 50px 0 80px 0;
}

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

/* Responsive */
@media (max-width: 992px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-left {
    text-align: center;
  }
  .hero-cta {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}
