body {
  background: radial-gradient(circle at top, rgba(201,168,106,0.08), transparent 30%), var(--color-bg);
  color: var(--color-text);
  font-family: 'Poppins', sans-serif;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-accent);
  color: #181818;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 10px 24px rgba(201, 168, 106, 0.22);
}

.button:hover {
  transform: translateY(-2px);
  background: var(--color-accent-hover);
}

.button-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  color: var(--color-accent);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.alert {
  padding: 1rem;
  border-radius: var(--radius-sm);
}

.alert-error {
  background: rgba(184, 79, 79, 0.15);
  border: 1px solid rgba(184, 79, 79, 0.3);
  color: #ffd6d6;
}

.alert-success {
  background: rgba(78, 140, 103, 0.16);
  border: 1px solid rgba(78, 140, 103, 0.3);
  color: #d9ffea;
}

.link-arrow {
  color: var(--color-accent);
  font-weight: 600;
}

.modal-shell {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(10, 10, 12, 0.7);
  padding: 1rem;
  z-index: 20;
}

.modal-card {
  width: min(540px, 100%);
  background: rgba(20,20,20,0.88);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.empty-state {
  width: min(720px, calc(100% - 2rem));
  margin: 5rem auto;
  padding: 3rem;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  text-align: center;
}
