/* BASE */
:root {
  --bg: #FDF6F0;
  --surface: #FFFFFF;
  --text: #1A0F2E;
  --text-muted: #6B5A7A;
  --accent: #7B3E8C;
  --accent-soft: #D4A5E8;
  --rose: #E8B4BC;
  --violet: #2D1B4E;
  --border: rgba(45, 27, 78, 0.1);
  --radius: 16px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--violet);
  letter-spacing: -0.5px;
}

.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 48px 80px;
  min-height: calc(100vh - 80px);
  background: linear-gradient(160deg, #FDF6F0 0%, #F5E8F7 60%, #EDE4FF 100%);
}

.hero-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
  color: var(--violet);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-body {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.7;
}

/* CHARACTER GRID */
.character-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 8px;
}

.char-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(45, 27, 78, 0.06);
  transition: transform 0.2s ease;
}

.char-card:hover {
  transform: translateY(-3px);
}

.char-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
}

.av-rose { background: linear-gradient(135deg, #FFB6C1, #FF8FAB); }
.av-midnight { background: linear-gradient(135deg, #6B3FA0, #9B6FD4); }
.av-warm { background: linear-gradient(135deg, #FFCBA4, #FF9E6D); }
.av-slate { background: linear-gradient(135deg, #7EB8D4, #4A9CC2); }

.char-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.char-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--violet);
}

.char-tag {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg);
  padding: 2px 8px;
  border-radius: 20px;
  width: fit-content;
}

/* CATEGORIES */
.categories {
  padding: 80px 48px;
  background: var(--surface);
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--violet);
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cat-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  cursor: default;
}

.cat-card:hover {
  background: var(--violet);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(45, 27, 78, 0.15);
}

.cat-card:hover .cat-icon {
  background: rgba(255,255,255,0.15);
}

.cat-card:hover p {
  color: rgba(255,255,255,0.75);
}

.cat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--border);
  margin-bottom: 16px;
}

.cat-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: inherit;
}

.cat-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* HOW IT WORKS */
.howitworks {
  padding: 80px 48px;
  background: var(--violet);
  color: white;
}

.hiw-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}

.hiw-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  opacity: 0.3;
  line-height: 1;
}

.step-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.hiw-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* MANIFESTO */
.manifesto {
  padding: 80px 48px;
  background: var(--bg);
  text-align: center;
}

.manifesto-inner {
  max-width: 640px;
  margin: 0 auto;
}

.manifesto-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--violet);
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 28px;
}

.manifesto-text em {
  font-style: italic;
  color: var(--accent);
}

.manifesto-end {
  margin-top: 40px;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  background: linear-gradient(180deg, #FDF6F0 0%, #F0E4F7 100%);
  text-align: center;
}

.closing-inner {
  max-width: 600px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 600;
  color: var(--violet);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.closing-body {
  font-size: 18px;
  color: var(--text-muted);
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  background: var(--violet);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-note {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    min-height: auto;
    gap: 40px;
  }

  .hero-body { max-width: 100%; }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hiw-inner {
    flex-direction: column;
    gap: 32px;
  }

  .hiw-divider { display: none; }

  .navbar, .categories, .howitworks, .manifesto, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section-title { font-size: 36px; }
}

@media (max-width: 600px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }

  .hero-headline { font-size: 38px; }

  .character-grid {
    grid-template-columns: 1fr;
  }
}