:root {
  --bg: #0b0716;
  --bg-alt: #130a28;
  --accent: #ff6b35;
  --accent-soft: rgba(255, 107, 53, 0.12);
  --text-main: #f7f7ff;
  --text-muted: #c4c4dd;
  --border-subtle: rgba(255,255,255,0.06);
  --card-bg: rgba(15, 10, 35, 0.95);
  --shadow-soft: 0 18px 45px rgba(0,0,0,0.45);
  --radius-xl: 22px;
  --radius-full: 999px;
  --transition-fast: 0.2s ease;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-main);
  background: radial-gradient(circle at top left,#1b1038 0,#050309 55%,#020108 100%);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 16px 64px;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(120deg, rgba(16,10,40,0.96), rgba(8,4,24,0.96));
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  position: sticky;
  top: 12px;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 0%, #ffb347 0, #ff6b35 40%, #f72585 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4);
}

.nav-title { display: flex; flex-direction: column; gap: 2px; }

.nav-title span:first-child {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-title span:last-child {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--text-muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg,#ff6b35,#ffb347);
  transition: width var(--transition-fast);
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(120deg,#ff6b35,#ffb347);
  color: #140814;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0,0,0,0.55);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 18px 40px rgba(0,0,0,0.7);
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--text-main);
  font-size: 22px;
  cursor: pointer;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 32px;
  margin-top: 32px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.5);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.hero-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 0,#fff,#0f0);
  box-shadow: 0 0 10px rgba(0,255,150,0.9);
}

.hero h1 {
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.15;
  margin: 0 0 12px;
}

.hero h1 span {
  background: linear-gradient(120deg,#ffb347,#ff6b35,#f72585);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 32rem;
}

.hero-list {
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero-list li { display: flex; align-items: center; gap: 8px; }

.hero-bullet {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(255,107,53,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #ffb347;
}

.hero-actions {
  display: flex;
  flex-wrap: w
