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

:root {
  --bg: #F6F1EC;
  --bg-alt: #EAE2D8;
  --fg: #1C1A17;
  --fg-muted: #6B6560;
  --accent: #2E4A35;
  --accent-light: #3D6348;
  --amber: #C17F3C;
  --amber-light: #D4944E;
  --cream: #FAF7F3;
  --border: rgba(28, 26, 23, 0.1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(246, 241, 236, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

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

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

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, #F6F1EC 0%, #EAE2D8 40%, #D9CFBE 70%, #C9BFAE 100%);
}

.hero-geo {
  position: absolute;
  border-radius: 50%;
}

.hero-geo-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(46, 74, 53, 0.12) 0%, transparent 70%);
}

.hero-geo-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: 10%;
  background: radial-gradient(circle, rgba(193, 127, 60, 0.15) 0%, transparent 70%);
}

.hero-geo-3 {
  width: 300px;
  height: 300px;
  top: 30%;
  left: 55%;
  background: radial-gradient(circle, rgba(46, 74, 53, 0.08) 0%, transparent 70%);
  border: 1px solid rgba(46, 74, 53, 0.1);
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  display: inline-block;
  border: 1px solid rgba(193, 127, 60, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 16ch;
  margin-bottom: 32px;
}

.hero-lede {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--fg-muted);
  max-width: 55ch;
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 40px 20px 0;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  max-width: 14ch;
  line-height: 1.4;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-right: 40px;
}

/* === PROOF === */
.proof {
  background: var(--fg);
  color: var(--cream);
  padding: 80px 40px;
}

.proof-inner { max-width: 1200px; margin: 0 auto; }

.proof-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 40px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.proof-card {
  background: var(--fg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
}

.proof-card:hover { background: rgba(255,255,255,0.05); }

.proof-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(193, 127, 60, 0.2);
  border-radius: 10px;
  color: var(--amber-light);
}

.proof-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 120px 40px;
  background: var(--cream);
}

.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.philosophy-overline {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: block;
}

.philosophy-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--fg);
  grid-column: 1;
}

.philosophy-body {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.philosophy-body p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

.philosophy-pull {
  grid-column: 1 / -1;
  background: var(--fg);
  border-radius: 16px;
  padding: 40px 48px;
  margin-top: 20px;
}

.philosophy-pull blockquote {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 16px;
}

.philosophy-pull cite {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  font-style: normal;
}

/* === HOW === */
.how {
  padding: 120px 40px;
  background: var(--bg);
}

.how-inner { max-width: 1200px; margin: 0 auto; }

.how-overline {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: block;
}

.how-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 64px;
  max-width: 22ch;
}

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

.how-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(28,26,23,0.08);
}

.how-card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
}

.how-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
}

.how-card-desc {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.65;
  flex-grow: 1;
}

.how-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.how-card-features li {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.how-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

/* === OUTCOMES === */
.outcomes {
  padding: 120px 40px;
  background: var(--accent);
  color: var(--cream);
}

.outcomes-inner { max-width: 1200px; margin: 0 auto; }

.outcomes-overline {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 16px;
  display: block;
}

.outcomes-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 64px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
}

.outcome {
  padding: 48px 40px;
  background: rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.outcome-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--amber-light);
  line-height: 1;
}

.outcome-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.45;
}

.outcomes-context {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.outcomes-context p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* === MANIFESTO === */
.manifesto {
  padding: 120px 40px;
  background: var(--bg-alt);
}

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

.manifesto-quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.2;
  margin-bottom: 32px;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.75vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--fg);
  line-height: 1.65;
  margin-bottom: 28px;
}

.manifesto-attribution {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-top: 16px;
}

.manifesto-dash { color: var(--amber); }

/* === CLOSING / PRICING === */
.closing {
  padding: 120px 40px;
  background: var(--cream);
}

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

.closing-overline {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: block;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 22ch;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
}

.pricing-card-featured {
  background: var(--accent);
  color: var(--cream);
  border-color: var(--accent);
  box-shadow: 0 24px 80px rgba(46, 74, 53, 0.25);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.pricing-card-featured .pricing-tier { color: rgba(255,255,255,0.7); }

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 16px;
}

.pricing-card-featured .pricing-price { color: var(--cream); }

.pricing-per {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.6;
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-card-featured .pricing-desc { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.15); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23C17F3C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}

.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.75); }
.pricing-card-featured .pricing-features li::before { filter: brightness(0) invert(1); }

.closing-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-top: 48px;
  line-height: 1.5;
}

/* === FOOTER === */
.footer {
  background: var(--fg);
  color: var(--cream);
  padding: 80px 40px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--cream);
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .proof-grid { grid-template-columns: 1fr; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 40px; }
  .philosophy-headline { grid-column: 1; }
  .philosophy-body { grid-column: 1; }
  .how-grid { grid-template-columns: 1fr; gap: 16px; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-inner { flex-direction: column; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 100px 24px 64px; }
  .hero-meta { flex-direction: column; gap: 24px; }
  .hero-stat-divider { display: none; }
  .hero-stat { padding-right: 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 32px; }
  .philosophy-pull { padding: 28px 28px; }
  .how { padding: 80px 24px; }
  .outcomes { padding: 80px 24px; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .outcome { padding: 32px 24px; }
  .manifesto { padding: 80px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 60px 24px 32px; }
  .footer-links { gap: 40px; }
}

@media (max-width: 480px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
