/* Landing hub — Quiet Luxury (tokens from design-system.css linked in HTML) */
.landing {
  min-height: 100vh;
  background: var(--brand-950);
  color: var(--cream-50);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.landing::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 15% 10%, hsl(42 55% 45% / 0.2), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 80%, hsl(160 35% 28% / 0.35), transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 100%, hsl(42 50% 40% / 0.12), transparent 60%);
  z-index: 0;
}
.landing > * { position: relative; z-index: 1; }

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.landing-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.landing-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand-700);
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid hsl(42 55% 55% / 0.35);
  box-shadow: 0 0 0 3px hsl(42 62% 57% / 0.12);
}
.landing-nav-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.landing-nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(42 25% 88% / 0.75);
  padding: 0.5rem 0.75rem;
  transition: color 0.2s var(--ease-lux);
}
.landing-nav-links a:hover { color: var(--cream-50); }

.landing-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem 4rem;
  max-width: 800px;
  margin: 0 auto;
}
.landing-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-300);
  margin-bottom: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.landing-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-300), transparent);
}
.landing-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--cream-50);
}
.landing-hero h1 span {
  color: var(--gold-300);
  font-style: italic;
}
.landing-hero p {
  font-size: 1.125rem;
  color: hsl(42 30% 88% / 0.78);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.landing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 640px;
}
@media (min-width: 640px) {
  .landing-cards { grid-template-columns: repeat(2, 1fr); }
}
.landing-card {
  background: linear-gradient(160deg, hsl(42 40% 95% / 0.08), hsl(160 20% 50% / 0.05));
  border: 1px solid hsl(42 40% 70% / 0.18);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  text-align: left;
  transition: all 0.3s var(--ease-lux);
  display: block;
  color: var(--cream-50);
  backdrop-filter: blur(8px);
}
.landing-card:hover {
  background: linear-gradient(160deg, hsl(42 40% 95% / 0.12), hsl(160 20% 50% / 0.08));
  border-color: hsl(42 55% 60% / 0.4);
  transform: translateY(-3px);
}
.landing-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, hsl(42 50% 50% / 0.2), hsl(165 30% 20% / 0.4));
  border: 1px solid hsl(42 55% 55% / 0.3);
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.landing-card .card-icon svg { stroke-width: 1.75; }
.landing-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.landing-card p {
  font-size: 0.875rem;
  color: hsl(42 25% 88% / 0.7);
  margin: 0;
  line-height: 1.5;
}
.landing-card .card-cta {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-300);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.landing-footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.75rem;
  color: hsl(42 20% 80% / 0.55);
  border-top: 1px solid hsl(42 40% 60% / 0.12);
}
.landing-footer a { color: var(--gold-300); }

.landing-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  font-size: 0.8125rem;
  color: hsl(42 25% 85% / 0.65);
}
.landing-features span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.landing-features span::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 8px hsl(42 62% 57% / 0.5);
}
