/* Capablanca homepage — content-led redesign */

:root {
  --green: #6DBE45;
  --green-deep: #4F9530;
  --green-dark: #3A6E23;
  --black: #0A0A0A;
  --navy: #0D1B3E;
  --tint: #EAF7E0;
  --paper: #F7F8F4;
  --ink-soft: #4A4A46;
  --border: #E2E4DC;
  --mono: "IBM Plex Mono", monospace;
  --sans: "Montserrat", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--black);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

ul,
ol {
  list-style: none;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.wrap.narrow {
  max-width: 720px;
}

h1,
h2,
h3 {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 2px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  padding: 11px 20px;
  font-size: 13px;
}

.btn-primary {
  background: var(--green);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--green-deep);
  color: #fff;
}

.btn-outline {
  border-color: var(--black);
  color: var(--black);
  background: transparent;
}

.btn-outline:hover {
  background: var(--black);
  color: #fff;
}

.btn-login {
  padding: 11px 18px;
  font-size: 13px;
  background: transparent;
  border: 1.5px solid var(--black);
  color: var(--black);
}

.btn-login:hover {
  background: var(--black);
  color: #fff;
}

.btn-block {
  width: 100%;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}

.section-lead,
.body-copy {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 540px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--green);
  color: var(--black);
  padding: 12px 20px;
  font-weight: 700;
  font-size: 14px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--green-deep);
  outline-offset: 3px;
}

/* ===== NAV ===== */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 248, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-mark .brand-logo {
  height: 36px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

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

.nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--green-deep);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  padding: 6px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: var(--paper);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .nav-cta .btn-primary {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 128px 0 96px;
  overflow: hidden;
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 88% 12%, rgba(109, 190, 69, 0.22), transparent 65%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  animation: heroRise 0.8s ease both;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-signal {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--green-deep);
}

.hero .lead {
  font-size: 17.5px;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

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

.hero-stats b {
  display: block;
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 500;
}

.hero-stats span {
  font-size: 11.5px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual {
  display: flex;
  justify-content: center;
  animation: heroRise 1s ease 0.1s both;
}

/* ----- Brain / cognitive-skills animated graphic ----- */
/* Background-free cutout floats directly on the hero wash, no card frame */
.brain-anim {
  position: relative;
  width: 100%;
  max-width: 560px;
  isolation: isolate;
}

.brain-anim-img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: 34% 38%;
  animation: brainKenBurns 14s ease-in-out infinite alternate;
}

@keyframes brainKenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.045); }
}

/* Faint neurons twinkling at random across the cortex, independent of the signal loop */
.neuron {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #eaf7cf;
  box-shadow: 0 0 6px 2px rgba(178, 224, 120, 0.9);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  animation: neuronTwinkle 2.6s ease-in-out infinite;
}

.neuron-1 { left: 22%; top: 24%; animation-delay: 0.1s; }
.neuron-2 { left: 29%; top: 33%; animation-delay: 0.9s; }
.neuron-3 { left: 36%; top: 22%; animation-delay: 1.6s; }
.neuron-4 { left: 40%; top: 36%; animation-delay: 0.5s; }
.neuron-5 { left: 33%; top: 43%; animation-delay: 2s; }
.neuron-6 { left: 25%; top: 40%; animation-delay: 1.3s; }
.neuron-7 { left: 44%; top: 29%; animation-delay: 1.9s; }
.neuron-8 { left: 30%; top: 50%; animation-delay: 0.3s; }

@keyframes neuronTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  50% { opacity: 0.95; transform: scale(1.2); }
}

/* Six branch elbow-points: the bend where each signal line turns toward its icon */
.brain-node {
  position: absolute;
  width: 8px;
  height: 8px;
  left: 53%;
  border-radius: 50%;
  background: #d9f0b6;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  box-shadow: 0 0 10px 2px rgba(145, 200, 78, 0.9);
  pointer-events: none;
  z-index: 3;
  animation: nodePulse 9.6s ease-in-out infinite;
}

