* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
   scroll-behavior: smooth;
}
body {
    font-family: "Noto Sans", sans-serif;
    background: #141720;
    overflow-x: hidden;
    min-width: 340px;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Noto Sans", sans-serif;
}

p {
    font-family: "Noto Sans", sans-serif;
}

.popup {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

.popup-content {
  background: white;
  padding: 20px 30px;
  border-radius: 10px;
  width: fit-content;
  margin: 15% auto;
  text-align: center;
}

header {
    position: fixed;
    width: 90%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    padding: 20px 0;
}
.popup-close{
    background: black;
    color: #fff;
    border: none;
    padding: 7px 16px;
    margin-top: 20px;
}
.popup-content p{
    font-size: 20px;
}
header.header-scrolled::after {
    content: "";
    display: block;
    position: fixed;
    width: 111vw;
    top: 0;
    left: -10%;
    background: #141720;
    transition: background 0.3s;
    height: 100%;
    z-index: -1;

}

.nav-left img {
    max-width: 240px;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-right ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.nav-right ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    opacity: 60%;
}

.early-access-btn img {
    max-width: 300px;
    width: 100%;
}

.hero-section,
.features-section,
.howitworks-section,
.cta-section {
    padding-left: 20px;
    padding-right: 20px;
}

.hero-section .waitlist-form input[type="email"] {
    background-color: #0D0F15;
}

.hero-section {
    background-image: url(/assets/media/images/bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    padding-top: 120px;
}

.gridsvg {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
    gap: 40px;
}

.hero-left {
    flex: 1;
    color: #fff;
}

.hero-left h1 {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(90deg, #E8CAA1 0%, #C08853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero-subtext {
    font-size: 1rem;
    margin-bottom: 32px;
    color: #fff;
    max-width: 480px;
}

.hero-subtext b {
    color: #FCCF9E;
}

.hero-cta-box {
       display: none !important;
    background: #191d274a;
 
    border-radius: 33px;
    padding: 32px 24px 24px 24px;
    max-width: 520px;
    box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.18);
    margin-bottom: 24px;
}

.hero-cta-box h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 500;
}

.cta-desc {
    font-size: 1rem;
    color: #bdbdbd;
    margin-bottom: 18px;
}

.waitlist-form {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #333C4E;
    border-radius: 20px;
    padding: 10px;
    background: #0D0F15;
}


.waitlist-form input[type="email"] {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 12px 0 0 12px;
    font-size: 1rem;
    outline: none;
    background: #181b24;
    color: #fff;
}

.waitlist-form button {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #E8CAA1 0%, #C08853 100%);
    color: #12161D;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.waitlist-form button:hover {
    background: linear-gradient(90deg, #C08853 0%, #E8CAA1 100%);
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .hero-right {
        justify-content: flex-start;
    }

    .hero-right img {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding-top: 120px;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-cta-box {
        padding: 14px;
    }

    .hero-right img {
        max-width: 100%;
    }

    .nav-hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 200;
        margin-left: auto;
    }

    .nav-hamburger span {
        display: block;
        width: 28px;
        height: 4px;
        margin: 4px 0;
        background: #fff;
        border-radius: 2px;
        transition: 0.3s;
    }

    .nav-right {
        display: none;
        position: absolute;
        top: 100px;
        right: 0;
        background: #191d27;
        border-radius: 4px;
        box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.18);
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 24px;
        min-width: 180px;
        z-index: 150;
        transition: all 0.3s;
        width: 100%;
    }

    .nav-right.active {
        display: flex !important;
    }
}

.nav-hamburger {
    display: none;
}

.features-section {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 120px 20px 40px 20px !important;
}

.features-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 48px;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #E8CAA1 0%, #C08853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
}

.howitworks-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 25px;
}

.howitworks-cards img {
    width: 100%;
    max-width: 540px;
}

.feature-card {
    background: #191D27;
    border-radius: 28px;
    box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.14);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 260px;
    color: #fff;
    position: relative;
}

.feature-card-wide {
    grid-column: 1 / span 2;
    grid-row: 1 / span 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
    padding: 0 20px 60px 20px;
    text-align: center;
}

.feature-card-wide img {
    max-width: 920px;
    width: 100%;

}

.feature-card-2 {
    padding: 73px 59px 0 59px;
}

.feature-card-3 {
    background-image: url(/assets/media/images/feature3.png);
    background-size: contain;
    background-repeat: no-repeat;
    justify-content: end;
}

.feature-card-6 {
    min-height: 180px;
    background-image: url(/assets/media/images/feature6.png);
    background-size: 100% 100%;
    background-position: right;
    background-repeat: no-repeat;
}

.feature-card-5 {
    background-image: url(/assets/media/images/feature5.png);
    background-size: 100% 100%;
    background-position: right;
    background-repeat: no-repeat;
    min-height: 180px;

}

.feature-card-6 .feature-card-content {
    display: flex;
    align-items: center;
    margin: auto;
}

.feature-card-2 img {
    width: 100%;
    max-width: 430px;
}

.feature-card-4 {
    text-align: center;
}

.feature-card-4 img {
    max-width: 444px;
    width: 100%;
}

.feature-card-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-card-col .feature-card {
    height: 50%;
}

.feature-main-text {
    flex: 1;
}

.feature-alerts {
    margin-bottom: 18px;
}

.feature-alert {
    background: #23263a;
    color: #fff;
    border-radius: 10px;
    padding: 10px 18px;
    margin-bottom: 8px;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
}

.alert-warning {
    background: #2d2320;
    color: #e8caa1;
}

.alert-time {
    font-size: 0.92rem;
    color: #bdbdbd;
    margin-left: 12px;
    font-weight: 400;
}

