/* === BASE TOKENS === */
:root {
  --bg: #000000;
  --bg-alt: #0a0a0a;
  --bg-card: #111111;
  --fg: #E8E4D8;
  --fg-muted: #7A7A68;
  --accent: #D4AF37;
  --accent-dim: rgba(212, 175, 55, 0.15);
  --accent-border: rgba(212, 175, 55, 0.35);
  --white: #ffffff;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.logo-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.header-nav {
  display: flex;
  gap: 2.5rem;
}

.header-nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--fg); }

.header-cta {
  background: var(--accent) !important;
  color: #000 !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}

.header-cta:hover {
  background: #E8C84A !important;
  transform: translateY(-1px);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 7rem 2rem 5rem;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(212,175,55,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--accent-border);
  border-radius: 2rem;
  background: var(--accent-dim);
}

.hero-headline {
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-headline span {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: #E8C84A;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--fg-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.25);
  color: var(--fg);
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 60px rgba(212,175,55,0.08);
}

.hero-image-wrap img {
  width: 100%;
  display: block;
  filter: brightness(0.85) contrast(1.1);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.4) 100%);
}

/* Gold grid decoration in hero image area */
.hero-grid {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(212,175,55,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 90% 50%, black 20%, transparent 80%);
}

/* === HOW IT WORKS === */
.how {
  padding: 7rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-header {
  max-width: 1160px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-top: 0.75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.steps-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 0 40px rgba(212,175,55,0.05);
}

.step-num {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === SERVICES === */
.services {
  padding: 7rem 2rem;
  background: var(--bg);
}

.tiers-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
}

.tier-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.tier-card--featured {
  border-color: var(--accent-border);
  background: linear-gradient(160deg, #141210 0%, #0f0d0a 100%);
  box-shadow: 0 0 60px rgba(212,175,55,0.08);
}

.tier-card--featured:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(212,175,55,0.12);
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.25rem 0.7rem;
  border: 1px solid var(--accent-border);
  border-radius: 3px;
  background: var(--accent-dim);
  width: fit-content;
}

.tier-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.price-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-unit {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.tier-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0.25rem 0;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.tier-features li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  line-height: 1.5;
}

.tier-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.tier-cta {
  display: block;
  width: 100%;
  background: rgba(255,255,255,0.06);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.tier-cta:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.tier-card--featured .tier-cta {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.tier-card--featured .tier-cta:hover {
  background: #E8C84A;
  border-color: #E8C84A;
}

/* === SOCIAL PROOF === */
.proof {
  padding: 7rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.proof-stats {
  max-width: 1160px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat-val {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.testimonials-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 2rem;
}

.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--fg);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.attr-avatar {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--accent);
  flex-shrink: 0;
}

.attr-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.attr-role {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* === CONTACT === */
.contact {
  padding: 8rem 2rem;
  background: var(--bg);
  text-align: center;
}

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
}

.contact h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.contact p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact .btn-primary {
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

.contact-email {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  transition: color 0.2s;
}

.contact-email:hover { color: var(--accent); }

/* === FOOTER === */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 2rem;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-style: italic;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .tiers-grid { grid-template-columns: repeat(2, 1fr); }
  .tier-card--featured { grid-column: span 2; }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 6rem;
    text-align: center;
    min-height: auto;
    padding-bottom: 4rem;
  }

  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .hero-image-wrap { max-width: 480px; margin: 0 auto; }
  .hero-grid { display: none; }
  .hero::after { display: none; }

  .steps-grid { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .tier-card--featured { grid-column: span 1; }
  .proof-stats { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .step-card, .tier-card, .testimonial-card { padding: 1.5rem; }
}