.brain-node.n1 { top: 8%; animation-delay: 0s; }
.brain-node.n2 { top: 24.5%; animation-delay: 1.6s; }
.brain-node.n3 { top: 40.5%; animation-delay: 3.2s; }
.brain-node.n4 { top: 56.5%; animation-delay: 4.8s; }
.brain-node.n5 { top: 72.5%; animation-delay: 6.4s; }
.brain-node.n6 { top: 88.5%; animation-delay: 8s; }

@keyframes nodePulse {
  0%, 7%, 20%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
  9% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
  14% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
}

/* Ring halo that lights up around each pillar icon as the signal reaches it */
.icon-halo {
  position: absolute;
  left: 60%;
  width: 15.5%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.75);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 0 0 2px rgba(145, 200, 78, 0.9), 0 0 22px 6px rgba(145, 200, 78, 0.85);
  animation: iconHaloPulse 9.6s ease-in-out infinite;
}

.icon-halo.h1 { top: 8%; animation-delay: 0s; }
.icon-halo.h2 { top: 24.5%; animation-delay: 1.6s; }
.icon-halo.h3 { top: 40.5%; animation-delay: 3.2s; }
.icon-halo.h4 { top: 56.5%; animation-delay: 4.8s; }
.icon-halo.h5 { top: 72.5%; animation-delay: 6.4s; }
.icon-halo.h6 { top: 88.5%; animation-delay: 8s; }

@keyframes iconHaloPulse {
  0%, 13%, 42%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.75); }
  17% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
  30% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
}

/* Traveling signal: a bright pulse runs from a brain node, through the elbow, to its icon */
.beam {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, #cdeea0 45%, rgba(145, 200, 78, 0) 75%);
  box-shadow: 0 0 12px 4px rgba(200, 240, 150, 0.95);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
  transform: translate(-50%, -50%);
  animation-duration: 9.6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.beam.b1 { left: 32%; top: 19%; animation-name: beam1; animation-delay: 0s; }
.beam.b2 { left: 34%; top: 26%; animation-name: beam2; animation-delay: 1.6s; }
.beam.b3 { left: 39%; top: 32%; animation-name: beam3; animation-delay: 3.2s; }
.beam.b4 { left: 43%; top: 39%; animation-name: beam4; animation-delay: 4.8s; }
.beam.b5 { left: 42%; top: 46%; animation-name: beam5; animation-delay: 6.4s; }
.beam.b6 { left: 39%; top: 53%; animation-name: beam6; animation-delay: 8s; }

@keyframes beam1 {
  0%, 100% { opacity: 0; left: 32%; top: 19%; }
  2% { opacity: 1; }
  9% { left: 53%; top: 8%; opacity: 1; }
  15% { left: 60%; top: 8%; opacity: 0; }
}
@keyframes beam2 {
  0%, 100% { opacity: 0; left: 34%; top: 26%; }
  2% { opacity: 1; }
  9% { left: 53%; top: 24.5%; opacity: 1; }
  15% { left: 60%; top: 24.5%; opacity: 0; }
}
@keyframes beam3 {
  0%, 100% { opacity: 0; left: 39%; top: 32%; }
  2% { opacity: 1; }
  9% { left: 53%; top: 40.5%; opacity: 1; }
  15% { left: 60%; top: 40.5%; opacity: 0; }
}
@keyframes beam4 {
  0%, 100% { opacity: 0; left: 43%; top: 39%; }
  2% { opacity: 1; }
  9% { left: 53%; top: 56.5%; opacity: 1; }
  15% { left: 60%; top: 56.5%; opacity: 0; }
}
@keyframes beam5 {
  0%, 100% { opacity: 0; left: 42%; top: 46%; }
  2% { opacity: 1; }
  9% { left: 53%; top: 72.5%; opacity: 1; }
  15% { left: 60%; top: 72.5%; opacity: 0; }
}
@keyframes beam6 {
  0%, 100% { opacity: 0; left: 39%; top: 53%; }
  2% { opacity: 1; }
  9% { left: 53%; top: 88.5%; opacity: 1; }
  15% { left: 60%; top: 88.5%; opacity: 0; }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto 20px;
  }
  .hero {
    padding: 100px 0 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brain-anim-img,
  .neuron,
  .brain-node,
  .icon-halo,
  .beam {
    animation: none;
    opacity: 0;
  }
  .brain-anim-img {
    opacity: 1;
    transform: none;
  }
}

/* ===== PROBLEM ===== */
.problem {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  margin-bottom: 20px;
}

.problem .pull {
  margin-top: 28px;
  padding-left: 20px;
  border-left: 3px solid var(--green);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  max-width: 520px;
}

/* ===== STACK / SIX PILLARS ===== */
.stack {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.stack .eyebrow {
  color: var(--green);
}

.stack .eyebrow::before {
  background: var(--green);
}

.stack .section-lead {
  color: rgba(255, 255, 255, 0.72);
  max-width: 380px;
}

.stack-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.stack-intro h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 16px;
}

.stack-active {
  margin-top: 36px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 180px;
  transition: opacity 0.25s ease;
}

.stack-active.is-switching {
  opacity: 0.35;
}

.stack-active-num {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 12px;
}

.stack-active h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}

