/* AgentLaunch Theme */

:root {
  --nav-bg: #0f172a;
  --bg-dark: #0f172a;
  --bg-mid: #162032;
  --bg-cream: #fefce8;
  --bg-white: #ffffff;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --text-dark: #0f172a;
  --text-mid: #334155;
  --text-light: #94a3b8;
  --text-white: #f8fafc;
  --text-cream: #fef9c3;
  --border: #1e3a5f;
  --timeline-line: #f59e0b;
}

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

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

/* Navigation */
.nav {
  padding: 1.25rem 2rem;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

/* Hero */
.hero {
  padding: 5rem 2rem 5rem;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 480px;
}

/* Hero Badge */
.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-badge {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  width: 100%;
  max-width: 340px;
}
.badge-year {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.badge-phases { display: flex; flex-direction: column; gap: 0.75rem; }
.phase {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1rem;
  background: rgba(245,158,11,0.08);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}
.phase-year { border-left-color: var(--accent-dark); background: rgba(245,158,11,0.15); }
.phase-days { font-size: 0.85rem; font-weight: 700; color: var(--text-white); }
.phase-label { font-size: 0.8rem; color: var(--text-light); }

/* Problem Section */
.problem {
  background: var(--bg-mid);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.problem-stat {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.05em;
}
.problem-context {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.problem-hook {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-white);
}

/* Roadmap / Timeline */
.roadmap {
  background: var(--bg-dark);
  padding: 5rem 2rem;
}
.roadmap-inner { max-width: 900px; margin: 0 auto; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.timeline-item:last-child { border-bottom: none; }

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0.25rem;
}
.marker-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.timeline-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
}
.timeline-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.timeline-list li {
  font-size: 0.95rem;
  color: var(--text-light);
  padding-left: 1.25rem;
  position: relative;
}
.timeline-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Modules Section */
.modules {
  background: var(--bg-cream);
  padding: 5rem 2rem;
}
.modules-inner { max-width: 1100px; margin: 0 auto; }
.modules .section-title { color: var(--text-dark); }
.modules .section-sub { color: var(--text-mid); }

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.module-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.module-icon {
  color: var(--accent-dark);
  margin-bottom: 1.25rem;
}
.module-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.module-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Credentials */
.credentials {
  background: var(--bg-dark);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
}
.credentials-inner { max-width: 1100px; margin: 0 auto; }
.cred-badge { margin-bottom: 3rem; }
.cred-tag {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-light);
}
.cred-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.cred-point {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
}
.cred-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.cred-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Manifesto */
.manifesto {
  background: var(--bg-mid);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--text-white);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
}
.manifesto-quote::before {
  content: '\201C';
  font-size: 6rem;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: -2.5rem;
  left: -1rem;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.manifesto-attr {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-white);
  display: block;
  margin-bottom: 0.25rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-light);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .hero-badge { max-width: 100%; }
  .cred-points { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-marker { flex-direction: row; align-items: center; gap: 0.75rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .module-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 1.25rem; }
  .problem, .roadmap, .modules, .credentials, .manifesto { padding: 3.5rem 1.25rem; }
  .hero-headline { font-size: 2.25rem; }
  .problem-stat { font-size: 5rem; }
}