:root {
  --accent: #4a7c8c;
  --accent-soft: rgba(74, 124, 140, 0.12);
  --accent-hover: #3d6a78;
  --text: #1a2228;
  --text-muted: #5c6b73;
  --surface: #ffffff;
  --surface-muted: #f5f6f7;
  --border: #e4e8eb;
  --radius: 10px;
  --font-display: "Literata", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --shadow: 0 24px 60px rgba(26, 34, 40, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface-muted);
  line-height: 1.55;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(74, 124, 140, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(74, 124, 140, 0.08), transparent 50%),
    linear-gradient(180deg, #f8f9fa 0%, #f0f2f4 100%);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 0;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

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

.eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
  max-width: 52ch;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.cta-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.cta-secondary {
  padding: 0.55rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
}

.cta-full { width: 100%; }

.form-card, .thank-you {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-card h2, .thank-you h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.form-hint {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.field span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.field em {
  font-weight: 400;
  color: var(--text-muted);
  font-style: normal;
}

.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) {
  .field-row { grid-template-columns: 1fr; }
}

.checkbox-group {
  border: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.checkbox-group legend {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem 1rem;
  margin-bottom: 0.75rem;
}

.checkbox-grid label,
.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
}

.checkbox-grid input,
.consent input {
  margin-top: 0.2rem;
  accent-color: var(--accent);
}

.field-inline { margin-bottom: 0; }

.consents {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.consents a { color: var(--accent); }

.form-error {
  color: #b33;
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

.thank-you {
  text-align: center;
  padding: 3rem 2rem;
}

.thank-you p {
  color: var(--text-muted);
  max-width: 40ch;
  margin: 0 auto;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.captcha-wrap {
  margin: 0 0 1.25rem;
  min-height: 102px;
}

.site-footer {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem 1.25rem 5rem;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-nav a:hover { color: var(--accent); }

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: min(640px, calc(100% - 2rem));
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 100;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cookie-banner a { color: var(--accent); }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 0.7s ease forwards;
}

.hero.reveal { animation-delay: 0.05s; }
.value-section.reveal { animation-delay: 0.1s; }
.roadmap-section.reveal { animation-delay: 0.15s; }
.form-section.reveal { animation-delay: 0.2s; }

/* Value section */
.value-section,
.roadmap-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.value-section h2,
.roadmap-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
  max-width: 58ch;
}

.value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 720px) {
  .value-list {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
  }
}

.value-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  color: var(--text);
}

.value-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Roadmap timeline */
.roadmap-timeline {
  position: relative;
  display: grid;
  gap: 2.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
}

@media (min-width: 720px) {
  .roadmap-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding-top: 1.5rem;
  }

  .roadmap-timeline::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(
      90deg,
      var(--accent) 0%,
      var(--accent) 33%,
      var(--border) 33%,
      var(--border) 100%
    );
    z-index: 0;
  }
}

.roadmap-step {
  position: relative;
  padding: 0;
  z-index: 1;
}

@media (min-width: 720px) {
  .roadmap-step {
    padding: 0 0.75rem;
    text-align: center;
  }
}

.roadmap-marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--surface-muted);
  margin-bottom: 1rem;
}

@media (min-width: 720px) {
  .roadmap-marker {
    margin: 0 auto 1.25rem;
    position: relative;
    top: -7px;
  }
}

.roadmap-step--current .roadmap-marker {
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.roadmap-date {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.roadmap-step--current .roadmap-date {
  color: var(--accent);
}

.roadmap-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.roadmap-step:not(.roadmap-step--current) .roadmap-title {
  color: var(--text-muted);
}

.roadmap-desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.roadmap-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 52ch;
}

.roadmap-section .cta-primary {
  margin-top: 0.5rem;
}

@media (max-width: 719px) {
  .roadmap-timeline {
    padding-left: 1.25rem;
    border-left: 2px solid var(--border);
  }

  .roadmap-step {
    padding-left: 0.5rem;
  }

  .roadmap-marker {
    position: absolute;
    left: -1.44rem;
    top: 0.15rem;
    margin: 0;
  }

  .roadmap-step--current .roadmap-marker {
    background: var(--accent);
  }
}

.form-section { padding-bottom: 2rem; padding-top: 1rem; border-top: 1px solid var(--border); }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Legal pages */
.legal-page main {
  max-width: 720px;
  padding-top: 1rem;
}

.legal-page .back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 1.5rem;
}

.legal-page h2 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.75rem 0 0.5rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  margin: 0 0 0.85rem;
}

.legal-page ul {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

.legal-page .prose {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
}