.stack-active-tag {
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
}

.stack-active-body {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 360px;
}

.stack-hint {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.pillars {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
}

.pillars::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--green), rgba(109, 190, 69, 0.15));
  border-radius: 2px;
  pointer-events: none;
}

.pillar {
  --w: 58%;
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 14px;
  width: var(--w);
  min-height: 64px;
  padding: 14px 20px 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition:
    width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Ascending / staircase: left-aligned, foundation widest at bottom */
.pillar[data-step="6"] { --w: 58%; }
.pillar[data-step="5"] { --w: 66%; }
.pillar[data-step="4"] { --w: 74%; }
.pillar[data-step="3"] { --w: 82%; }
.pillar[data-step="2"] { --w: 90%; }
.pillar[data-step="1"] { --w: 100%; }

.pillar:hover {
  background: rgba(109, 190, 69, 0.1);
  border-color: rgba(109, 190, 69, 0.35);
  color: rgba(255, 255, 255, 0.9);
  transform: translateX(4px);
}

.pillar:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.pillar.is-active {
  background: var(--green);
  border-color: var(--green-deep);
  color: var(--black);
  box-shadow: 0 10px 28px rgba(109, 190, 69, 0.25);
  transform: translateX(8px);
  z-index: 1;
}

.pillar.is-active .pillar-index,
.pillar.is-active .pillar-label em {
  color: var(--green-dark);
}

.pillar.is-built:not(.is-active) {
  background: rgba(109, 190, 69, 0.14);
  border-color: rgba(109, 190, 69, 0.35);
  color: rgba(255, 255, 255, 0.85);
}

.pillar-index {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

.pillar-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.85;
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
}

.pillar-label strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.pillar-label em {
  display: block;
  font-style: normal;
  font-size: 12.5px;
  font-weight: 500;
  opacity: 0.75;
  margin-top: 3px;
}

.pillar-bar {
  position: absolute;
  left: -10px;
  top: 50%;
  width: 10px;
  height: 2px;
  background: rgba(109, 190, 69, 0.45);
  transform: translateY(-50%);
}

.pillar.is-active .pillar-bar {
  background: var(--green);
  width: 14px;
  left: -14px;
}

@media (max-width: 900px) {
  .stack-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stack-active {
    min-height: 0;
  }

  .pillars {
    align-items: stretch;
  }

  .pillar {
    width: 100% !important;
  }

  .pillars::before,
  .pillar-bar {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pillar {
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }
  .pillar:hover,
  .pillar.is-active {
    transform: none;
  }
}

/* ===== PROGRAMMES ===== */
.programs {
  background: var(--paper);
}

.pathways {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.pathway {
  display: grid;
  grid-template-columns: 60px 1fr 44px;
  gap: 20px;
  padding: 30px 20px;
  border: 1px solid transparent;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pathway:hover {
  background: #fff;
  border-color: var(--border);
  transform: translateX(4px);
}

.pathway-flagship {
  border: 1.5px solid var(--green);
  border-radius: 4px;
  background: var(--tint);
  margin-bottom: 4px;
}

.pathway-flagship:hover {
  background: var(--tint);
  border-color: var(--green-deep);
}

.pathway-icon {
  width: 28px;
  height: 28px;
  color: var(--green-deep);
  justify-self: end;
  flex-shrink: 0;
}

.pathway-idx {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--green-deep);
  padding-top: 4px;
}

.pathway-body h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.pathway-body p {
  color: var(--ink-soft);
  max-width: 560px;
  font-size: 15.5px;
}

.tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #fff;
  color: var(--green-dark);
  padding: 4px 8px;
  font-weight: 500;
}

@media (max-width: 700px) {
  .pathway {
    grid-template-columns: 44px 1fr;
    padding: 24px 16px;
  }
  .pathway-icon {
    display: none;
  }
}

/* ===== PROOF ===== */
.proof {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.stats li {
  padding-top: 16px;
  border-top: 2px solid var(--green);
}

.stats b {
  display: block;
  font-family: var(--mono);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stats span {
  font-size: 13px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

@media (max-width: 700px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== FOUNDER ===== */
.founder {
  background: var(--tint);
  position: relative;
}

.founder-grid {
  position: relative;
  padding-left: 84px;
}

.founder-avatar {
  position: absolute;
  left: 0;
  top: 4px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 2px solid var(--green);
}

.quote-mark {
  position: absolute;
  top: -34px;
  left: 84px;
  font-family: Georgia, serif;
  font-size: 90px;
  line-height: 1;
  color: var(--green);
  opacity: 0.35;
  pointer-events: none;
}

.founder blockquote {
  max-width: 760px;
}

@media (max-width: 600px) {
  .founder-grid {
    padding-left: 0;
    padding-top: 76px;
  }
  .founder-avatar {
    top: 0;
    left: 0;
  }
  .quote-mark {
    top: -8px;
    left: 68px;
  }
}

.founder blockquote p {
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}

.founder footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.founder footer strong {
  font-size: 15px;
}

.founder footer span {
  font-size: 13px;
  color: var(--ink-soft);
}

/* ===== OUTCOMES ===== */
.outcome-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}

.outcome-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.outcome-list li svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  color: var(--green-deep);
  background: var(--tint);
  border-radius: 50%;
  padding: 3px;
}

@media (max-width: 700px) {
  .outcome-list {
    grid-template-columns: 1fr;
  }
}

/* ===== VOICES ===== */
.voices {
  background: #fff;
  border-top: 1px solid var(--border);
}

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

.voice-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--tint);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
}

.voice blockquote {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 16px;
}

.voice figcaption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .voices-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--paper);
  text-align: center;
  padding: 88px 0;
}

