:root {
  --bg: #F7F4EF;
  --surface: #FFFFFF;
  --fg: #1A1A1A;
  --fg-muted: #6B6B6B;
  --accent: #E8531B;
  --accent-dark: #C44415;
  --charcoal: #2D2D2D;
  --border: #E5E0D8;
  --radius: 8px;
}

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

html { scroll-behavior: smooth; }

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

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

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

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

.nav-cta {
  background: var(--accent);
  color: white !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--accent-dark) !important; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 8vw, 88px);
  line-height: 1.0;
  letter-spacing: -2.5px;
  color: var(--fg);
  margin-bottom: 24px;
  max-width: 720px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--accent-dark); }

.btn-ghost {
  color: var(--fg);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}

.btn-ghost:hover { border-color: var(--fg); background: rgba(0,0,0,0.03); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat { display: flex; flex-direction: column; }

.stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--fg);
  letter-spacing: -1px;
}

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

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Geometry */
.hero-geometry {
  position: absolute;
  right: -60px;
  top: 40px;
  width: 480px;
  height: 400px;
  pointer-events: none;
}

.geo-block {
  position: absolute;
  border: 1.5px solid var(--accent);
  opacity: 0.15;
}

.geo-1 { width: 280px; height: 280px; top: 0; right: 0; transform: rotate(12deg); border-radius: 4px; }
.geo-2 { width: 180px; height: 180px; top: 60px; right: 200px; transform: rotate(-8deg); border-radius: 50%; opacity: 0.08; }
.geo-3 { width: 120px; height: 120px; bottom: 40px; right: 60px; transform: rotate(20deg); border-radius: 4px; opacity: 0.2; }

/* Pledge */
.pledge {
  background: var(--charcoal);
  color: white;
  padding: 100px 40px;
}

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

.pledge-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.pledge-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
  color: white;
  margin-bottom: 64px;
  max-width: 780px;
}

.pledge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
}

.pledge-item h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  color: white;
}

.pledge-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.pledge-icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* Social Proof */
.social-proof {
  padding: 64px 40px;
  background: var(--bg);
}

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

.proof-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  opacity: 0.5;
}

.proof-logos img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
}

.proof-badge {
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.proof-badge strong { color: var(--fg); }

.trust-ratings {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.rating-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-muted);
}

.rating-logo {
  height: 22px;
  width: auto;
}

/* How */
.how {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

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

.how-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.how-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--fg);
  margin-bottom: 64px;
  letter-spacing: -1.5px;
}

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.step-connector {
  width: 60px;
  height: 1.5px;
  background: var(--border);
  margin-top: 24px;
  flex-shrink: 0;
}

.space-types {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.space-type {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}

.space-icon { color: var(--accent); display: flex; }

/* Manifesto */
.manifesto {
  padding: 100px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

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

.manifesto-quote {
  margin-bottom: 48px;
  padding-left: 32px;
  border-left: 3px solid var(--accent);
}

.manifesto-quote blockquote {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 16px;
}

.manifesto-quote cite {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: normal;
}

.manifesto-body p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 20px;
}

.manifesto-body strong { color: var(--fg); }

/* Closing */
.closing {
  padding: 100px 40px;
  background: var(--accent);
  text-align: center;
}

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

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  color: white;
  line-height: 1.2;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.closing p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  padding: 48px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: white;
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 13px;
}

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

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer-links a:hover { color: white; }

.footer-bottom {
  font-size: 12px;
  width: 100%;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-inner { padding: 14px 20px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 60px 20px 60px; }
  .hero-geometry { display: none; }
  .hero-stats { gap: 20px; }
  .stat-value { font-size: 22px; }
  .pledge { padding: 64px 20px; }
  .how { padding: 64px 20px; }
  .how-steps { flex-direction: column; gap: 32px; }
  .step-connector { width: 40px; height: 1.5px; }
  .manifesto { padding: 64px 20px; }
  .closing { padding: 64px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .social-proof { padding: 48px 20px; }
  .proof-logos { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { letter-spacing: -1.5px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
  .space-types { gap: 12px; }
  .trust-ratings { flex-direction: column; gap: 16px; align-items: flex-start; }
}