:root {
  --color-primary: #789c74;
  --color-text: #232323;
  --color-bg: #ffffff;
  --color-bg-secondary: #f7f7f5;
  --color-border: #e5e5e2;
  --font-main: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-text: #f2f4f1;
    --color-bg: #121212;
    --color-bg-secondary: #191919;
    --color-border: #2a2a2a;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

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

a {
  color: var(--color-primary);
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.site-header .logo img {
  height: 28px;
  width: auto;
}

.site-header .logo picture img {
  height: 28px;
}

nav.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

nav.site-nav a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

nav.site-nav a:hover {
  color: var(--color-primary);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.hero {
  padding: 96px 0 64px;
  text-align: center;
}

.hero .symbol {
  width: auto;
  height: 56px;
  margin: 0 auto 24px;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.hero .slogan {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 24px;
}

.hero p.pitch {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  opacity: 0.85;
}

.hero .cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.status-banner {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
  text-align: center;
  font-size: 0.95rem;
}

section {
  padding: 72px 0;
}

section.alt {
  background: var(--color-bg-secondary);
}

section h2 {
  font-size: 1.8rem;
  margin: 0 0 8px;
  text-align: center;
}

section .section-lead {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
  opacity: 0.8;
}

.flow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.flow-step {
  flex: 1 1 140px;
  max-width: 160px;
  text-align: center;
  padding: 20px 12px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.flow-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.flow-step .step-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
}

section.alt .card {
  background: var(--color-bg);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.8;
}

.persona-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.persona-list li {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px;
  font-size: 0.95rem;
}

footer.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 40px 0;
  font-size: 0.85rem;
  opacity: 0.75;
}

footer.site-footer .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

footer.site-footer nav {
  display: flex;
  gap: 16px;
}

footer.site-footer a {
  color: inherit;
}

.legal-page {
  padding: 64px 0 96px;
  max-width: 720px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 2rem;
}

.legal-page h2 {
  font-size: 1.2rem;
  margin-top: 40px;
}

.legal-page h3 {
  font-size: 1.02rem;
  margin-top: 28px;
  margin-bottom: 6px;
}

.legal-page .updated {
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.draft-notice {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.9rem;
  margin-bottom: 32px;
}

@media (max-width: 640px) {
  nav.site-nav {
    display: none;
  }
  .hero {
    padding: 64px 0 48px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