.final-cta-inner {
  border: 1.5px solid var(--border);
  border-top: 3px solid var(--green);
  border-radius: 4px;
  padding: 56px 40px;
  background: #fff;
}

.final-cta h2 {
  font-size: clamp(26px, 3.8vw, 40px);
  max-width: 640px;
  margin: 0 auto 16px;
}

.final-cta p {
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: 16px;
}

.final-cta-ctas {
  justify-content: center;
}

@media (max-width: 600px) {
  .final-cta-inner {
    padding: 40px 24px;
  }
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-meta {
  margin-top: 24px;
}

.contact-meta a {
  font-weight: 600;
  color: var(--green-deep);
  border-bottom: 1px solid transparent;
}

.contact-meta a:hover {
  border-bottom-color: var(--green-deep);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form label span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  background: #fff;
  color: var(--black);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 36px;
  background: var(--paper);
}

.footer-inner {
  display: grid;
  gap: 28px;
}

.footer-brand .brand-logo {
  height: 32px;
  width: auto;
  max-width: 180px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 320px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.footer-nav a {
  font-size: 13px;
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--green-deep);
}

.footer-copy {
  font-size: 12px;
  color: var(--ink-soft);
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

@media (max-width: 600px) {
  .section {
    padding: 72px 0;
  }
  .hero {
    min-height: auto;
    padding-bottom: 64px;
  }
  .hero-content {
    padding-top: 72px;
  }
}
