@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,400&display=swap');

:root {
  --bg-deep: #0a0a0f;
  --bg-warm: #141218;
  --bg-card: #1c1a22;
  --gold: #d4a853;
  --gold-light: #e8c97a;
  --gold-dim: rgba(212, 168, 83, 0.15);
  --text-primary: #f0ece4;
  --text-secondary: #9e978a;
  --text-muted: #6b6560;
  --accent-warm: #c4704b;
  --glow: rgba(212, 168, 83, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Source Serif 4', Georgia, serif;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(212, 168, 83, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 30% 80%, rgba(196, 112, 75, 0.04) 0%, transparent 60%),
    var(--bg-deep);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-primary);
  max-width: 800px;
  margin-bottom: 2rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
  display: inline;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.8;
  font-weight: 300;
}

.scroll-line {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.4;
}

/* ===== ORIGIN STORY ===== */
.origin {
  padding: 7rem 2rem;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.origin::before {
  content: '\201C';
  font-family: 'Syne', sans-serif;
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: 3rem;
  left: -0.5rem;
  line-height: 1;
}

.origin blockquote {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  color: var(--text-primary);
  line-height: 1.9;
  font-weight: 300;
  font-style: italic;
  border-left: 2px solid var(--gold-dim);
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.origin .attribution {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  padding-left: 2rem;
}

/* ===== PILLARS ===== */
.pillars {
  padding: 6rem 2rem;
  background: var(--bg-warm);
  position: relative;
}

.pillars::before,
.pillars::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.pillars::before { top: 0; }
.pillars::after { bottom: 0; }

.pillars-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.pillars-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.pillars-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 300;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.pillar {
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 83, 0.08);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.3s ease;
}

.pillar:hover {
  border-color: rgba(212, 168, 83, 0.2);
}

.pillar-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.pillar h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.pillar p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* ===== WHO THIS IS FOR ===== */
.audience {
  padding: 7rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.audience h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.audience-list li {
  font-size: 1.1rem;
  color: var(--text-secondary);
  padding: 1.2rem 1.5rem;
  border-left: 2px solid var(--gold-dim);
  background: linear-gradient(90deg, var(--glow), transparent 60%);
  font-weight: 300;
  transition: border-color 0.3s ease;
}

.audience-list li:hover {
  border-left-color: var(--gold);
}

.audience-list li strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 80%, rgba(212, 168, 83, 0.05) 0%, transparent 70%),
    var(--bg-deep);
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.15;
}

.closing h2 em {
  font-style: normal;
  color: var(--gold);
}

.closing p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(212, 168, 83, 0.06);
}

.footer-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .hero {
    padding: 4rem 1.5rem;
  }

  .origin {
    padding: 5rem 1.5rem;
  }
  
  .origin blockquote {
    padding-left: 1.25rem;
  }
  
  .origin .attribution {
    padding-left: 1.25rem;
  }

  .audience {
    padding: 5rem 1.5rem;
  }
  
  .closing {
    padding: 5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .origin::before {
    font-size: 5rem;
  }
}