@font-face {
  font-family: 'Unbounded';
  src: url('fonts/unbounded-latin-900-normal.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Unbounded';
  src: url('fonts/unbounded-latin-700-normal.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Instrument Sans';
  src: url('fonts/instrument-sans-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Instrument Sans';
  src: url('fonts/instrument-sans-latin-400-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Instrument Sans';
  src: url('fonts/instrument-sans-latin-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}

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

:root {
  --bg: #07070E;
  --bg2: #0D0D18;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --purple: #6B00FF;
  --purple-bright: #7C1FFF;
  --purple-glow: rgba(107,0,255,0.12);
  --text: #EEEDF5;
  --muted: #74738A;
  --dim: #363548;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  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: 0 5%; height: 90px;
  background: rgba(7,7,14,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; display: block; }
nav ul { display: flex; align-items: center; gap: 32px; list-style: none; }
nav ul a {
  text-decoration: none; color: var(--muted);
  font-size: 13px; font-weight: 400; letter-spacing: 0.01em;
  transition: color 0.18s;
}
nav ul a:hover { color: var(--text); }
.nav-cta {
  background: var(--purple) !important; color: #fff !important;
  padding: 9px 20px !important; border-radius: 6px !important;
  font-size: 13px !important; font-weight: 500 !important;
  transition: background 0.18s !important;
}
.nav-cta:hover { background: var(--purple-bright) !important; }

.btn-primary {
  background: var(--purple); color: #fff;
  padding: 13px 28px; border-radius: 7px;
  font-size: 14px; font-weight: 500;
  text-decoration: none; display: inline-block; line-height: 1;
  transition: background 0.18s, transform 0.12s;
}
.btn-primary:hover { background: var(--purple-bright); transform: translateY(-1px); }

.btn-ghost {
  color: var(--muted); font-size: 14px; font-weight: 400;
  text-decoration: none; display: inline-flex; align-items: center; gap: 7px;
  transition: color 0.18s;
}
.btn-ghost::after { content: '→'; transition: transform 0.18s; }
.btn-ghost:hover { color: var(--text); }
.btn-ghost:hover::after { transform: translateX(3px); }

.btn-white {
  background: #fff; color: var(--purple);
  padding: 13px 32px; border-radius: 7px;
  font-size: 14px; font-weight: 500;
  text-decoration: none; display: inline-block; line-height: 1;
  white-space: nowrap; transition: opacity 0.18s, transform 0.12s;
}
.btn-white:hover { opacity: 0.9; transform: translateY(-1px); }

.section-label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--purple-bright); margin-bottom: 16px;
}

.eyebrow {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--dim); display: block; flex-shrink: 0; }

.cta-wrap { padding: 72px 5% 96px; max-width: 1280px; margin: 0 auto; }
.cta-inner {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; padding: 72px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.cta-inner::after {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(20px, 2.6vw, 32px); font-weight: 700;
  letter-spacing: -0.022em; line-height: 1.18;
  max-width: 460px; margin-bottom: 12px;
}
.cta-inner p { font-size: 15px; color: var(--muted); font-weight: 400; max-width: 380px; line-height: 1.65; }
.cta-right { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; flex-shrink: 0; }
.cta-note { font-size: 11px; color: var(--dim); }

footer {
  border-top: 1px solid var(--border); padding: 32px 5%;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-logo img { height: 40px; width: auto; }
footer p { font-size: 12px; color: var(--dim); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: var(--dim); text-decoration: none; transition: color 0.18s; }
.footer-links a:hover { color: var(--muted); }

@media (max-width: 900px) {
  .cta-inner { padding: 48px 36px; }
  .cta-right { align-items: flex-start; }
}
@media (max-width: 600px) {
  nav { padding: 0 3%; height: 64px; }
  .nav-logo img { height: 22px; }
  nav ul { gap: 10px; }
  nav ul a { font-size: 11px; }
  .nav-cta { padding: 7px 10px !important; font-size: 11px !important; white-space: nowrap !important; }
  .cta-inner { padding: 36px 24px; }
}
