:root {
  color-scheme: dark;
  --bg: #050916;
  --text: #f7f9fc;
  --muted: #e1e3e8;
  --accent: #5c8dff;
  --accent-strong: #2b59ff;
  --card: rgba(13, 17, 26, 0.85);
  --border: rgba(255, 255, 255, 0.1);
  --topblue: rgba(34, 81, 120, 0.8);
  --topblack: rgb(5, 17, 41);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:'Montserrat', Arial, sans-serif; 
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  display: flex;
  flex-direction: column;
}

section {
  width: 100%;
  margin: 0 auto;
  padding: 5vh 30vh;
}

section:nth-child(odd) {
  background: linear-gradient(0deg, var(--topblue), var(--topblack));
}

section:nth-child(even) {
  background: linear-gradient(0deg, var(--topblack), var(--topblue));
}

.hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 120px;
  background: linear-gradient(0deg, var(--topblack), var(--topblue)), url("assets/hero.png") center/cover;
}

section h2 {
  font-weight: 400;
  padding-bottom: 25px;
}

section p {
  text-align: justify;
}

section strong,
section b {
  font-weight: 500;
}

.hero h1 {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hero p {
  font-size: 20px;
  font-weight: 300;
  margin: 0 auto 32px;
  max-width: 720px;
  color: var(--muted);
}

.tagline {
  display: inline-flex;
  padding: 6px 16px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: var(--muted);
}

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

.cta-buttons a {
  text-decoration: none;
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cta-buttons a.primary {
  background: var(--accent-strong);
  box-shadow: 0 10px 30px rgba(43, 89, 255, 0.35);
}

.cta-buttons a.secondary {
  border-color: var(--border);
  color: var(--muted);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.list li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  margin: 0 30px;
}

.list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.list.list-plain li {
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--text);
}

.list.list-plain li::before {
  display: none;
}

iframe {
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

footer {
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 1240px) {
  form {
    padding: 24px;
  }

  section {
    padding: 15px 15vh;
  }
}


@media (max-width: 640px) {
  form {
    padding: 24px;
  }

  section {
    padding: 15px 2vh;
  }
}
