* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Clash Grotesk Variable';
    src: url('ClashGrotesk-Variable.woff2') format('woff2'),
        url('ClashGrotesk-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'General Sans';
    src: url('GeneralSans-Medium.woff2') format('woff2'),
        url('GeneralSans-Medium.woff') format('woff'),
        url('GeneralSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-blue: #5B8DEF;
    --primary-blue-dark: #4A7CE0;
    --gradient-blue: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-soft: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.06) 50%, rgba(255, 200, 87, 0.08) 100%);
    --gradient-purple: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-yellow: #fef3c7;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: #f7fafc;
}

/*header*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
    padding: 0 96px;
}

.header .btn-primary{
    background: linear-gradient(135deg, #0028DD 0%, #5798FA 100%);
}

.header.hidden {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

/*hero*/
.hero-content {
    background: #FFFFFF33;
    border: 1px solid white;
    margin: 136px 96px;
    padding: 96px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image {
    position: absolute;
    width: 100%;
    top: 0;
}

.hero .title {
    font-family: 'Clash Grotesk Variable', sans-serif;
    font-weight: 600;
    font-size: 80px;
    line-height: 125%;
    letter-spacing: 0%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero .animated-word {
    min-height: 1.2em;
}

.hero .subtitle {
    font-family: 'General Sans', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    width: 70%;
}

.hero .subtitle-content {
    font-style: italic;
}

/*What We Bring Section*/
.features {
    margin: 96px;
}

.features-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 58px;
}

.features-heading .title,
.features-heading .subtitle {
    text-align: start !important;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-top: 66px;
    box-sizing: border-box;
}

.features-subcontent {
    display: flex;
    border-radius: 28px;
    background-color: white;
    box-shadow: -4px 4px 8px 0px #3375D71A;
}

.features-image {
    width: 250px;
    flex-shrink: 0;
}

.last-content .features-image {
    padding: 66px 48px;
    width: 548px;
}

.features-subcontent .subtitle {
    font-family: 'General Sans', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #666666;
    padding-top: 24px;
}

.features-subcontent .title {
    font-family: 'General Sans', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 40px;
    line-height: 125%;
    letter-spacing: 0%;
}

.features-group {
    padding: 66px 48px 66px 30px;
}

.features-content .last-content {
    grid-column: 1/3;
}

.features-content .last-content .features-group {
    width: 60%;
}


.scroll-fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
    will-change: opacity, transform;
}

.scroll-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/*philosophy*/
.philosophy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 160px auto;
    background: url("blue-ellipse.svg") no-repeat;
    background-size: 500px 350px;
    background-position: right 10% bottom -50px; 
}

.philosophy-content,.philosophy .section-title {
    width: 56%;
}

.philosophy-subtitle{
    padding-top: 16px;
}

.philosophy-subtitle,
.features-heading .subtitle {
    font-weight: 500;
    font-family: 'Clash Grotesk Variable', sans-serif;
    font-size: 32px;
    color: #666666;
    text-align: center;
    line-height: 150%;
}

/*movement*/
.movement {
    font-size: 80px;
    ;
    font-weight: 600;
    font-family: 'Clash Grotesk Variable', sans-serif;
    line-height: 125%;
    text-align: center;
    padding: 280px 192px;
    position: relative;
}

.movement-subclass {
    color: #BDC1CA;
}

.green-strip-top,
.green-strip-bottom {
    position: absolute;
}

.green-strip-top {
    top: 120px;
    right: 130px;
}

.green-strip-bottom {
    bottom: 80px;
    left: 150px;
}

/*value propsition*/

.value-prop {
    background: linear-gradient(204.46deg, #FFF0C9 47.24%, #FFC21D 97.87%);
    margin: 96px;
    padding: 40px;
    border-radius: 30px;
}

.value-prop .title {
    font-size: 44px !important;
    margin-bottom: 58px;
}

.products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.product-content {
    background-color: white;
    border-radius: 26px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: 100%;
}

.product-content-title {
    font-size: 40px;
    color: #3E4452;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #656D81;
    font-size: 22px;
    font-weight: 500;
  list-style: none;
}

.product-list li {
  background: url("check-mark.svg") no-repeat left 11px;
  background-size: 16px 16px;
  padding-left: 24px;
}

/* form */
.waitlist {
    padding: 150px 0;
    background: transparent;
    position: relative;
}

.waitlist-bg {
    position: absolute;
    top: -50px;
}

.waitlist-bg img {
    width: 100%;
}

.waitlist .container {
    position: relative;
    z-index: 1;
}

.waitlist .section-title,
.value-prop .title,
.philosophy .section-title,
.features-heading .title {
    font-family: 'Clash Grotesk Variable', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 56px;
    line-height: 125%;
    letter-spacing: 0;
    text-align: center;
    color: '#3E4452';
}

.waitlist-subtitle {
    font-family: 'General Sans', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0;
    text-align: center;
    color: #222222;
    margin: auto;
    margin-bottom: 48px;
    width: 50%;
}

.waitlist-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: #333333;
}

