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

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

:root {
  --black:    #0A0A0F;
  --deep:     #12121A;
  --card:     #1A1A26;
  --border:   rgba(255,255,255,0.08);
  --accent:   #7B5CFA;
  --accent2:  #FA5C9A;
  --white:    #FAFAFF;
  --muted:    rgba(250,250,255,0.45);
  --gradient: linear-gradient(135deg, #7B5CFA, #FA5C9A);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(10,10,15,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.15s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--gradient) !important; color: var(--white) !important; padding: 9px 22px !important; border-radius: 50px !important; font-weight: 500 !important; }

.page-wrap { max-width: 1100px; margin: 0 auto; padding: 140px 24px 100px; }
.page-wrap.narrow { max-width: 760px; }

.page-hero { text-align: center; margin-bottom: 72px; }
.eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; display: block; }

h1 { font-family: 'Syne', sans-serif; font-size: clamp(32px, 5vw, 56px); font-weight: 800; line-height: 1.08; margin-bottom: 18px; }
h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 18px; color: var(--muted); font-weight: 300; max-width: 540px; margin: 0 auto; line-height: 1.7; }

.btn-primary { display: inline-block; background: var(--gradient); color: var(--white); padding: 14px 32px; border-radius: 50px; font-size: 15px; font-weight: 500; text-decoration: none; transition: opacity 0.15s, transform 0.15s; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-secondary { display: inline-block; background: transparent; color: var(--white); padding: 14px 32px; border-radius: 50px; font-size: 15px; font-weight: 400; text-decoration: none; border: 1px solid var(--border); transition: border-color 0.15s; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn-secondary:hover { border-color: rgba(255,255,255,0.3); }

footer { border-top: 1px solid var(--border); padding: 32px 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
footer p { font-size: 13px; color: var(--muted); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }

@media (max-width: 640px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .page-wrap { padding: 120px 20px 80px; }
}
