/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --terracotta: #C4622D;
  --terracotta-dark: #8B3E1B;
  --terracotta-light: #D4835A;
  --sand: #F5EDE4;
  --sand-dark: #E8DDD0;
  --charcoal: #1A1A1A;
  --charcoal-light: #2D2D2D;
  --amber: #E8B86D;
  --white: #FFFFFF;
  --text-muted: #6B6B6B;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --max-w: 1100px;
  --max-w-narrow: 760px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--sand);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--space-sm);
}

/* === HERO === */
.hero {
  background: var(--sand);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 55%;
  height: 130%;
  background: radial-gradient(ellipse at center, rgba(196,98,45,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-left { display: flex; flex-direction: column; gap: var(--space-md); }

.hero-accent-bar {
  width: 48px;
  height: 4px;
  background: var(--terracotta);
  border-radius: 2px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
}

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

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

.hero-proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-xs);
}

.proof-chip {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3em 0.8em;
  border: 1.5px solid var(--terracotta);
  border-radius: 100px;
  color: var(--terracotta);
  letter-spacing: 0.03em;
}

/* Hero Visual Frame */
.hero-right { display: flex; justify-content: center; align-items: center; }

.hero-visual-frame {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 8px 40px rgba(26,26,26,0.1), 0 2px 8px rgba(26,26,26,0.06);
}

.vf-top { padding: var(--space-md); background: var(--charcoal); }

.vf-header { display: flex; align-items: center; gap: var(--space-sm); margin-bottom: var(--space-md); }

.vf-dots { display: flex; gap: 5px; }
.vf-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.25); display: block; }
.vf-dots span:nth-child(1) { background: #FF5F57; }
.vf-dots span:nth-child(2) { background: #FEBC2E; }
.vf-dots span:nth-child(3) { background: #28C840; }

.vf-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.15); border-radius: 3px; }

.vf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: var(--space-sm); }

.vf-col { display: flex; flex-direction: column; gap: 6px; }

.vf-post {
  border-radius: 5px;
  height: 60px;
  position: relative;
  overflow: hidden;
}

.vf-post::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(0,0,0,0.15));
  border-radius: 0 0 5px 5px;
}

.p1 { background: linear-gradient(135deg, #C4622D 0%, #E8B86D 100%); }
.p2 { background: linear-gradient(135deg, #2D4A3E 0%, #5A8A6F 100%); }
.p3 { background: linear-gradient(135deg, #4A3728 0%, #8B6B4E 100%); }
.p4 { background: linear-gradient(135deg, #E8B86D 0%, #F5EDE4 100%); }
.p5 { background: linear-gradient(135deg, #8B3E1B 0%, #C4622D 100%); }
.p6 { background: linear-gradient(135deg, #1A1A1A 0%, #3D3D3D 100%); }
.p7 { background: linear-gradient(135deg, #5A4A3A 0%, #9A7B5A 100%); }
.p8 { background: linear-gradient(135deg, #D4835A 0%, #F0C4A0 100%); }
.p9 { background: linear-gradient(135deg, #3D2B1F 0%, #6B4E3A 100%); }

.vf-label-row { display: flex; justify-content: space-between; align-items: center; }

.vf-label { font-size: 0.65rem; color: rgba(255,255,255,0.5); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }

.vf-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.2em 0.6em;
  background: var(--terracotta);
  color: white;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.vf-bottom {
  background: var(--sand);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.vf-stat { text-align: center; flex: 1; }
.vf-num { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--charcoal); }
.vf-desc { display: block; font-size: 0.62rem; color: var(--text-muted); margin-top: 2px; line-height: 1.3; }
.vf-divider { width: 1px; height: 30px; background: var(--sand-dark); }

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--terracotta), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-hint span { font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* === MANIFESTO === */
.manifesto {
  background: var(--charcoal);
  color: var(--sand);
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(196,98,45,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.manifesto-inner { max-width: var(--max-w); margin: 0 auto; }

.manifesto-label { color: var(--terracotta-light); margin-bottom: var(--space-md); }

.manifesto-headline {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--sand);
  margin-bottom: var(--space-lg);
}

.m-highlight {
  color: var(--terracotta);
  font-style: italic;
}

.manifesto-body {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.manifesto-body p { font-size: 1rem; color: rgba(245,237,228,0.75); line-height: 1.75; }

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--sand);
  border-left: 3px solid var(--terracotta);
  padding-left: var(--space-md);
  margin-bottom: var(--space-md);
  max-width: 500px;
  line-height: 1.5;
}

.manifesto-ans {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--amber);
}

/* === PROOF === */
.proof {
  background: var(--sand);
  padding: var(--space-3xl) var(--space-lg);
}

.proof-inner { max-width: var(--max-w); margin: 0 auto; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.proof-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: 0 2px 12px rgba(26,26,26,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(26,26,26,0.12);
}

.pc-icon { margin-bottom: var(--space-md); }

.pc-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

.pc-body { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

.proof-callout {
  background: var(--charcoal);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
}

.callout-text { font-size: 1rem; color: var(--sand); }
.callout-text strong { color: var(--amber); }

/* === PLAYBOOK === */
.playbook {
  background: var(--sand-dark);
  padding: var(--space-3xl) var(--space-lg);
}

.playbook-inner { max-width: var(--max-w); margin: 0 auto; }

.playbook-header { margin-bottom: var(--space-xl); }

.playbook-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}

.playbook-steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid rgba(26,26,26,0.1);
  align-items: start;
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--terracotta);
  opacity: 0.25;
  line-height: 1;
  padding-top: 4px;
}

.step-content { padding-top: 4px; }

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

.step-body { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; max-width: 560px; }

.playbook-cta-row { margin-top: var(--space-xl); }

.playbook-cta-box {
  border: 2px solid var(--terracotta);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
}

.cta-box-text { font-size: 1rem; color: var(--charcoal); font-weight: 500; }

/* === CLOSING === */
.closing {
  background: var(--charcoal);
  padding: var(--space-3xl) var(--space-lg);
  text-align: center;
}

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

.closing-brand { display: flex; align-items: center; justify-content: center; gap: var(--space-sm); margin-bottom: var(--space-xl); }

.brand-mark {
  width: 44px;
  height: 44px;
  background: var(--terracotta);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--sand);
  letter-spacing: 0.02em;
}

.closing-headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--sand);
  line-height: 1.3;
  margin-bottom: var(--space-md);
}

.closing-sub { font-size: 0.95rem; color: rgba(245,237,228,0.65); line-height: 1.75; margin-bottom: var(--space-xl); }

.closing-sail { display: flex; justify-content: center; }
.closing-sail svg { width: 120px; }

/* === FOOTER === */
.site-footer {
  background: var(--charcoal-light);
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner { max-width: var(--max-w); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }

.footer-brand { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--sand); }

.footer-tagline { font-size: 0.78rem; color: rgba(245,237,228,0.45); margin-left: var(--space-sm); }

.footer-right { display: flex; align-items: center; gap: var(--space-sm); }

.footer-note { font-size: 0.75rem; color: rgba(245,237,228,0.4); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { padding: var(--space-lg) var(--space-md); }
  .hero-inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .hero-right { order: -1; }
  .hero-visual-frame { max-width: 300px; }
  .hero-headline { font-size: 2.2rem; }

  .proof-grid { grid-template-columns: 1fr; gap: var(--space-md); }

  .step { grid-template-columns: 60px 1fr; gap: var(--space-md); }
  .step-num { font-size: 2rem; }

  .footer-inner { flex-direction: column; gap: var(--space-sm); text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.8rem; }
  .proof-callout { padding: var(--space-md); }
}