/* ============================================
   Launchpad Agency — Custom Theme
   ============================================ */

:root {
  --bg: #FAFAF8;
  --bg-alt: #F2F0EC;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #D97706;
  --accent-light: #FEF3C7;
  --border: #E5E2DC;
  --white: #FFFFFF;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
.site-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.logo-accent { color: var(--accent); }

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover { color: var(--fg); }

/* Hero */
.hero {
  padding: 100px 0 80px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.proof-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  position: relative;
}

/* Abstract shape inside card */
.proof-shape {
  width: 100%;
  height: 100px;
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 50%, #D97706 100%);
  border-radius: 8px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.proof-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.line {
  height: 8px;
  background: var(--bg-alt);
  border-radius: 4px;
}

.line-1 { width: 100%; background: var(--border); }
.line-2 { width: 80%; }
.line-3 { width: 60%; }
.line-4 { width: 70%; }
.line-5 { width: 40%; }

.proof-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

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

.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* Section common */
.section-header {
  margin-bottom: 56px;
}

.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
}

/* Manifesto */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 0;
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 60px;
  align-items: start;
}

.manifesto-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 8px;
}

.manifesto-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 28px;
  color: var(--bg);
  font-weight: 700;
}

.manifesto-content p {
  font-size: 1.05rem;
  color: #C8C4BC;
  line-height: 1.8;
  margin-bottom: 20px;
}

.manifesto-content strong {
  color: var(--bg);
  font-weight: 600;
}

/* Process */
.process {
  padding: 100px 0;
  background: var(--bg-alt);
}

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

.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: box-shadow 0.3s;
}

.process-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}

.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
  line-height: 1;
}

.process-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Outcomes */
.outcomes {
  padding: 100px 0;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

.outcome-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.outcome-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.outcome-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.outcome-item p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Closing */
.closing {
  background: var(--bg-alt);
  padding: 100px 0;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.closing-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 28px;
}

.closing-inner p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem !important;
  color: var(--fg) !important;
  font-style: italic;
}

/* Footer */
.site-footer {
  background: var(--fg);
  color: var(--bg);
  padding: 60px 0 32px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  font-size: 1.3rem;
  color: var(--bg);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: #6B6560;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6B6560;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: #C8C4BC;
  font-size: 0.875rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--bg); }

.footer-bottom {
  border-top: 1px solid #2A2A2A;
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #6B6560;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; gap: 40px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero { padding: 60px 0 60px; }
  .manifesto, .process, .outcomes, .closing { padding: 60px 0; }
  .nav { gap: 16px; }
  .hero-stats { grid-template-columns: 1fr; }
  .stat { display: flex; align-items: center; gap: 12px; text-align: left; }
}
