:root {
  --bg:         #0a0a0a;
  --surface:    #141420;
  --surface-2:  #1a1830;
  --border:     #352868;
  --border-2:   #4a3880;
  --purple:     #c4b0ff;
  --purple-d:   #7c3aed;
  --purple-bg:  #1e1532;
  --purple-bdr: #4a3880;
  --white:      #ffffff;
  --gray-1:     #ffffff;
  --gray-2:     #ede9f8;
  --gray-3:     #c8c0e0;
  --gray-4:     #a89fc0;
  --gray-5:     #9088a8;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--gray-2);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 2.5rem 0;
  border-bottom: 0.5px solid var(--border);
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.btn-primary {
  display: inline-block;
  background: var(--purple-d);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.85; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gray-2);
  border: 0.5px solid var(--border-2);
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: border-color 0.15s;
}
.btn-outline:hover { border-color: var(--purple); }
