:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at 20% 0%, rgba(226, 184, 74, 0.12), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(246, 200, 76, 0.08), transparent 20%),
    linear-gradient(180deg, #070707 0%, #0d0d10 35%, #111113 100%);
  color: var(--color-text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(7, 7, 7, 0.72);
  border-bottom: 1px solid rgba(226, 184, 74, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 118px;
  height: auto;
}

.nav {
  display: none;
  gap: 18px;
  color: var(--color-muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--color-text-strong);
}

.page-hero {
  padding: 30px 0 16px;
}

.page-hero-grid {
  display: grid;
  gap: 18px;
}

.eyebrow, .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(226, 184, 74, 0.24);
  background: rgba(226, 184, 74, 0.08);
  color: var(--color-text-strong);
  font-size: 13px;
  width: fit-content;
}

h1, h2, h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.08;
  font-family: var(--font-display);
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  margin-top: 12px;
  max-width: 12ch;
}

.hero-copy, .section-copy, .card p, .note-block, .footer, .page-copy {
  color: var(--color-muted);
  line-height: 1.75;
}

.hero-copy, .page-copy {
  font-size: 1rem;
  max-width: 68ch;
}

.cta-row, .action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(226, 184, 74, 0.18);
  color: var(--color-text);
}

.btn-primary, .ds-cta {
  background: linear-gradient(135deg, #f7d76e 0%, #e2b84a 48%, #b9891f 100%);
  color: #111111;
  box-shadow: 0 14px 30px rgba(185, 137, 31, 0.26);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%),
    linear-gradient(180deg, #19191d 0%, #0f0f12 100%);
  border: 1px solid rgba(226, 184, 74, 0.2);
  box-shadow: var(--shadow-lg);
  padding: 18px;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 15%, rgba(246, 200, 76, 0.14), transparent 26%),
    radial-gradient(circle at 10% 20%, rgba(226, 184, 74, 0.08), transparent 22%);
  pointer-events: none;
}

.hero-panel img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  position: relative;
  z-index: 1;
}

.stat-grid, .card-grid, .image-strip, .faq, .support-grid {
  display: grid;
  gap: 14px;
}

.stat {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(226, 184, 74, 0.16);
}

.stat strong {
  display: block;
  color: var(--color-text-strong);
  font-size: 1.05rem;
}

.stat span {
  display: block;
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

section {
  padding: 26px 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.section-kicker {
  color: var(--color-primary-strong);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
}

.card, .promo-card, .faq-item, .support-card, .panel {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 20%),
    #17171b;
  border: 1px solid rgba(226, 184, 74, 0.18);
  box-shadow: var(--shadow-sm);
}

.card h3, .promo-card h3, .faq-item h3, .support-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.card p, .promo-card p, .faq-item p, .support-card p {
  margin: 0;
}

.meta {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(226, 184, 74, 0.1);
  border: 1px solid rgba(226, 184, 74, 0.18);
  color: var(--color-text-strong);
  font-size: 12px;
  font-weight: 600;
}

.promo-highlight {
  display: grid;
  gap: 14px;
}

.promo-banner, .note-block {
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(247, 215, 110, 0.16), rgba(185, 137, 31, 0.06)),
    #19191d;
  border: 1px solid rgba(246, 200, 76, 0.22);
}

.promo-banner strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  color: var(--color-text-strong);
}

.promo-card .note {
  margin-top: 12px;
  color: var(--color-text-strong);
  font-size: 0.9rem;
}

.image-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(226, 184, 74, 0.18);
  background: #16161a;
}

.image-caption {
  padding: 14px 16px 16px;
  color: var(--color-muted);
  line-height: 1.6;
}

.footer {
  padding: 28px 0 36px;
  color: var(--color-muted);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .nav {
    display: inline-flex;
  }

  .page-hero {
    padding-top: 44px;
  }

  .page-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-highlight {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
  }

  .image-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq, .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .page-hero {
    padding-top: 52px;
  }

  .card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .promo-highlight {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

