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

:root {
  --bg: #F8F6F1;
  --bg-alt: #EDEAE3;
  --fg: #1A1A1A;
  --fg-muted: #6B6760;
  --accent: #F59E0B;
  --accent-hover: #D97706;
  --accent-light: #FEF3C7;
  --border: #DDD9D0;
  --card-bg: #FFFFFF;
  --white: #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

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

::selection {
  background: var(--accent);
  color: var(--white);
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}

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

.header-nav {
  display: flex;
  gap: 2rem;
}

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

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

/* === SECTION SHARED === */
section {
  padding: 6rem 2rem;
}

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* === HERO === */
.hero {
  padding: 5rem 2rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

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

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero-highlight {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
  border: 2px solid var(--fg);
  display: inline-block;
  padding: 0.5rem 1rem;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.metric-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.metric-card--accent {
  background: var(--fg);
  border-color: var(--fg);
}

.metric-card--accent .metric-label,
.metric-card--accent .metric-note {
  color: rgba(255,255,255,0.6);
}

.metric-card--accent .metric-value {
  color: var(--accent);
}

.metric-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.metric-value {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1;
}

.metric-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* === MANIFESTO === */
.manifesto {
  background: var(--fg);
  color: var(--white);
  padding: 5rem 2rem;
}

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

.manifesto-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.manifesto-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.manifesto-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 700px;
}

/* === OUTCOMES === */
.outcomes {
  max-width: 1200px;
  margin: 0 auto;
}

.outcomes-header {
  margin-bottom: 3rem;
}

.outcomes-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 600px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.outcome {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.outcome-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.outcome-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.outcome-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === VERTICALS === */
.verticals {
  background: var(--bg-alt);
}

.verticals-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.verticals-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.verticals-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.vertical {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  transition: transform 0.2s, box-shadow 0.2s;
}

.vertical:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.vertical-icon {
  width: 48px;
  height: 48px;
  background: var(--fg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.vertical-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.vertical-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.vertical-tags {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.vertical-tags li {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  padding-left: 1rem;
  position: relative;
}

.vertical-tags li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 400;
}

/* === APPROACH === */
.approach {
  max-width: 1200px;
  margin: 0 auto;
}

.approach-label {
  margin-bottom: 1rem;
}

.approach-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 3rem;
}

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

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.step:first-child {
  border-top: 1px solid var(--border);
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--border);
  letter-spacing: -0.04em;
  line-height: 1;
  padding-top: 0.25rem;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 600px;
}

/* === CLOSING === */
.closing {
  background: var(--accent);
  padding: 6rem 2rem;
}

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

.closing-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  margin-bottom: 1.5rem;
}

.closing-eyebrow .eyebrow-dot {
  background: rgba(0,0,0,0.4);
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.closing-body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(26,26,26,0.7);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.closing-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--fg);
}

.promise-item svg {
  color: var(--fg);
  flex-shrink: 0;
}

/* === FOOTER === */
.site-footer {
  background: var(--fg);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

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

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

.footer-meta {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  max-width: 300px;
  text-align: right;
  line-height: 1.6;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .verticals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 1.5rem;
  }
  .hero {
    padding: 3rem 1.5rem 4rem;
  }
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
  .verticals-grid {
    grid-template-columns: 1fr;
  }
  .step {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .step-number {
    font-size: 1.5rem;
  }
  .header-nav {
    display: none;
  }
  .hero-visual {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-meta {
    text-align: left;
  }
  .closing-promise {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2rem;
  }
  .closing-headline br {
    display: none;
  }
}