:root {
  --purple: #6b4a98;
  --purple-dark: #4f3673;
  --purple-mid: #9d72b0;
  --pink: #cea0ca;
  --ink: #404041;
  --muted-bg: #f2f3f3;
  --line: #e7e8e8;
  --white: #ffffff;
  --gutter: 80px;
  --brand-font: 'Hurme Geometric Sans 3', Lato, system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Lato, system-ui, sans-serif;
  background: var(--white);
  color: var(--ink);
}

a { color: var(--purple); }
a:hover { color: var(--purple-dark); }

h1, h2, h3, p { margin: 0; }

/* ---------- Shared ---------- */

.brand {
  font-family: var(--brand-font);
  font-size: 32px;
  font-weight: 900;
  color: var(--purple);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand-lg { font-size: 36px; letter-spacing: 0; }

.eyebrow { font-size: 14px; font-weight: 900; letter-spacing: 0.14em; }

.label { font-size: 14px; font-weight: 900; letter-spacing: 0.12em; color: var(--purple); }
.label-sm { font-size: 13px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 28px;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}
.btn-sm { height: 48px; padding: 0 24px; font-size: 16px; }
.btn-lg { height: 60px; padding: 0 32px; font-size: 18px; }
.btn-primary { background: var(--purple); color: var(--white); }
.btn-primary:hover { background: var(--purple-dark); color: var(--white); }
.btn-light { background: var(--white); color: var(--purple); }
.btn-light:hover { color: var(--purple-dark); }
.btn-outline-light { border: 2px solid var(--white); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--purple); }
.btn-outline { border: 2px solid var(--purple); color: var(--purple); }
.btn-outline:hover { background: var(--purple); color: var(--white); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }

.fill-1 { background: var(--purple); }
.fill-2 { background: var(--purple-mid); }
.fill-3 { background: var(--pink); }

