@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --bg: #0b1220;
  --card: #111b2e;
  --muted: #98a3b8;
  --text: #e8edf7;
  --white: #ffffff;
  --accent: #4f8cff;
  --accent2: #22c55e;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --radius: 18px;
  --max: 1280px;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

body {
  color: var(--text);
  background: radial-gradient(
      1200px 800px at 70% -10%,
      rgba(79, 140, 255, 0.3),
      transparent 60%
    ),
    radial-gradient(
      900px 600px at 10% 10%,
      rgba(34, 197, 94, 0.18),
      transparent 55%
    ),
    var(--bg);
}

h1 {
  margin: 14px 0 12px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.6px;
}
h2 {
  font-size: 28px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 22px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 18px;
}
a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
}
p {
  font-size: 16px;
}
span {
  font-size: 16px;
}
div {
  font-size: 16px;
}
ul {
  font-size: 16px;
}
img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1280px) {
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 16px;
  }
  h6 {
    font-size: 14px;
  }
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}