.form-group input::placeholder,
.form-group select option:first-child {
    color: #999999;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.waitlist-form .btn-primary,
.hero .btn-primary {
    display: block;
    margin: 40px auto 0;
    width: auto;
    max-width: none;
    padding: 14px 32px;
    font-size: 17px;
    background: linear-gradient(135deg, #0028DD 0%, #5798FA 100%);
    box-shadow: 0 4px 15px rgba(0, 40, 221, 0.3);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px 0 rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transition: left 0.3s ease;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px 0 rgba(102, 126, 234, 0.5);
}

/* footer */

.footer {
    background: linear-gradient(106.42deg, #444444 4.51%, #111111 97.99%);
    color: white;
    margin: 32px;
    padding: 120px 64px;
    border-radius: 32px;
}

.footer-top,
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid white;
    font-style: 'General Sans', sans-serif;
}


.footer-right {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 20px;
    gap: 16px;
    text-align: right;
    align-items: flex-end;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
}

.contact-link:hover,
.contact-link:focus {
    text-decoration: underline;
}

.logo.white {
    filter: brightness(0) invert(1);
}

.logo-icon {
    width: 40px;
    height: 44px;
    vertical-align: middle;
    margin-right: 12px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-icon-media {
    width: 20px;
    height: 20px;
}

.social-media {
    padding: 24px 18px;
}


/*media queries*/
@media (max-width:1024px) {
    .header{
        padding:0 60px;
    }
    .hero-content {
       margin: 136px 60px;
    }

    .features,.value-prop{
        margin:96px 60px;
    }

    .features-content {
        grid-template-columns: 1fr;
    }

     .features-content .last-content {
        grid-column: 1/2;
    }

    .features-subcontent{
        justify-content: space-between;
    }

    .movement{
        padding:200px 90px;
    }

    .green-strip-top {
        right: 50px;
        top: -40px;
    }

    .green-strip-bottom {
        left: 60px;
        bottom: 0px;
    }
}

@media (max-width:940px) {
    .hero .title {
        font-size: 60px;
    }

    .hero .subtitle {
        width: 100%;
        font-size: 24px;
    }

    .value-prop,
    .hero-content {
        margin: 60px;
        padding: 60px;
    }
    .hero-content{
        margin-top: 96px;
    }
    .last-content .features-image {
    width: 400px;
}
.features-content .last-content .features-group {
    width: 90%;
}
.features-subcontent.last-content{
    flex-direction: column;
    justify-content: center;
}

.philosophy {
        margin: 60px;
    }   
    .philosophy-content,.philosophy .section-title{
        width: auto;
    }
.movement {
        font-size: 56px;
    }

    .green-strip-top,
    .green-strip-bottom {
        width: 200px;
        height: 200px;
    }

.green-strip-top {
        right: 50px;
        top: 0px;
    }

    .green-strip-bottom {
        left: 50px;
        bottom: 0px;
    }

    .form-row,.products {
        grid-template-columns: 1fr;
    }.features-heading {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    .waitlist-subtitle{
        width: 70%;
    }
    .waitlist-form {
        padding: 0px 60px;
        margin:0;
    }
    .waitlist {
        padding: 60px 0;
    
    }
    .waitlist-bg{
        top:33%;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-right {
        align-items: flex-start;
        text-align: left;
    }

    .contact-info {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0 16px;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-icon{
        width:24px;
        height:24px;
        margin-right: 0px;
    }

    .btn-primary,.waitlist-form  .btn-primary,.hero-content .btn-primary {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
    }

    .hero .title {
        font-size: 36px;
    }

    .hero .subtitle {
        width: 100%;
        font-size: 15px;
    }

    .philosophy {
        margin: 60px 16px;
    }

    .philosophy-subtitle,
    .features-heading .subtitle {
        font-size: 20px;
    }

    .features {
        margin: 16px;
    }

    .features-image {
        width: 150px;
    }

    .movement {
        font-size: 32px;
        padding: 150px 16px;
    }

    .green-strip-top,
    .green-strip-bottom {
        width: 100px;
        height: 100px;
    }

    .green-strip-top {
        right: 0;
        top: 40px;
    }

    .green-strip-bottom {
        left: 0;
        bottom: 50px;
    }

    .value-prop,
    .hero-content {
        margin: 16px;
        padding: 16px;
    }

    .hero-content {
        padding-top: 136px;
    }

    .features-subcontent {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .features-image {
        width: 100%;
        max-width: 300px;
    }

    .features-group {
        padding: 24px;
    }

    .features-content .last-content .features-group {
        width: 100%;
    }

    .features-heading .subtitle {
        text-align: center !important;
    }

    .last-content .features-image {
        width: 100%;
        padding: 24px;
    }

    .last-content {
        flex-grow: 1;
    }

    .products {
        grid-template-columns: 1fr;
    }

    .product-list {
        font-size: 16px;
        gap: 16px;
    }

    .product-list li {
  background-size: 12px 12px;
}

    .product-content {
        padding: 16px;
        gap: 20px;
    }

    .value-prop .title {
        font-size: 28px !important;
        margin-bottom: 16px;
    }

    .features-group .title,
    .product-content-title {
        font-size: 24px;
    }

    .features-group .subtitle {
        font-size: 20px;
        padding-top: 16px;
    }

    .waitlist .section-title,
    .value-prop .title,
    .philosophy .section-title,
    .features-heading .title {
        font-size: 28px;
    }

    .waitlist-subtitle {
        font-size: 20px;
        width: auto;
    }

    .waitlist-form {
        padding: 0px 16px;
    }

    .footer {
        margin: 16px;
        padding: 24px;
        border-radius: 24px;
    }

    .footer-top {
        gap: 20px;
    }

    .footer-right {
        font-size: 18px;
        gap: 12px;
    }

    .contact-link {
        font-size: 16px;
    }
}