* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
    display: none;
}

body {
    background: radial-gradient(circle at top, #111, #000);
    color: white;
}

.seo-content {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

section {
    padding: 0 32px;
    padding-top: 100px;
    padding-bottom: 100px;
}

h2 {
    text-align: center;
    margin-bottom: 32px;
}

header {
    position: fixed;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 16px;
    left: 16px;

    & img {
        width: 48px;
        aspect-ratio: 1/1;
        border-radius: 50%;
    }
}

.hero {
    height: 93vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Glow Effect */
.hero::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
  filter: blur(100px);
  z-index: -1;
}

.hero h1 {
    font-size: 70px;
    background: linear-gradient(90deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    margin-top: 20px;
    color: #bbb;
}

/* BUTTON */
.btn {
    margin-top: 30px;
    padding: 12px 30px;
    border-radius: 30px;
    background: linear-gradient(90deg, white, #aaa);
    color: black;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.1);
}

/* CARDS */
.products {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.card {
    background: rgba(255,255,255,0.05);
    width: 600px;
    padding: 30px;
    border-radius: 20px;
    transition: 0.4s;
}

.card p {
    margin-top: 8px;
}

.card a {
    display: inline-block;
    margin-top: 16px;
    color: white;
}

footer {
    text-align: center;
    padding: 40px;
    color: #777;
}

@media screen and (max-width: 600px) {
    .card {
        width: 100%;
    }
}