/* Base */
:root {
  --bg: #050814;
  --bg-alt: #090d1f;
  --card-bg: #0f1428;

  /* True gold (less yellow, more metallic) */
  --gold: #d4af37;
  --gold-2: #f2d27a;
  --gold-soft: rgba(212, 175, 55, 0.16);

  --text: #f5f7ff;
  --muted: #a2a6c3;
  --border: #1c2139;

  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
}

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

html, body { margin: 0; padding: 0; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  background: radial-gradient(circle at top, #101633 0, #050814 54%, #03030a);
  color: var(--text);
  line-height: 1.6;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

.section { padding: 80px 0; }

.section-alt {
  padding: 80px 0;
  background: radial-gradient(circle at top, #101633 0, #050814 60%) fixed;
}

.section h2 {
  font-size: 2rem;
  margin: 0 0 12px;
}

.section-intro {
  max-width: 820px;
  color: var(--muted);
  margin: 0 0 32px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 20, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 44px; /* bigger */
  width: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.35));
}

.logo-text {
  font-weight: 650;
  letter-spacing: 0.04em;
  color: var(--text);
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.92rem;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transition: width 0.2s ease;
  border-radius: 999px;
}

.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { width: 100%; }

@media (max-width: 880px) {
  .main-nav { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease, border 0.12s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #141414;
  box-shadow: 0 22px 50px rgba(212, 175, 55, 0.26);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 60px rgba(212, 175, 55, 0.38);
}

.btn-secondary {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-2);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold-2);
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.btn-outline:hover {
  border-color: rgba(242, 210, 122, 0.55);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.btn-small {
  padding: 8px 14px;
  font-size: 0.85rem;
}

.btn + .btn { margin-left: 10px; }

/* Hero */
.hero-section { padding: 96px 0 80px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.45rem;
  margin: 0 0 12px;
}

.hero-subtitle {
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 20px;
}

.hero-cta { margin-bottom: 12px; }

.hero-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-card {
  background: radial-gradient(circle at top left, #202744 0, #090d1f 48%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 24px 22px;
  box-shadow: var(--shadow-soft);
}

.hero-card h2 {
  font-size: 1.25rem;
  margin: 10px 0 12px;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  padding: 6px 0 4px;
}

.hero-logo {
  width: min(260px, 100%);
  height: auto;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  border: 1px solid rgba(212,175,55,0.18);
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
}

/* Grids & cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 20px 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.card h3 { margin: 0 0 8px; }

.bullet-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.bullet-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

@media (max-width: 960px) {
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .cards-grid { grid-template-columns: minmax(0, 1fr); }
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 10px;
}

.step {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 20px 18px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-2);
  font-weight: 700;
  margin-bottom: 10px;
  border: 1px solid rgba(212,175,55,0.22);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
}

.pricing-card h3 { margin: 0 0 6px; }

.price {
  font-size: 1.85rem;
  margin: 0 0 10px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 12px;
}

.pricing-featured {
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 26px 70px rgba(212, 175, 55, 0.22);
}

@media (max-width: 1040px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: minmax(0, 1fr); }
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.faq-item {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 18px 16px;
}

.faq-item h3 { margin: 0 0 6px; }

/* Legal */
.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 26px;
}

.legal-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.legal-block {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 18px 16px;
}

@media (max-width: 1040px) {
  .legal-grid { grid-template-columns: minmax(0, 1fr); }
  .legal-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 800px) {
  .steps-grid,
  .faq-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 720px) {
  .legal-columns { grid-template-columns: minmax(0, 1fr); }
}

/* Socials */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.social-card {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 16px 14px;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 16px 30px rgba(0,0,0,0.25);
  transition: transform 0.12s ease, border 0.12s ease;
}

.social-card:hover {
  transform: translateY(-1px);
  border-color: rgba(212,175,55,0.35);
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-2);
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.22);
}

.social-title {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.social-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .social-grid { grid-template-columns: minmax(0, 1fr); }
}

/* Utility */
.muted { color: var(--muted); font-size: 0.9rem; }
.center { text-align: center; }
.cta-center { margin-top: 24px; text-align: center; }

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 26px 0 16px;
  background: #040614;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.footer-logo {
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-text {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 4px 0 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  font-size: 0.86rem;
}

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

.footer-links a:hover { color: var(--gold-2); }

.footer-copy {
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}