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

:root {
  --navy: #0B1829;
  --amber: #D4A843;
  --cream: #F5F0E8;
  --light: #FAFAF7;
  --mid: #7A8899;
  --text: #1A2533;
  --border: rgba(11,24,41,0.1);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }

/* ── NAV ── */
.nav {
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: opacity 0.2s;
}
.nav-brand:hover { opacity: 0.75; }

.nav-logo {
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: var(--amber);
  font-family: 'Fraunces', serif;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  letter-spacing: -0.02em;
}

.nav-name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--navy);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--mid);
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  cursor: pointer;
  background: transparent;
}
.lang-toggle:hover {
  color: var(--navy);
  border-color: var(--navy);
  background: rgba(11,24,41,0.04);
}

/* ── HERO ── */
.hero {
  padding: 5rem 2.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  background: rgba(212,168,67,0.1);
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(212,168,67,0.25);
}

.hero-headline {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
  line-height: 1.05;
  white-space: pre-line;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--mid);
  max-width: 38ch;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-montreal {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--amber);
}

.hero-stat {
  padding-top: 2rem;
  border-left: 1px solid var(--border);
  padding-left: 2.5rem;
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.875rem;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.stat-source {
  font-size: 0.75rem;
  color: var(--amber);
  font-weight: 500;
}

.hero-rule {
  height: 1px;
  background: var(--border);
  margin-top: 4rem;
}

/* ── OUTCOMES ── */
.outcomes {
  padding: 4rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.outcome {
  padding: 2.5rem 2.5rem;
  border-right: 1px solid var(--border);
}

.outcome:last-child { border-right: none; }

.outcome-value {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.outcome-label {
  font-size: 0.9375rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.howitworks {
  background: var(--navy);
  padding: 5rem 2.5rem;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 3rem;
}

.howitworks .section-label { margin-bottom: 2.5rem; }

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

.step {
  padding: 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  letter-spacing: -0.03em;
  line-height: 1;
}

.step-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.step-body p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ── FEATURES ── */
.features {
  padding: 5rem 2.5rem;
  background: var(--light);
}

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

.features-intro {
  font-size: 1.0625rem;
  color: var(--mid);
  line-height: 1.7;
  max-width: 40ch;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

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

.feature h3 {
  font-size: 1.0625rem;
  color: var(--navy);
  margin-bottom: 0.625rem;
}

.feature p {
  font-size: 0.9375rem;
  color: var(--mid);
  line-height: 1.65;
}

/* ── CTA ── */
.cta-section {
  background: var(--cream);
  padding: 6rem 2.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.cta-headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.cta-body {
  font-size: 1.0625rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}
.cta-button:hover { background: #162b46; transform: translateY(-1px); }
.cta-button:active { transform: translateY(0); }

.cta-subtext {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--mid);
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--cream);
  padding: 5rem 2.5rem;
  border-top: 1px solid var(--border);
}

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

.manifesto-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.55;
  max-width: 28em;
  margin-bottom: 2.5rem;
}

.manifesto-text:last-child {
  font-style: italic;
  color: var(--mid);
  font-size: clamp(1rem, 1.8vw, 1.375rem);
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: 3rem 2.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
}

.footer-logo {
  width: 28px;
  height: 28px;
  background: var(--amber);
  color: var(--navy);
  font-family: 'Fraunces', serif;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.footer-name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.0625rem;
  color: #fff;
}

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

.footer-location {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.2);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stat { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 2rem; }
  .hero-rule { margin-top: 2.5rem; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 0; }
  .outcome { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem 0; }
  .outcome:last-child { border-bottom: none; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 2rem 0; }
  .step:last-child { border-bottom: none; }
  .features-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .outcomes { padding: 3rem 1.5rem; }
  .howitworks { padding: 3rem 1.5rem; }
  .features { padding: 3rem 1.5rem; }
  .cta-section { padding: 4rem 1.5rem; }
  .manifesto { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
  .nav { padding: 1.25rem 1.5rem; }
  .hero-headline { font-size: 2.5rem; }
  .stat-number { font-size: 3rem; }
  .outcome-value { font-size: 2.5rem; }
  .cta-headline { font-size: 2rem; }
}