.feature-description {
    margin-top: 10px;
}

.feature-highlight {
    display: block;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #fff;
}

.feature-highlight span,
.feature-card-content h3 span {
    color: #FCCF9E;
}


.feature-card-content h3 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fff;
}

.feature-card-content p {
    color: #bdbdbd;
    font-size: 1rem;
    margin-bottom: 16px;
}

.center-content {
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Placeholder image variations */
.phone-img {
    height: 90px;
    width: 60px;
    margin: 0 auto 0 0;
}

.timer-img {
    background: rgba(232, 202, 161, 0.08);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 18px auto;
}

.custom-img {
    height: 60px;
    width: 120px;
    margin: 0;
}

.feedback-img {
    height: 60px;
    width: 120px;
    margin: 0;
}

.podium-img {
    height: 60px;
    width: 120px;
    margin: 0;
}

/* Gradient text reuse */
.gradient-text {
    background: linear-gradient(90deg, #E8CAA1 0%, #C08853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .feature-card-wide {
        grid-column: 1 / span 2;
    }
}

@media (max-width: 700px) {
    .features-section {
        padding: 100px 20px 20px 20px;
    }

    .features-title {
        font-size: 2rem;
        margin-bottom: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-card,
    .feature-card-wide {
        min-height: 180px;
        padding: 40px 30px;
        flex-direction: column !important;
    }

    .feature-card-2 {
        padding-bottom: 0;
    }

    .feature-card-content h3 {
        font-size: 20px;
    }

    .feature-card-wide {
        grid-column: 1 / span 1;
        padding: 18px 10px;
    }

    .feature-img-placeholder {
        width: 60px;
        height: 60px;
        margin-right: 16px;
        font-size: 1.2rem;
    }

    .timer-img,
    .custom-img,
    .feedback-img,
    .podium-img {
        width: 40px !important;
        height: 40px !important;
    }
    .howitworks-cards img{
        max-width: 300px;
        margin: auto;
    }
}

.howitworks-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 40px 20px !important;
}

.howitworks-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 48px;
    background: linear-gradient(90deg, #E8CAA1 0%, #C08853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: 1px;
}



/* Placeholder image variations */
.customize-img {
    background: rgba(232, 202, 161, 0.08);
}

.practice-img {
    background: rgba(192, 136, 83, 0.08);
}

.leaks-img {
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1000px) {
    .howitworks-cards {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .howitworks-card {
        max-width: 420px;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .howitworks-section {
        padding: 100px 20px 20px 20px;
    }

    .howitworks-title {
        font-size: 1.3rem;
        margin-bottom: 24px;
    }

    .howitworks-card {
        padding: 18px 6px 14px 6px;
    }

    .howitworks-img-placeholder {
        height: 140px;
    }

    .howitworks-cards {
        grid-template-columns: 1fr !important;
        gap: 18px;
    }
}

.cta-section {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding: 0 20px;
}

.cta-content {
    background: linear-gradient(180deg, #E8CAA1 0%, #C08853 100%);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px 48px 32px 48px;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.cta-left {
    flex: 1;
    color: #181b24;
    z-index: 2;
}

.cta-left h2 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.1;
}

.cta-sub {
    display: inline-block;
    background: #ffffff59;
    color: #181b24;
    font-weight: 700;
    font-size: 24px;
    border-radius: 30px;
    padding: 6px 18px;
    margin-bottom: 28px;
    margin-top: 2px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
}

.cta-early-access-box {
    background: #191d274d;
    display: none !important;
    border-radius: 16px;
    padding: 22px 18px 18px 18px;
    margin-top: 24px;
    max-width: 100%;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.08);
}

.cta-early-access-box h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.cta-early-access-box .cta-desc {
    color: #e8e8e8;
    font-size: 1rem;
    margin-bottom: 12px;
}

.cta-early-access-box .waitlist-form {
    margin-top: 0;
}

.cta-early-access-box input[type="email"] {
    background: #0D0F15;
    color: #fff;
    border-radius: 10px 0 0 10px;
    border: none;
    padding: 14px 18px;
    font-size: 1rem;
}

.cta-early-access-box button {
    border-radius: 18px;
    padding: 14px 28px;
    font-size: 1rem;
}

.cta-right {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 1;
}

.cta-right img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    /* margin-bottom: -32px; */
    /* margin-right: -32px; */
    position: absolute;
    width: 50%;
    bottom: 0;
    right: 20px;
    height: auto;
}

@media (max-width: 900px) {
    .cta-content {
        flex-direction: column;
        align-items: center;
        padding: 32px 16px 24px 16px;
        text-align: center;
        padding-bottom: 0;
    }

    .cta-right {
        width: 100%;
        justify-content: center;
        margin-top: 18px;
    }

    .cta-right img {
        max-width: 100%;
        margin: 0 !important;
        width: 100%;
        position: relative;
    }
}

@media (max-width: 600px) {


    .cta-left h2 {
        font-size: 32px;
    }

    .cta-early-access-box {
        padding: 14px;
        max-width: 100%;
    }

    .cta-sub {
        font-size: 20px;
    }
}



.footer-content {
    max-width: 1800px;
    width: 90%;
    margin: 0 auto;
    min-height: 267px;
    background-image: url(/assets/media/images/footer.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

@media(max-width:700px) {
    .feature-card-3 {
        background-position: center center;
        background-size: 100%;
    }
}

@media (max-width: 600px) {

    .howitworks-cards {

        grid-template-columns: repeat(1, 1fr);

    }

    .footer-content {
        min-height: 120px;
    }

    .waitlist-form {
        flex-direction: column;
    }

    .waitlist-form input[type="email"] {
        text-align: center;
        width: 100%;
    }
}