*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0b0b10;
  --bg2: #111118;
  --accent: #c084fc;
  --accent2: #e9d5ff;
  --accent-dim: rgba(192, 132, 252, 0.08);
  --accent-border: rgba(192, 132, 252, 0.2);
  --text: #f5f0ff;
  --text2: #a89bc2;
  --text3: #747180;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  min-height: 100vh;
  line-height: 1.7;
}

/* Nav */
nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 32px; height: 32px; border-radius: 10px;
  background: linear-gradient(135deg, #c084fc, #818cf8);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.logo-text { font-family: var(--serif); font-size: 20px; color: var(--text); font-weight: 400; letter-spacing: -0.02em; }
.back-link { font-size: 13px; color: var(--text3); text-decoration: none; font-family: var(--sans); transition: color 0.2s; }
.back-link:hover { color: var(--text2); }

/* Container */
.container { max-width: 680px; margin: 0 auto; padding: 80px 24px 120px; }

/* Header */
.page-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text3); font-family: var(--sans); margin-bottom: 16px;
}
.page-title {
  font-family: var(--serif); font-size: clamp(36px, 6vw, 56px);
  font-weight: 300; color: var(--text); line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.page-title em { font-style: italic; color: var(--accent2); }
.page-date { font-size: 13px; color: var(--text3); font-family: var(--sans); margin-bottom: 64px; }

/* Intro box */
.intro {
  background: var(--accent-dim); border: 1px solid var(--accent-border);
  border-radius: 12px; padding: 24px 28px; margin-bottom: 56px;
}
.intro p { font-size: 15px; color: var(--text2); font-family: var(--sans); font-weight: 300; line-height: 1.7; }
.intro strong { color: var(--accent2); font-weight: 500; }

/* Sections */
.section { margin-bottom: 48px; }
.section-num {
  font-family: var(--serif); font-size: 12px; font-style: italic;
  color: var(--text3); margin-bottom: 8px;
}
h2 {
  font-family: var(--serif); font-size: 24px; font-weight: 400;
  color: var(--text); margin-bottom: 16px; letter-spacing: -0.01em;
}
p { font-size: 15px; color: var(--text2); font-weight: 300; margin-bottom: 16px; line-height: 1.75; }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); font-weight: 500; }

ul { list-style: none; padding: 0; margin: 16px 0; display: flex; flex-direction: column; gap: 10px; }
ul li {
  font-size: 15px; color: var(--text2); font-weight: 300;
  padding-left: 20px; position: relative; line-height: 1.65;
}
ul li::before { content: '–'; position: absolute; left: 0; color: var(--text3); }

.divider { height: 1px; background: rgba(255,255,255,0.04); margin: 48px 0; }

/* Highlight box */
.highlight-box {
  background: var(--bg2); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; padding: 20px 24px; margin: 20px 0;
}
.highlight-box p { margin-bottom: 0; }

/* Contact box */
.contact-box {
  background: var(--accent-dim); border: 1px solid var(--accent-border);
  border-radius: 12px; padding: 28px 32px; margin-top: 48px;
  text-align: center;
}
.contact-box h3 { font-family: var(--serif); font-size: 20px; color: var(--text); margin-bottom: 8px; font-weight: 400; }
.contact-box p { font-size: 14px; color: var(--text2); margin-bottom: 12px; }
.contact-box a { color: var(--accent2); text-decoration: none; font-weight: 500; }
.contact-box a:hover { text-decoration: underline; }

/* Footer */
footer {
  padding: 40px 48px; border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo { font-family: var(--serif); font-size: 18px; color: var(--text3); font-weight: 300; }
.footer-note { font-size: 12px; color: var(--text3); font-family: var(--sans); font-weight: 300; }

/* Mobile */
@media (max-width: 640px) {
  nav { padding: 16px 24px; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
}