:root {
  --bg: #faf6f0;
  --surface: #ffffff;
  --ink: #1a2330;
  --muted: #5e6877;
  --accent: #1f6b66;
  --accent-warm: #c4502a;
  --border: #e8e1d4;
  --radius: 14px;
  --max: 720px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 107, 102, 0.35);
  transition: border-color 0.15s ease;
}
a:hover { border-bottom-color: var(--accent); }

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 28px 96px;
}

header.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 56px;
}

header.brand .mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

header.brand .name {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

header.brand .name a {
  color: var(--ink);
  border-bottom: none;
}

.hero h1 {
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 24px;
}

.hero .lead {
  font-size: 19px;
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 600px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(196, 80, 42, 0.08);
  color: var(--accent-warm);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 56px;
}

.status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-warm);
  box-shadow: 0 0 0 4px rgba(196, 80, 42, 0.18);
}

section {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

section h2 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 18px;
}

section p {
  margin: 0 0 16px;
}

.funding {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  margin-top: 48px;
}

.funding h2 {
  margin-top: 0;
}

.funding .logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.funding .logo-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
}

.funding .logo-slot--bmftr img {
  display: block;
  width: 280px;
  max-width: 100%;
  height: auto;
}

.funding .logo-slot--ptf img {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
}

.funding .logo-slot--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 280px;
  min-height: 96px;
  padding: 18px 22px;
  border: 1px dashed var(--border);
  border-radius: 8px;
  background: #fbfaf7;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
}

.funding .logo-slot--placeholder small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  opacity: 0.85;
}

@media (max-width: 520px) {
  .funding .logos { gap: 20px; }
  .funding .logo-slot--bmftr img { width: 240px; }
  .funding .logo-slot--ptf img { width: 160px; }
}

footer {
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

footer .links a { margin-left: 16px; }
footer .links a:first-child { margin-left: 0; }

.hero-image {
  margin: 56px 0 8px;
  padding: 0;
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

@media (max-width: 520px) {
  main { padding: 40px 22px 64px; }
  header.brand { padding-bottom: 40px; }
  footer { flex-direction: column; }
  footer .links a { margin-left: 0; margin-right: 16px; }
}
