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

:root {
  --bg: #080B14;
  --bg2: #0D1120;
  --card: rgba(255,255,255,0.055);
  --border: rgba(255,255,255,0.10);
  --text: #F0F4FF;
  --muted: rgba(255,255,255,0.50);
  --purple: #7C6FFF;
  --purple-dim: rgba(124,111,255,0.15);
  --gold: #F7B731;
  --radius: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(8,11,20,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo { text-decoration: none; font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.logo-ink  { color: var(--purple); }
.logo-words{ color: var(--text); }

.nav-links { display: flex; gap: 8px; }
.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.nav-link:hover { color: var(--text); background: var(--card); }
.nav-link.active {
  color: var(--purple);
  background: var(--purple-dim);
  border-color: rgba(124,111,255,0.3);
}

/* ── Content ── */
.content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--purple);
  background: var(--purple-dim);
  border: 1px solid rgba(124,111,255,0.3);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.page-title {
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 40%, rgba(255,255,255,0.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.page-meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 36px;
}
.page-meta strong { color: rgba(255,255,255,0.75); }

/* ── Index Hero ── */
.hero {
  text-align: center;
  padding: 80px 24px;
  max-width: 640px;
  margin: 0 auto;
}
.hero .page-title { margin-bottom: 20px; }
.hero-desc {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}
.hero-card {
  display: block;
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-dim), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.hero-card:hover { border-color: rgba(124,111,255,0.4); transform: translateY(-2px); }
.hero-card:hover::before { opacity: 1; }
.hero-card-icon { font-size: 28px; margin-bottom: 12px; }
.hero-card-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.hero-card-desc  { font-size: 13px; color: var(--muted); line-height: 1.5; }
.hero-card-arrow { position: absolute; top: 24px; right: 20px; color: var(--muted); font-size: 18px; transition: transform 0.2s; }
.hero-card:hover .hero-card-arrow { transform: translateX(4px); color: var(--purple); }

/* ── Intro Card ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 40px;
  border-left: 3px solid var(--purple);
}
.intro { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.8; }
.intro strong { color: var(--text); }

/* ── Sections ── */
.section {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section:last-of-type { border-bottom: none; }

.section h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.4px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section h2::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background: var(--purple);
  border-radius: 2px;
  flex-shrink: 0;
}

.section h3 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 20px 0 8px;
}

.section p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 12px;
}

.section ul {
  list-style: none;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.section ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-size: 12px;
  top: 2px;
}
.section ul li strong { color: rgba(255,255,255,0.85); }

.highlight-box {
  background: rgba(124,111,255,0.10);
  border: 1px solid rgba(124,111,255,0.25);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-top: 16px;
}
.highlight-box strong { color: var(--text); }

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
}
.contact-card p { margin-bottom: 8px; }
.contact-card p:last-child { margin-bottom: 0; }

.link {
  color: var(--purple);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(124,111,255,0.3);
  transition: border-color 0.2s;
}
.link:hover { border-color: var(--purple); }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-logo { font-size: 20px; font-weight: 800; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ── Responsive ── */
@media (max-width: 600px) {
  .navbar { padding: 14px 20px; }
  .nav-link { font-size: 13px; padding: 7px 12px; }
  .content { padding: 40px 16px 72px; }
  .card { padding: 20px; }
  .hero-cards { grid-template-columns: 1fr; }
}
