:root {
  --bg: #07111f;
  --panel: #0d1b2f;
  --text: #edf4ff;
  --muted: #b7c5d8;
  --accent: #74c0fc;
  --accent-2: #b197fc;
  --line: #22324a;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #12345a 0, var(--bg) 42%);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

header {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
}

nav a {
  color: var(--muted);
  margin-left: 1rem;
  font-size: 0.95rem;
}

nav a.active, nav a:hover { color: var(--text); }

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.2rem 5rem;
}

.hero {
  padding: 3rem 0 3rem;
  max-width: 850px;
}

.kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
}

h1, h2, h3 { line-height: 1.18; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); margin: 0.4rem 0 1rem; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-top: 0; }
h3 { margin-bottom: 0.4rem; }

.lead {
  font-size: 1.22rem;
  color: var(--muted);
  max-width: 780px;
}

.button-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.button {
  display: inline-block;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--bg);
  background: var(--accent);
  font-weight: 700;
}
.button.secondary {
  color: var(--text);
  background: transparent;
  border-color: var(--line);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.card {
  background: rgba(13, 27, 47, 0.78);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.25rem;
}
.card p { color: var(--muted); margin-bottom: 0; }

.section {
  margin-top: 4rem;
  padding-top: 1rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

ul.clean { padding-left: 1.2rem; color: var(--muted); }

.person {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}
.person:first-child { border-top: 0; }
.role { color: var(--accent); font-weight: 700; margin: 0; }

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 2rem 1.2rem;
  text-align: center;
}

.notice {
  border-left: 4px solid var(--accent-2);
  padding: 1rem 1.2rem;
  background: rgba(177, 151, 252, 0.09);
  border-radius: 0.7rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .nav { align-items: flex-start; flex-direction: column; }
  nav a { margin: 0 0.8rem 0.5rem 0; display: inline-block; }
  .two-col { grid-template-columns: 1fr; }
}

.proposal-hero {
  margin: 2.5rem auto 3rem auto;
  text-align: center;
  padding: 0 1.5rem;
}

.proposal-hero a {
  display: inline-block;
  max-width: 520px;
  width: 100%;
}

.proposal-hero img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}

.card + .card {
  margin-top: 1rem;
}
