:root {
  --bg: #0a0a0c;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-border: rgba(212, 175, 55, 0.22);
  --gold: #d4af37;
  --gold-light: #f0d878;
  --gold-dark: #b8860b;
  --text: #f5f5f7;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --radius: 20px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 80% -10%, rgba(212, 175, 55, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 10% 100%, rgba(184, 134, 11, 0.1), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

a:hover {
  text-decoration: underline;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

.brand span {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.95rem;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
}

.nav a:hover,
.nav a.active {
  color: var(--gold-light);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 1rem 0 3rem;
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: auto 1fr;
    gap: 3rem;
    padding: 2rem 0 4rem;
  }
}

.hero-icon {
  width: 140px;
  height: 140px;
  border-radius: 32px;
  box-shadow: var(--shadow), 0 0 60px rgba(212, 175, 55, 0.2);
  justify-self: center;
}

@media (min-width: 768px) {
  .hero-icon {
    width: 180px;
    height: 180px;
    border-radius: 40px;
    justify-self: start;
  }
}

.hero-copy h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff8e7, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-copy .tagline {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.hero-copy .lead {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 36rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1200;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  color: var(--text);
}

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 1.35rem;
  backdrop-filter: blur(12px);
}

.card .icon {
  font-size: 1.6rem;
  margin-bottom: 0.65rem;
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--gold-light);
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.content-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  backdrop-filter: blur(12px);
  max-width: 760px;
  margin: 0 auto;
}

.content-card h1 {
  margin: 0 0 0.5rem;
  font-size: 1.85rem;
  color: var(--text);
}

.content-card .meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.content-card h2 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.1rem;
  color: var(--gold-light);
}

.content-card p,
.content-card li {
  color: var(--text-secondary);
}

.content-card ul {
  padding-left: 1.25rem;
}

.support-box {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.support-box .hero-icon-sm {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}

.support-email {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.9rem 1.5rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1200;
  font-weight: 600;
  text-decoration: none;
}

.support-email:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

.site-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer .links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 0.75rem;
}

.disclaimer {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2rem;
  text-align: center;
}