.section {
  padding: 112px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.section-muted { background: var(--muted-bg); }
.section-brand { background: var(--purple); color: var(--white); }

.section h2 {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  color: var(--purple);
}
.section-intro { display: flex; flex-direction: column; gap: 20px; max-width: 900px; }
.section-intro p { font-size: 19px; line-height: 1.6; }

/* ---------- Header ---------- */

.site-header {
  height: 88px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.site-nav { display: flex; gap: 40px; align-items: center; }
.site-nav a { font-size: 16px; font-weight: 700; color: var(--ink); text-decoration: none; }
.site-nav a:hover { color: var(--purple); }

/* ---------- Hero ---------- */

.hero {
  background: var(--purple);
  padding: 104px var(--gutter) 112px;
  display: flex;
  gap: 80px;
  align-items: center;
  color: var(--white);
}
.hero-copy { flex: 1 1 0; display: flex; flex-direction: column; gap: 28px; }
.hero h1 { font-size: 62px; line-height: 1.05; font-weight: 900; }
.hero-lead { font-size: 21px; line-height: 1.55; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; padding-top: 12px; }

.score-card {
  width: 520px;
  flex-shrink: 0;
  background: var(--white);
  color: var(--ink);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.score-card-head { display: flex; justify-content: space-between; align-items: baseline; }
.score-note { font-size: 13px; font-weight: 700; }
.score-total {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}
.score-number { font-size: 72px; font-weight: 900; line-height: 1; color: var(--purple); }
.score-caption { font-size: 18px; font-weight: 700; }
.score-bars { display: flex; flex-direction: column; gap: 20px; }
.score-bar { display: flex; flex-direction: column; gap: 8px; }
.score-bar-label { display: flex; justify-content: space-between; font-size: 15px; font-weight: 700; }
.score-bar-track { height: 14px; background: var(--muted-bg); }
.score-bar-fill { height: 14px; }
.score-route {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.route-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 900;
  color: var(--purple);
}
.route-step { border: 1px solid var(--purple); padding: 8px 12px; }

/* ---------- Problem cards ---------- */

.problem-card {
  background: var(--muted-bg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--purple);
}
.problem-card h3 { font-size: 23px; font-weight: 900; }
.problem-card p { font-size: 17px; line-height: 1.6; color: var(--ink); }

/* ---------- Steps ---------- */

.steps { list-style: none; margin: 0; padding: 0; }
.step {
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step-number { font-size: 40px; font-weight: 900; line-height: 1; color: var(--purple-mid); }
.step-title { font-size: 21px; font-weight: 900; color: var(--purple); }
.step p { font-size: 16px; line-height: 1.5; }

/* ---------- Services ---------- */

.service {
  border: 1px solid var(--line);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service h3 { font-size: 30px; font-weight: 900; color: var(--purple); }
.service > p { font-size: 17px; line-height: 1.6; }
.bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  line-height: 1.45;
}
.bullets li { display: flex; gap: 12px; }
.bullets li::before {
  content: '';
  width: 8px;
  height: 8px;
  margin-top: 8px;
  background: var(--purple);
  flex-shrink: 0;
}
.service-foot {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 15px;
  font-weight: 700;
}
.service-featured { background: var(--purple); border-color: var(--purple); color: var(--white); }
.service-featured .label,
.service-featured h3 { color: var(--white); }
.service-featured .bullets li::before { background: var(--white); }
.service-featured .service-foot { border-top-color: var(--purple-mid); }

/* ---------- AI + experts ---------- */

.ai { flex-direction: row; gap: 80px; align-items: flex-start; }
.ai-copy { width: 520px; flex-shrink: 0; display: flex; flex-direction: column; gap: 24px; }
.section .ai-copy h2 { font-size: 44px; color: var(--white); }
.ai-copy p { font-size: 19px; line-height: 1.6; }
.ai-grid { flex: 1 1 0; }
.ai-card {
  border: 1px solid var(--purple-mid);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ai-card-title { font-size: 21px; font-weight: 900; }
.ai-card p { font-size: 16px; line-height: 1.6; }

/* ---------- Capital types ---------- */

.capital-grid { gap: 40px; }
.capital { display: flex; flex-direction: column; gap: 18px; }
.capital-bar { height: 10px; }
.capital h3 { font-size: 24px; font-weight: 900; color: var(--purple); }
.capital p { font-size: 17px; line-height: 1.6; }

/* ---------- Team ---------- */

.team-grid { gap: 48px; }
.member {
  background: var(--white);
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.member-photo {
  width: 180px;
  height: 220px;
  flex-shrink: 0;
  background: var(--muted-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.member-body { display: flex; flex-direction: column; gap: 12px; }
.member h3 { font-size: 26px; font-weight: 900; color: var(--purple); }
.member-role { font-size: 15px; font-weight: 900; letter-spacing: 0.06em; }
.member p { font-size: 16px; line-height: 1.6; }

/* ---------- CTA ---------- */

.cta {
  background: var(--pink);
  padding: 104px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}
.cta-copy { display: flex; flex-direction: column; gap: 20px; max-width: 760px; }
.cta h2 { font-size: 44px; line-height: 1.1; font-weight: 900; color: var(--purple); }
.cta p { font-size: 19px; line-height: 1.6; }
.cta-actions { display: flex; flex-direction: column; gap: 16px; flex-shrink: 0; }

/* ---------- Footer ---------- */

.site-footer {
  padding: 80px var(--gutter) 56px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  border-top: 1px solid var(--line);
}
.footer-top { display: flex; justify-content: space-between; gap: 80px; }
.footer-about { display: flex; flex-direction: column; gap: 16px; max-width: 420px; }
.footer-about p { font-size: 17px; line-height: 1.6; }
.footer-cols { display: flex; gap: 96px; }
.footer-col { display: flex; flex-direction: column; gap: 14px; font-size: 16px; }
.footer-col a { color: var(--ink); text-decoration: none; }
.footer-col a:hover { color: var(--purple); }
.footer-col a.footer-email { font-weight: 700; color: var(--purple); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  font-size: 14px;
}
.footer-domain {
  font-family: var(--brand-font);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--purple);
}

/* ---------- Responsive ---------- */

@media (max-width: 1200px) {
  :root { --gutter: 48px; }
  .hero, .ai { flex-direction: column; align-items: stretch; }
  .score-card, .ai-copy { width: auto; max-width: 620px; }
  .grid-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-grid { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 860px) {
  :root { --gutter: 24px; }
  .site-nav { display: none; }
  .hero { padding-top: 64px; padding-bottom: 72px; gap: 48px; }
  .hero h1 { font-size: 40px; }
  .hero-lead { font-size: 18px; }
  .section { padding-top: 72px; padding-bottom: 72px; gap: 40px; }
  .section h2, .section .ai-copy h2, .cta h2 { font-size: 30px; }
  .grid-2, .grid-3, .grid-5 { grid-template-columns: 1fr; }
  .capital-grid { gap: 32px; }
  .score-card, .problem-card, .service, .member { padding: 28px; }
  .member { flex-direction: column; }
  .cta { padding: 72px var(--gutter); gap: 40px; }
  .cta-actions { width: 100%; }
  .footer-top, .footer-cols { flex-direction: column; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .site-header .btn-sm { padding: 0 14px; font-size: 14px; }
  .brand { font-size: 26px; }
  .score-number { font-size: 56px; }
  .btn { white-space: normal; text-align: center; }
}
