:root {
  --midnight: #0B0F14;
  --purple: #6D28D9;
  --teal: #2DE2E6;
  --white: #F5F7FF;
  --coral: #FF4D6D;
  --gray: #9CA3AF;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--midnight);
  color: var(--white);
  line-height: 1.6;
}

a {
  color: var(--white);
  text-decoration: none;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(11, 15, 20, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  height: 50px;
  width: 50px;
}

.menu-toggle {
  display: none;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--white);
}

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

.main-nav a {
  font-weight: 600;
  color: var(--white);
}

.close-menu {
  display: none;
  color: var(--white);
  font-size: 24px;
  position: absolute;
  top: 20px;
  right: 24px;
  cursor: pointer;
}

.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.25), rgba(11, 15, 20, 0.9));
}

.small-hero {
  padding: 60px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
}

.eyebrow {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.lead {
  font-size: 18px;
  color: var(--gray);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.hero-highlights h3 {
  color: var(--teal);
  margin-bottom: 8px;
}

.section {
  padding: 70px 0;
}

.dark-block {
  background: #111821;
}

.accent-block {
  background: rgba(109, 40, 217, 0.15);
}

.fog-block {
  background: rgba(45, 226, 230, 0.08);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
}

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

.card {
  background: #121a25;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.card h3 {
  color: var(--coral);
  margin-bottom: 10px;
}

.checklist {
  margin-top: 20px;
  padding-left: 20px;
  color: var(--gray);
}

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

.timeline h3 {
  color: var(--teal);
  margin-bottom: 8px;
}

.faq details {
  background: #121a25;
  margin-bottom: 12px;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.contact-list {
  list-style: none;
  margin-top: 16px;
  color: var(--gray);
}

.form {
  display: grid;
  gap: 14px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0f1620;
  color: var(--white);
  border-radius: 6px;
}

.btn {
  background: var(--coral);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--teal);
  color: var(--teal);
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
}

.info-block {
  margin-top: 20px;
  padding: 16px;
  background: #121a25;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner {
  background: #111821;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  bottom: 0;
  width: 100%;
  display: none;
}

.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0;
}

.site-footer {
  background: #0f1318;
  padding: 50px 0 20px;
  margin-top: 40px;
  color: var(--white);
}

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

.logo-footer {
  height: 100px;
  width: 100px;
  margin-bottom: 12px;
}

.footer-nav {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
  color: var(--gray);
}

.legal h1, .legal h2 {
  margin-bottom: 12px;
}

.legal p, .legal ul {
  margin-bottom: 16px;
  color: var(--gray);
}

@media (max-width: 900px) {
  .hero-grid, .two-col {
    grid-template-columns: 1fr;
  }
  .hero-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }
  .main-nav {
    position: fixed;
    background: #0B0F14;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    transform: translateX(100%);
  }
  .close-menu {
    display: block;
  }
  .menu-toggle:checked ~ .main-nav {
    transform: translateX(0);
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 32px;
  }
}