/* ALYSSIUN — section layouts: two-up card grids, the Spaces list, and the
   closing section. Reuses the kinetic glass `.card`. See docs/BRAND.md. */

/* ---- Two-up grid (For Social / For Business, Vision) ---- */
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
#social-business .card,
#vision .card { padding: 1.9rem 1.8rem; }

/* ---- The Spaces list (long-term direction) ---- */
.spaces-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.7rem;
}
.spaces-list li {
  position: relative;
  padding: 0.9rem 1.1rem 0.9rem 2.1rem;
  color: var(--text-soft);
  font-size: 0.98rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.spaces-list li:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
}
.spaces-list li::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 1.35rem;
  width: 6px; height: 6px;
  border-radius: var(--radius-sm);
  background: var(--command);
}

/* ---- Closing section ---- */
.closing {
  padding: clamp(4rem, 10vw, 7.5rem) 0 clamp(4.5rem, 11vw, 8.5rem);
}
.closing h2 {
  max-width: 26ch;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 200;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--text);
}
.closing p {
  margin-top: 1.3rem;
  max-width: 50ch;
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.18rem);
}
.closing .hero-cta { margin-top: 2.4rem; }

/* ---- Footer note ---- */
.foot-note {
  margin-top: 1.5rem;
  max-width: 74ch;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}
