:root {
  --bg: #07151f;
  --surface: #0f2433;
  --surface-soft: #112b3d;
  --text: #e8f1f7;
  --muted: #b7cad8;
  --brand: #3dd8c0;
  --brand-strong: #1fb39d;
  --line: rgba(232, 241, 247, 0.15);
  --shadow: 0 24px 50px rgba(2, 8, 15, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 15%, #143449 0%, transparent 35%),
    radial-gradient(circle at 85% 0%, #183951 0%, transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(9px);
  background: rgba(7, 21, 31, 0.78);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(17, 43, 61, 0.5);
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.62rem;
  font-weight: 700;
  line-height: 1;
  min-height: 2rem;
}

.menu-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
}

.menu-icon span {
  width: 1.1rem;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(7, 21, 31, 0.95);
}

.mobile-menu a {
  display: block;
  padding: 0.8rem 4vw;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 241, 247, 0.08);
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.mobile-menu[hidden] {
  display: none !important;
}

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

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

.hero {
  padding: 5.5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  margin-top: 0;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.hero-text {
  color: var(--muted);
  max-width: 65ch;
  margin-bottom: 1.8rem;
}

.startup-focus-tag {
  display: inline-block;
  margin: 0 0 1.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(61, 216, 192, 0.45);
  background: rgba(61, 216, 192, 0.12);
  color: #bdf6ea;
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand), var(--brand-strong));
  color: #06232c;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
}

.hero-card {
  background: linear-gradient(160deg, rgba(17, 43, 61, 0.95), rgba(10, 30, 44, 0.95));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.hero-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.hero-card li + li {
  margin-top: 0.7rem;
}

.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 24, 35, 0.5);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-grid article {
  padding: 1.2rem 0.8rem;
  text-align: center;
}

.stat-value {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.stat-label {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.section {
  padding: 4.7rem 0;
}

.section.soft {
  background: rgba(10, 24, 35, 0.45);
}

.section-heading {
  margin-bottom: 2rem;
}

.cards {
  display: grid;
  gap: 1rem;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
}

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

.free-market-note {
  margin: 1.1rem 0 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(17, 43, 61, 0.45);
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.chips span {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-size: 0.93rem;
}

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

.timeline article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.timeline span {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-family: "Space Grotesk", sans-serif;
  color: var(--brand);
  font-weight: 700;
}

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

.contact {
  background: rgba(10, 24, 35, 0.5);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-points {
  margin-top: 1.2rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 500;
}

input,
textarea,
button {
  font: inherit;
}

input,
textarea {
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 0.7rem 0.75rem;
  color: var(--text);
  background: #0b1d2a;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(61, 216, 192, 0.4);
  border-color: transparent;
}

button {
  cursor: pointer;
}

.form-feedback {
  margin: 0;
  min-height: 1.3rem;
  color: var(--muted);
}

.form-feedback.success {
  color: #82f3d0;
}

.form-feedback.error {
  color: #ff9ca1;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-wrap {
  min-height: 102px;
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-direction: column;
}

.footer-wrap p {
  color: var(--muted);
}

.footer-wrap a {
  color: var(--text);
}

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

.legal-main {
  padding: 4rem 0 5rem;
}

.legal-shell {
  max-width: 860px;
}

.legal-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin-top: 1.2rem;
}

.legal-card h2 {
  margin-bottom: 0.45rem;
  font-size: 1.25rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  padding-left: 1.1rem;
  margin: 0.5rem 0 0;
}

.legal-top-link {
  display: inline-block;
  margin-top: 1rem;
  color: #c8d6e2;
}

.legal-card a {
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(960px, calc(100vw - 1.2rem));
  background: rgba(7, 21, 31, 0.96);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.65rem 0.8rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: space-between;
  z-index: 120;
}

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

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

.cookie-actions {
  display: flex;
  gap: 0.45rem;
  flex-wrap: nowrap;
  align-items: center;
  white-space: nowrap;
}

.cookie-banner .btn {
  padding: 0.5rem 0.78rem;
  font-size: 0.82rem;
  line-height: 1;
}

.cookie-banner .btn-ghost {
  background: transparent;
  color: var(--text);
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards.three {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .eyebrow {
    margin-bottom: 0.55rem;
  }

  h1 {
    font-size: clamp(1.6rem, 8vw, 2.15rem);
  }

  .hero-text {
    margin-bottom: 1rem;
  }

  .startup-focus-tag {
    margin-bottom: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    padding: 0.7rem 0.95rem;
    font-size: 0.9rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    justify-content: center;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
  }
}
