/* ── Homepage Hero ──────────────────────────────────── */

.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--content-pad-x);
  overflow: hidden;
}

.home-hero-text {
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 16px;
}

.home-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 420px;
  margin: 0 auto;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.4s;
}

.scroll-indicator.hidden {
  opacity: 0;
}

.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.scroll-indicator-line {
  width: 1px;
  height: 32px;
  background: var(--text-tertiary);
}

@media (prefers-reduced-motion: no-preference) {
  .scroll-indicator-line {
    animation: scroll-pulse 2s ease-in-out infinite;
  }

  @keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
  }
}

@media (max-width: 639px) {
  .scroll-indicator {
    display: none;
  }
}

/* ── App Showcase ──────────────────────────────────── */

.app-showcase {
  padding: var(--section-pad-y) 0;
}

.app-showcase .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1023px) {
  .app-showcase .container {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

/* ── Philosophy Strip ──────────────────────────────── */

.philosophy {
  background: var(--asphalt-warm);
  padding: 64px 0;
}

.philosophy .container {
  text-align: center;
}

.philosophy p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--warm-white);
  letter-spacing: 0.01em;
}

/* ── Home Footer ───────────────────────────────────── */

.home-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
