body.home {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.home-container {
  width: 100%;
  max-width: 480px;
  padding: 56px 24px 40px;
}

.home-header {
  text-align: center;
  margin-bottom: 40px;
}

.home-logo {
  width: 220px;
  max-width: 70%;
  height: auto;
}

.home-subtitle {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--sundial-text-muted);
  text-transform: uppercase;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: var(--sundial-radius);
  background: var(--sundial-accent);
  color: #fff;
  text-decoration: none;
  transition: transform 120ms ease, opacity 120ms ease;
}

.feature-card:hover,
.feature-card:focus-visible {
  opacity: 0.92;
}

.feature-card:active {
  transform: scale(0.98);
}

.feature-icon {
  font-size: 22px;
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}

.feature-copy {
  flex: 1;
}

.feature-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 3px;
}

.feature-subtitle {
  font-size: 13px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

.feature-chevron {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  flex-shrink: 0;
}

/* Lower-emphasis variant: same layout, recedes instead of drawing the eye */
.feature-card.muted {
  background: rgba(255, 255, 255, 0.07);
  color: var(--sundial-text-muted);
}

.feature-card.muted .feature-subtitle {
  color: rgba(245, 245, 245, 0.4);
}

.feature-card.muted .feature-chevron {
  color: rgba(245, 245, 245, 0.35);
}
