.hero {
  padding: 3rem 3rem 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--color-ivory) 0%,
    var(--color-cream) 100%
  );
  position: relative;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.phone-mockup {
  width: 320px;
  height: 650px;
  background: linear-gradient(145deg, #1a1a1a, #2f2f2f);
  border-radius: 45px;
  padding: 12px;
  box-shadow:
    0 30px 80px rgba(26, 26, 26, 0.3),
    0 10px 30px rgba(26, 26, 26, 0.15);
  position: relative;
  transform: translate(-40px, 0);
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 25px;
  background: #1a1a1a;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 35px;
  overflow: hidden;
  position: relative;
}

.app-content {
  padding: 50px 24px 24px;
  height: 100%;
  overflow-y: auto;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.user-rank {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rank-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-amber);
  background: rgba(232, 155, 60, 0.15);
  padding: 4px 10px;
  border-radius: 12px;
  width: fit-content;
}

.rank-level {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-slate);
}

.points-display {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-emerald);
  font-family: var(--font-accent);
}

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

.stat-card {
  background: white;
  padding: 16px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.stat-card.highlighted {
  background: linear-gradient(135deg, var(--color-emerald), var(--color-sage));
  color: white;
}

.stat-value {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: var(--font-accent);
}

.stat-label {
  font-size: 10px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-banner {
  background: linear-gradient(135deg, var(--color-sky), var(--color-ocean));
  padding: 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: white;
}

.event-icon {
  font-size: 28px;
}

.event-title {
  font-size: 13px;
  font-weight: 600;
}

.event-time {
  font-size: 10px;
  opacity: 0.8;
}

.progress-section {
  margin-top: 20px;
}

.progress-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-slate);
  margin-bottom: 8px;
}

.progress-bar {
  height: 8px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-emerald), var(--color-sage));
  border-radius: 8px;
  transition: width 1s ease;
}

.hero-content {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards 0.6s;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-emerald);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-forest);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--color-slate);
  margin-bottom: 3rem;
  max-width: 540px;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.btn-download {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 14px;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.btn-apple {
  background: var(--color-charcoal);
  color: white;
}

.btn-apple:hover {
  background: var(--color-forest);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(26, 77, 46, 0.3);
}

.btn-android {
  background: white;
  color: var(--color-charcoal);
  border-color: var(--color-sand);
}

.btn-android:hover {
  background: var(--color-emerald);
  color: white;
  border-color: var(--color-emerald);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(45, 156, 111, 0.25);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.btn-icon i {
  font-size: 28px;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.3;
}

.btn-label {
  font-size: 0.75rem;
  opacity: 0.8;
}

.btn-store {
  font-size: 1rem;
  font-weight: 600;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-forest);
  font-family: var(--font-accent);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--color-stone);
}
