:root {
  --bg: #f7f7f6;
  --text: #0f172a;
  --muted: #6f6a5e;
  --soft: #aba69a;
  --accent: #ff6b4a;
  --card: #fcfcfb;
  --border: #e4e1da;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(1200px 520px at 10% -10%, #ffffff 0%, var(--bg) 60%), var(--bg);
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
}

.narrow {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(6px);
  background: color-mix(in srgb, var(--bg) 88%, white);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: 0.01em;
  font-size: 1.07rem;
}

.wordmark-dot {
  width: 0.54rem;
  height: 0.54rem;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--text);
}

.hero {
  padding: 5.6rem 0 4.8rem;
}

.hero-inner {
  max-width: 720px;
}

.kicker {
  margin: 0 0 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 640;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.lead {
  font-size: clamp(1.03rem, 2vw, 1.22rem);
  color: color-mix(in srgb, var(--text) 92%, white);
  max-width: 62ch;
  margin: 1.25rem 0 0;
}

.supporting {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 65ch;
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #f96240;
}

.btn-secondary {
  border-color: var(--border);
  color: var(--text);
  background: color-mix(in srgb, white 72%, var(--bg));
}

.section {
  padding: 2.9rem 0;
}

.section h2 {
  font-size: clamp(1.42rem, 3vw, 2rem);
  letter-spacing: -0.01em;
  margin-bottom: 1.3rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.3rem 1.2rem;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

.card:hover,
.card:focus-within {
  border-color: color-mix(in srgb, var(--accent) 24%, var(--border));
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.card-index {
  margin: 0 0 0.5rem;
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.card h3 {
  font-size: 1.04rem;
  margin-bottom: 0.5rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.approach-list {
  display: grid;
  gap: 1.1rem;
}

.approach-list article {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
  background: color-mix(in srgb, white 80%, var(--bg));
}

.approach-list h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.approach-list p,
.status-section p,
.contact-section p {
  margin: 0;
  color: var(--muted);
}

.status-lead {
  color: var(--text) !important;
  font-weight: 650;
  margin-bottom: 0.45rem !important;
}

.status-section .container {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  background: color-mix(in srgb, white 76%, var(--bg));
}

.contact-section .container {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.35rem;
  background: #fcfcfb;
}

.contact-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--text);
  text-underline-offset: 3px;
  font-size: 1.02rem;
  font-weight: 620;
}

.site-footer {
  border-top: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  padding: 1.4rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  align-items: center;
  justify-content: flex-start;
}

.footer-inner p,
.footer-inner a {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--text);
  text-decoration: underline;
}

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

  .hero {
    padding-top: 4.3rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 40px));
  }

  .header-inner {
    min-height: 72px;
    align-items: flex-start;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    flex-direction: column;
  }

  .nav-list {
    gap: 0.9rem;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 3.3rem;
  }

  .status-section .container,
  .contact-section .container {
    padding: 1.15rem;
  }

  .site-footer {
    padding-top: 0.9rem;
  }
}
