/* ── Home Hero ── */

.home-hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  position: relative;
  z-index: 1;
}

.home-tagline {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 32px;
}

@media (max-width: 768px) {
  .home-hero { min-height: 60vh; padding: 40px 24px; }
}

/* ── Home Cards ── */

.home-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.nav-card {
  display: block;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 36px 32px;
  background: var(--bg);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.nav-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rust), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-card:hover {
  border-color: var(--text-muted);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  color: var(--text);
}
.nav-card:hover::before { opacity: 0.5; }

.nav-card .card-label { margin-bottom: 10px; }
.nav-card .card-label--rust { color: var(--rust); }
.nav-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.nav-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}
.nav-card .card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--rust);
  letter-spacing: 0.04em;
  transition: gap 0.2s ease;
}
.nav-card:hover .card-arrow { gap: 10px; }
.card-arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

@media (max-width: 768px) {
  .home-cards { grid-template-columns: 1fr; }
}

/* ── Logo ── */

.logo-svg {
  width: clamp(240px, 38vw, 440px);
  height: auto;
}

@media (max-width: 480px) {
  .logo-svg { width: 220px; }
}

