/* TOKENS */
:root {
  --bg:        #080610;
  --bg2:       #0e0b1a;
  --purple:    #5B2D8E;
  --purple-lt: #7B4DB0;
  --gold:      #C9A84C;
  --gold-lt:   #E8CC7A;
  --gold-dim:  #8a6e2a;
  --white:     #f5f0ff;
  --muted:     #9a90b0;
  --card-bg:   rgba(91,45,142,0.10);
  --border:    rgba(201,168,76,0.18);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }

/* BACKGROUND AMBIENCE */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(91,45,142,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(201,168,76,0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* NOISE GRAIN */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

/* LAYOUT WRAPPER */
.wrap {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,6,16,0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: 4px;
}
.nav-logo span {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.nav-cta {
  background: var(--gold);
  color: #0a0610;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }
.nav-cta:active { transform: scale(0.95); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
}
.hero-logo {
  width: 120px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 0 60px rgba(201,168,76,0.25), 0 0 120px rgba(91,45,142,0.3);
  animation: floatLogo 5s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}
.hero h1 {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.35s forwards;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2.8rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s forwards;
}
.hero-pills {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}
.pill {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--muted);
  background: rgba(91,45,142,0.08);
}
.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.7s 0.75s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #08060f;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 2.2rem;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(201,168,76,0.25);
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}
.btn-primary:active {
  transform: scale(0.97);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 2.2rem;
  border-radius: 3px;
  border: 1px solid rgba(201,168,76,0.35);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: translateY(-2px);
}
.btn-secondary:active {
  transform: scale(0.97);
}
.btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s;
}
.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow { transform: translateX(4px); }

/* DIVIDER LINE */
.divider {
  position: relative;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 2rem;
}

/* FEATURES */
.features {
  padding: 6rem 0;
}
.section-label {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}
.section-title {
  text-align: center;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 3.5rem;
  color: var(--white);
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.2rem 2rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(91,45,142,0.2);
}
.card:hover::before { opacity: 1; }
.card-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}
.card h3 {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* TRUST BAR */
.trust {
  padding: 4rem 0;
  text-align: center;
}
.trust-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 2rem;
}
.trust-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.stat-num {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}

/* FINAL CTA SECTION */
.cta-section {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(91,45,142,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}
.cta-section p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.cta-section .cta-group { position: relative; }

/* FOOTER */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}
.footer-legal {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
  text-align: right;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .wrap { padding: 0 1.2rem; }
  nav { padding: 1.2rem 1.2rem; }
  .hero { padding: 7rem 1.2rem 4rem; }
  .trust-stats { gap: 2.5rem; }
  footer { flex-direction: column; text-align: center; }
  .footer-legal { text-align: center; }
  .nav-logo span { font-size: 1.15rem; }
}
