* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #121212;
}

body {
    font-family: Inter;
}

@font-face {
    font-family: 'Inter';
    src: url('./fonts/InterVariable.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('./fonts/RobotoFlex.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

#hero {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 80px 10px;
    padding-top: 20px;

    background: radial-gradient(50% 50% at 50% 50%, #001B30 0%, #121212 100%);

}

#rating {
    width: 100%;
    max-width: 200px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#rating span {
    font-size: 16px;
    font-weight: 600;
    color: #f1f1f1;
}

#rating svg {
    width: 100%;
    height: auto;
}

#hero span {
    text-align: center;
    font-size: 16px;
    color: #ccc;
    margin-top: 15px;
}

#hero h1 {
    font-size: 64px;
    color: #fefefe;
    max-width: 600px;
    text-align: center;
    line-height: 1;
    font-family: Montserrat;
    margin-top: 10px;
}

@media (max-width: 500px) {
    #hero h1 {
        font-size: 54px;
    }
}

#hero p {
    font-size: 20px;
    color: #fefefe;
    max-width: 600px;
    text-align: center;
    line-height: 1.5;
    margin-top: 20px;
}

.form {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.form input {
    width: 100%;
    padding: 12px;
    background-color: transparent;
    border: 1.5px solid rgb(230, 230, 230);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    font-size: 18px;
    font-weight: 400;
    color: #f1f1f1;
}

.form .form-submit-btn-border {
    width: fit-content;
    height: fit-content;
    padding: 4px;
    background-color: #1d1d1d00;
    border: 2px solid rgba(3, 249, 220, 0.531);
    border-radius: 1000px;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    -ms-border-radius: 1000px;
    -o-border-radius: 1000px;
    cursor: pointer;
    margin-top: 10px;
}

.form .form-submit-btn-border .form-submit-btn {
    width: fit-content;
    height: fit-content;
    padding: 10px 30px;
    border: none;
    outline: none;
    background: linear-gradient(83.1deg, #0E77F7 -9.44%, #1ABCD8 107.6%);
    box-shadow: 0px 4px 48.4px rgba(0, 187, 255, 0.39);
    border-radius: 10000px;
    -webkit-border-radius: 10000px;
    -moz-border-radius: 10000px;
    -ms-border-radius: 10000px;
    -o-border-radius: 10000px;
    color: #f1f1f1;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;

}

.form .form-submit-btn-border .form-submit-btn:hover {
    box-shadow: 0px 4px 48.4px rgba(0, 187, 255, 0.753);
}

.form .form-submit-btn-border .form-submit-btn svg {
    width: 30px;
    height: auto;
}
.form #early-access {
    text-align: center;
    font-size: 18px;
    margin-top: 0;
    color: #ccc;
}
.form #early-access span {
    color: #16d101;
    font-weight: bold;
}

#features {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
#features h2 {
    width: 100%;
    max-width: 500px;
    font-size: 48px;
    color: #f1f1f1;
    text-align: center;
}
#features-list {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
}

#features .card {
    position: relative;
    width: 100%;
    max-width: 250px;
    padding: 20px 10px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    z-index: 0;
}

/* gradient border */
#features .card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0077ff, #09eea9);
    clip-path: polygon(81% 0, 100% 17%, 100% 100%, 18% 100%, 0 81%, 0 0);
    z-index: -2;
}

/* clipped dark background */
#features .card::after {
    content: "";
    position: absolute;
    inset: 2px;
    /* border thickness */

background: #000409;
box-shadow: inset 0px 4px 141.2px rgba(0, 242, 255, 0.25);

    clip-path: polygon(81% 0, 100% 17%, 100% 100%, 18% 100%, 0 81%, 0 0);
    z-index: -1;
}

#features .card svg{
    width: 80px;
    height: auto;
}
#features .card h2 {
    font-size: 32px;
    text-align: center;
    margin-top: 15px;
}

#features .card p {
    font-size: 18px;
    margin-top: 15px;
    text-align: center;
    line-height: 1.5;
    color: #d0d0d0;
}

#why-this {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
    padding:  10px;

}

#why-this h3 {
    width: 100%;
    max-width: 500px;
    font-size: 48px;
    color: #f1f1f1;
    text-align: center;
}

#why-this p {
    width: 100%;
    max-width: 600px;
    font-size: 20px;
    color: #b0b0b0;
    text-align: center;
    line-height: 1.6;
}
#why-this p span {
    color: #f1f1f1;
    font-weight: bold;
}


#final-cta {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding: 30px 10px;
    padding-bottom: 50px;
}

#final-cta h3 {
    width: 100%;
    max-width: 500px;
    font-size: 48px;
    color: #f1f1f1;
    text-align: center;
}

#final-cta p {
    width: 100%;
    max-width: 600px;
    font-size: 20px;
    color: #b0b0b0;
    text-align: center;
    line-height: 1.6;
    margin-top: 10px;
}
#final-cta p span {
    color: #f1f1f1;
    font-weight: bold;
}


#benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 700px;
  margin-top: 30px;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 12px 16px;
  transition: background 0.2s, transform 0.2s;
}

.benefit:hover {
  background: rgba(0, 255, 160, 0.08);
  transform: translateY(-2px);
}

.benefit svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.benefit span {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
}