/* ── Responsive ── */
@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    background: var(--bg-dark);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: var(--z-overlay);
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: var(--text-2xl);
  }

  .nav__hamburger {
    display: flex;
  }

  .hero__stage {
    width: 320px;
    height: 200px;
  }

  .hero__clock,
  .hero__calendar {
    width: 120px;
    height: 120px;
  }

  .hero__title {
    font-size: var(--text-3xl);
  }

  .hero__tagline {
    font-size: var(--text-base);
  }

  .hero__cta {
    font-size: var(--text-lg);
    padding: var(--space-sm) var(--space-lg);
  }
}

@media (max-width: 480px) {
  .hero__stage {
    width: 260px;
    height: 170px;
  }

  .hero__clock,
  .hero__calendar {
    width: 100px;
    height: 100px;
  }

  .hero__title {
    font-size: var(--text-2xl);
  }

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

/* ── Page-specific: Features ── */
.page-header {
  padding: var(--space-2xl) 0 var(--space-xl);
  text-align: center;
}

.page-header__title {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: var(--space-sm);
}

.page-header__desc {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Page-specific: Setup ── */
.setup-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 700px;
  margin: 0 auto;
}

.setup-step {
  display: flex;
  gap: var(--space-md);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.setup-step__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
  border-radius: var(--radius-full);
}

.setup-step__content h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: var(--space-xs);
}

.setup-step__content p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Page-specific: About ── */
.about-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.about-links {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: var(--text-sm);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.about-link:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
