:root {
  --black: #000000;
  --surface-800: #0a0a0a;
  --surface-700: #121212;
  --surface-600: #1a1a1a;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.15);
  --gold-strong: rgba(212, 175, 55, 0.28);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.74);
  --text-muted: #999999;
  --text-label: #777777;
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(212, 175, 55, 0.45);
  --success: #22c55e;
  --max-width: 72rem;
  --font-display: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #e8c85a;
}

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
}

.brand__logo {
  width: 2.25rem;
  height: 2.25rem;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

/* Hero */
.hero {
  position: relative;
  padding: 5rem 0 4.5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, var(--gold-soft), transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(255, 255, 255, 0.04), transparent);
  pointer-events: none;
}

.hero__content {
  position: relative;
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

.hero__logo {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 24px var(--gold-strong));
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.08;
  margin-bottom: 1rem;
}

.hero__subheadline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.45;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #d4af37 0%, #b8962e 50%, #d4af37 100%);
  color: var(--surface-800);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0.75rem;
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 18px var(--gold-strong);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__cta:hover {
  color: var(--surface-800);
  transform: translateY(-2px);
  box-shadow: 0 0 28px var(--gold-strong);
}

/* Sections */
.section {
  padding: 4rem 0;
  border-top: 1px solid var(--border-subtle);
}

.section--alt {
  background: var(--surface-800);
}

.section__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.section__lead {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  max-width: 40rem;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

/* Cards grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--surface-700);
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.2s ease;
}

.card:hover {
  border-color: var(--border-gold);
}

.card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.card__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.card__text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Feature list */
.feature-list {
  display: grid;
  gap: 1rem;
  max-width: 48rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--surface-700);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
}

.feature-item__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.feature-item__title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.feature-item__text {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.45;
}

/* Contact */
.contact-box {
  max-width: 32rem;
  padding: 2rem;
  background: var(--surface-700);
  border: 1px solid var(--border-gold);
  border-radius: 1rem;
  box-shadow: 0 0 24px var(--gold-soft);
}

.contact-box__email {
  font-size: 1.125rem;
  font-weight: 600;
  word-break: break-all;
}

.contact-box__note {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Legal pages */
.legal-page {
  padding: 3rem 0 4rem;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.legal-page .updated {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.125rem;
  margin: 2rem 0 0.75rem;
  color: var(--gold);
}

.legal-page p,
.legal-page li {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.legal-page ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 0;
  background: var(--surface-800);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-footer__brand img {
  width: 1.5rem;
  height: 1.5rem;
}

.site-footer__brand span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-footer__links a {
  color: var(--text-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__links a:hover {
  color: var(--text-primary);
}

.site-footer__copy {
  width: 100%;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

/* Responsive */
@media (max-width: 640px) {
  .site-header__inner {
    flex-direction: column;
    gap: 1rem;
  }

  .site-nav {
    justify-content: center;
    gap: 1rem;
  }

  .hero {
    padding: 3.5rem 0 3rem;
  }

  .site-footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
