:root {
  --bg: #060608;
  --gold: #c9a962;
  --gold-dim: #8a7340;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --border: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(201, 169, 98, 0.18), transparent),
    radial-gradient(ellipse 50% 40% at 100% 80%, rgba(94, 234, 212, 0.06), transparent);
  z-index: 0;
}

.header, main, .footer {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
}

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
}

.logo span {
  background: linear-gradient(135deg, var(--gold), #e8d5a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero {
  padding: 48px 0 64px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 98, 0.35);
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

h1 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.lead {
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, filter 0.2s;
  font-size: 1rem;
}

.btn:hover { transform: translateY(-2px); filter: brightness(1.06); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #0a0a0a;
  box-shadow: 0 12px 40px rgba(201, 169, 98, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-ghost {
  padding: 10px 18px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
}

.features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

.features li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

.features span {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding-bottom: 120px;
}

.card {
  padding: 28px;
  background: rgba(18, 18, 24, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.card-link:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.card-cta {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-block {
  width: 100%;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(6, 6, 8, 0.98), rgba(6, 6, 8, 0.85), transparent);
  backdrop-filter: blur(8px);
}

.card-icon { font-size: 2rem; margin-bottom: 12px; }

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 32px 24px 48px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer a {
  color: var(--gold);
  text-decoration: none;
}

.footer a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .cta-row { flex-direction: column; align-items: stretch; }
  .footer { flex-direction: column; text-align: center; }
}
