/* ============================================================
   Evolve AI Page — Specific Styles
   ============================================================ */

/* Hero */
.evolve-hero {
  padding: 140px 0 96px;
  position: relative;
  overflow: hidden;
}

.evolve-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% -10%, rgba(91,141,238,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(155,89,182,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.evolve-hero-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.evolve-app-icon {
  width: 90px; height: 90px;
  border-radius: 22px;
  background: linear-gradient(135deg, #1c1c40, #2a1a50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.4rem;
  box-shadow: 0 12px 40px rgba(91,141,238,0.3), 0 0 0 1px rgba(255,255,255,0.07);
}

.evolve-hero-inner h1 { margin-bottom: 16px; }
.evolve-hero-inner p {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

.evolve-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Stats Row */
.evolve-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
}

.e-stat {
  flex: 1;
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.e-stat:last-child { border-right: none; }

.e-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.e-stat span { font-size: 0.78rem; color: var(--muted); }

/* Screenshots */
.evolve-screenshots { background: var(--bg2); }

.screenshots-track {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}

.screenshot-item {
  position: relative;
  transition: transform var(--transition);
}
.screenshot-item:hover { transform: translateY(-8px); }

.screenshot-item img {
  height: 460px;
  width: auto;
  border-radius: 22px;
  box-shadow: 0 20px 56px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
  object-fit: cover;
}
.screenshot-item:nth-child(2) img {
  height: 500px;
}

.screenshot-caption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 10px;
}

/* Features */
.evolve-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: rgba(91,141,238,0.3);
  transform: translateY(-3px);
}

.feature-card .icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.feature-card h4 { font-size: 1rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; }

/* Download */
.evolve-download { background: var(--bg2); }

.download-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.download-text h2 { margin-bottom: 14px; }
.download-text p { margin-bottom: 28px; font-size: 0.95rem; }

.store-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition);
}
.store-btn:hover {
  background: rgba(91,141,238,0.12);
  border-color: var(--accent);
  color: var(--white);
}
.store-btn .icon { font-size: 1.4rem; }
.store-btn-text span {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.store-btn-text strong { font-size: 0.95rem; }

.download-legal {
  border-left: 1px solid var(--border);
  padding-left: 48px;
}
.download-legal h3 { margin-bottom: 14px; font-size: 1rem; }
.download-legal p { font-size: 0.88rem; margin-bottom: 16px; }

.legal-links { display: flex; flex-direction: column; gap: 10px; }

.legal-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  text-decoration: none;
}
.legal-link:hover {
  border-color: var(--accent);
  color: var(--white);
  background: rgba(91,141,238,0.07);
}
.legal-link .link-icon { font-size: 1.1rem; }
.legal-link .arrow { margin-left: auto; color: var(--muted); font-size: 0.8rem; }

/* Responsive */
@media (max-width: 900px) {
  .evolve-features-grid { grid-template-columns: 1fr 1fr; }
  .download-inner { grid-template-columns: 1fr; }
  .download-legal { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 32px; }
}

@media (max-width: 600px) {
  .evolve-features-grid { grid-template-columns: 1fr; }
  .screenshot-item img { height: 320px; }
  .screenshot-item:nth-child(2) img { height: 360px; }
  .evolve-stats { flex-direction: column; }
  .e-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .e-stat:last-child { border-bottom: none; }
}
