@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  font-family: 'DM Sans', sans-serif;
  color: #f8f6ff;
  background: #0c082b;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --ink: #f8f6ff;
  --muted: #b4b0cf;
  --line: rgba(255,255,255,.12);
  --panel: rgba(255,255,255,.07);
  --gold: #ffcf42;
  --gold-deep: #f3a80c;
  --orange: #ff6a30;
  --violet: #160d52;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; min-height: 100vh; background: radial-gradient(circle at 80% 0%, #21116d 0, #0c082b 36rem), #0c082b; color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 5; border-bottom: 1px solid var(--line); background: rgba(12,8,43,.88); backdrop-filter: blur(18px); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font: 700 20px 'Space Grotesk', sans-serif; letter-spacing: -.03em; }
.brand img { width: 42px; height: 42px; border-radius: 12px; object-fit: cover; }
.nav-links { display: flex; align-items: center; gap: 5px; }
.nav-links a { color: #d2cee8; padding: 10px 13px; border-radius: 10px; font-size: 13px; font-weight: 600; transition: .2s ease; }
.nav-links a:hover, .nav-links a.active { color: #1a123a; background: var(--gold); }
.nav-cta, .button { display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 10px; background: linear-gradient(135deg, #ffd953, #ffb61b); color: #211548; padding: 13px 20px; font-weight: 700; box-shadow: 0 12px 24px rgba(255,183,24,.17); transition: transform .2s ease, box-shadow .2s ease; }
.nav-cta:hover, .button:hover { transform: translateY(-2px); box-shadow: 0 16px 28px rgba(255,183,24,.28); }
.button.secondary { color: var(--ink); background: rgba(255,255,255,.09); box-shadow: none; border: 1px solid var(--line); }
.menu-button { display: none; color: white; background: transparent; border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; font-size: 19px; }
.hero { position: relative; overflow: hidden; padding: 92px 0 100px; }
.hero:before { content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: #6d3eff; filter: blur(140px); opacity: .2; right: -120px; top: -150px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 44px; }
.eyebrow { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; letter-spacing: -.045em; margin: 0; line-height: 1.08; }
h1 { font-size: clamp(42px, 6vw, 76px); max-width: 680px; margin: 16px 0 22px; }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: 20px; }
.hero-copy p, .page-intro p { max-width: 600px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-art { position: relative; min-height: 450px; display: flex; align-items: end; justify-content: center; }
.hero-art:after { content: ''; position: absolute; inset: 10% 3% 0; z-index: -1; border-radius: 42px; background: linear-gradient(145deg, rgba(255,207,66,.22), rgba(110,49,238,.08)); border: 1px solid rgba(255,255,255,.1); transform: rotate(3deg); }
.hero-art img { width: min(100%, 530px); filter: drop-shadow(0 25px 35px rgba(0,0,0,.42)); animation: float 6s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-9px); } }
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); text-align: center; }
.stat { border-right: 1px solid var(--line); } .stat:last-child { border: 0; }
.stat strong { display: block; color: var(--gold); font: 700 26px 'Space Grotesk', sans-serif; } .stat span { color: var(--muted); font-size: 13px; }
.section { padding: 100px 0; }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 34px; }
.section-head p { color: var(--muted); max-width: 480px; line-height: 1.65; margin: 0; }
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.card { padding: 27px; background: var(--panel); border: 1px solid var(--line); border-radius: 18px; transition: transform .25s ease, border-color .25s ease; }
.card:hover { transform: translateY(-5px); border-color: rgba(255,207,66,.55); }
.card-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: #281348; background: var(--gold); font-weight: 700; margin-bottom: 22px; }
.card p { color: var(--muted); line-height: 1.7; font-size: 14px; }
.card a { color: var(--gold); font-size: 14px; font-weight: 700; }
.page-intro { padding: 76px 0 54px; border-bottom: 1px solid var(--line); }
.page-intro h1 { font-size: clamp(40px, 5vw, 62px); max-width: 750px; }
.content-grid { display: grid; grid-template-columns: 1fr 330px; gap: 52px; align-items: start; }
.prose { color: #d7d3e8; line-height: 1.8; font-size: 16px; }
.prose h2 { font-size: 27px; margin: 42px 0 14px; color: #fff; }
.prose h2:first-child { margin-top: 0; } .prose p { margin: 0 0 18px; }
.list { display: grid; gap: 12px; padding: 0; list-style: none; } .list li { position: relative; padding: 16px 18px 16px 48px; border: 1px solid var(--line); border-radius: 12px; color: var(--muted); background: rgba(255,255,255,.04); }
.list li:before { content: '✓'; position: absolute; left: 17px; color: var(--gold); font-weight: 700; }
.side-card { position: sticky; top: 100px; padding: 25px; background: linear-gradient(145deg, rgba(117,65,255,.25), rgba(255,193,27,.1)); border: 1px solid var(--line); border-radius: 18px; }
.side-card p { color: var(--muted); line-height: 1.65; font-size: 14px; }
.faq-list { display: grid; gap: 12px; max-width: 820px; }
details { border: 1px solid var(--line); border-radius: 13px; padding: 19px 21px; background: rgba(255,255,255,.04); }
summary { cursor: pointer; font-weight: 700; list-style: none; } summary::-webkit-details-marker { display: none; } details p { color: var(--muted); line-height: 1.7; margin: 15px 0 0; font-size: 14px; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px; }
.contact-box { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--panel); }
.contact-box p { color: var(--muted); line-height: 1.7; } .contact-link { display: block; color: var(--gold); font-weight: 700; margin: 18px 0; }
form { display: grid; gap: 16px; } label { display: grid; gap: 8px; color: #e4e0f3; font-size: 13px; font-weight: 600; } input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 14px; background: rgba(0,0,0,.17); color: white; font: inherit; outline: none; } input:focus, textarea:focus { border-color: var(--gold); } textarea { min-height: 140px; resize: vertical; }
.site-footer { margin-top: 30px; padding: 42px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer-grid { display: flex; justify-content: space-between; gap: 25px; align-items: center; } .footer-links { display: flex; flex-wrap: wrap; gap: 18px; } .footer-links a:hover { color: var(--gold); }
@media (max-width: 800px) { .nav-links { display: none; position: absolute; top: 76px; left: 20px; right: 20px; padding: 10px; border: 1px solid var(--line); border-radius: 14px; background: #15103d; flex-direction: column; align-items: stretch; } .nav-links.open { display: flex; } .nav-links a { text-align: center; } .menu-button { display: block; } .nav-cta { display: none; } .hero-grid, .content-grid, .contact-grid { grid-template-columns: 1fr; } .hero { padding-top: 65px; } .hero-art { min-height: auto; order: -1; } .hero-art img { max-height: 380px; object-fit: contain; } .section { padding: 72px 0; } .cards { grid-template-columns: 1fr; } .section-head { display: block; } .section-head p { margin-top: 14px; } .side-card { position: static; } }
@media (max-width: 500px) { .container { width: min(100% - 28px, 1160px); } .stats-grid { gap: 8px; } .stat strong { font-size: 20px; } .stat span { font-size: 11px; } .footer-grid { flex-direction: column; align-items: flex-start; } }
