/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: #ffffff;
}

html::-webkit-scrollbar {
  width: 7px;
}

html::-webkit-scrollbar-track {
  background: #000000;
}

html::-webkit-scrollbar-thumb {
  background: var(--accent-color);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #000000;
  color: #FFFFFF;
  overflow-x: hidden;
  background-image: url('assets/background.png'); 
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right top;
  background-attachment: scroll;
  min-height: 100vh;
}

/* Loader */

body.loading {
    overflow: hidden;
    height: 100vh;
}

/* Fullscreen overlay */
#app-loader {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 14px;
    background: #000000;
    z-index: 99999;
    transition: opacity 350ms ease, visibility 350ms ease;
    opacity: 1;
    visibility: visible;
}
/* Hidden state */
#app-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Spinner */
.loader-spinner {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.12);
    border-top-color: #FF0000;
    animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loader-text {
    margin: 0;
    font: 600 14px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Inter, sans-serif;
    letter-spacing: .3px;
    color: #ffffff;
    opacity: .8;
}

/* Optional: dark mode is already dark, but keep high-contrast text */
@media (prefers-reduced-motion: reduce) {
    .loader-spinner { animation-duration: 1.6s; }
    #app-loader { transition: none; }
}

.text-red {
    color: #FF0000;
}

.text-white {
    color: #FFFFFF;
}

/* Navbar Section */
.navbar-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.navbar-logo-img {
    height: 40px;
    width: auto;
}

.navbar-button {
    display: flex;
    align-items: center;
}

.btn-navbar-early-access {
    background-color: #FF0000;
    color: #FFFFFF;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-navbar-early-access:hover {
    background-color: #CC0000;
    color: #FFFFFF;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-color: transparent;
    /* padding: 0px 0 0px; */
    overflow: hidden;
    /* margin-top: 70px; */
}

.hero-section .background-waves {
    display: none;
}

.hero-section .bg-image {
    display: none;
}

.hero-section .container-fluid {
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: 0px 60px;
    z-index: 2;
}

.logo-img {
    height: 50px;
    width: auto;
}

.hero-headline {
    /* font-size: 5rem !important; */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.hero-headline span {
    font-size: 4rem;
}

.hero-headline .hero-vibe {
    font-size: 4rem;
    display: block;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #FFFFFF;
    max-width: 600px;
    margin-bottom: 30px;
    font-weight: 400;
}

.btn-early-access {
    background-color: #FF0000;
    color: #FFFFFF;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-early-access:hover {
    background-color: #CC0000;
    color: #FFFFFF;
}

.hero-mockups {
    position: relative;
    /* padding: 40px; */
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.mockup-container {
    width: 100%;
    max-width: 650px;
    position: relative;
}

.mockup-container img {
    width: 100%;
    height: auto;
    opacity: 1;
    display: block;
}

.btn-early-access-small {
    background-color: #333333;
    color: #FFFFFF;
    border: none;
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    margin-right: 20px;
    transition: background-color 0.3s ease;
}

.btn-early-access-small:hover {
    background-color: #555555;
    color: #FFFFFF;
}

/* Who We Are Section */
.who-we-are-section {
    background-color: transparent;
    padding: 0px 0 100px;
    position: relative;
    overflow: hidden;
}

.who-we-are-section .container-fluid {
    position: relative;
    z-index: 1;
}

.who-we-are-section .section-heading {
    margin-bottom: 60px;
    padding-top: 20px;
}

.who-we-are-content {
    padding: 40px 60px;
}

.section-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1rem;
    line-height: 1.2;
    color: #FFFFFF;
    max-width: 600px;
}

.who-we-are-mockups {
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-pair {
    position: relative;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* .mockup-1 {
    width: 280px;
    height: auto;
    transform: rotate(-12deg);
    z-index: 2;
    position: relative;
}

.mockup-2 {
    width: 280px;
    height: auto;
    transform: rotate(12deg);
    z-index: 1;
    position: relative;
    margin-left: -80px;
} */

/* Key Features Section */
.key-features-section {
    background-color: transparent;
    padding: 20px 0;
}

.feature-block {
    text-align: left;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    border-radius: 2px;
}

.feature-icon.yellow {
    background-color: #FFD700;
}

.feature-icon.gray {
    background-color: #808080;
}

.feature-icon.red {
    background-color: #FF0000;
}

/* .feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
} */

/* MVP Launch Section */
.mvp-section {
    background-color: transparent;
    /* padding: 100px 0; */
    position: relative;
    overflow: hidden;
}

.mvp-section .container-fluid {
    position: relative;
    z-index: 1;
}

.mvp-illustration {
    padding: 40px 60px;
}

.mvp-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFFFFF;
    max-width: 500px;
}

.character-illustration {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.character-illustration img {
    max-width: 120%;
    height: auto;
    display: block;
}

.mvp-features {
    padding: 40px 60px;
}

.feature-list {
    /* list-style: none;
    /* padding: 0;
    margin: 0; */
    position: relative;
    /* margin-left: 8px; */
}
/* 
.feature-list::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #FF0000;
} */

.feature-item {
    position: relative;
    /* padding-left: 8px; */
    margin-top: 8px;
    display: block;
}

/* .feature-item.even {
    margin-left:  50%;
}

.feature-item.even {
    margin-right: 50%;
} */

/* .feature-item:last-child {
    margin-bottom: 0;
} */

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    margin-block: 3px;
    background-color: #FF0000;
    /* content: '';
    position: absolute;
    left: -2px;
    top: 12px;
    width: 12px;
    height: 2px;
    background-color: #FF0000; */
}

.mvp-features .feature-title {
    /* font-size: 1.25rem;
    font-weight: 700; */
    /* line-height: 1.4; */
    color: #FFFFFF;
    margin: 0;
    /* margin-bottom: 8px; */
}

.mvp-features .feature-description {
    /* font-size: 1rem;
    font-weight: 400; */
    /* line-height: 1.6; */
    color: #FFFFFF;
    margin: 0;
    opacity: 0.9;
}

.feature-text {
    display: none;
}

.feature-line {
    display: none;
}

/* Email Signup Section */
.email-signup-section {
    background-color: transparent;
    padding-bottom: 50px;
    padding-top: none;
}

.signup-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.email-form-container {
    display: flex;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    background-color: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 6px;
    color: #FFFFFF;
    font-size: 1rem;
    outline: none;
}

.email-input::placeholder {
    color: #999999;
}

.email-input:focus {
    border-color: #FF0000;
}

.btn-join-feed {
    background-color: #333333;
    color: #FFFFFF;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.btn-join-feed:hover {
    background-color: #555555;
    color: #FFFFFF;
}

/* Footer Section */
/* .footer-section {
    padding: 10px 0 10px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 1rem;
    margin-bottom: 25px;
    font-weight: 400;
}

.newsletter-signup {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 300px;
}

.footer-email-input {
    padding: 12px 15px;
    background-color: transparent;
    border: 1px solid #333333;
    border-radius: 6px;
    color: #FFFFFF;
    font-size: 0.9rem;
    outline: none;
    margin-bottom: 10px;
}

.footer-email-input::placeholder {
    color: #999999;
}

.btn-subscribe {
    background-color: #333333;
    color: #FFFFFF;
    border: none;
    padding: 12px 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease;
    width: auto;
}

.btn-subscribe:hover {
    background-color: #555555;
    color: #FFFFFF;
}

.footer-heading {
    font-size: 1.5rem;
    font-weight: 900;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF0000;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
} */

.footer-section {
    padding: 40px 0;
}

.footer-logo img {
    width: 100px;
    height: auto;
}

.newsletter-signup {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 280px;
}

.footer-email-input {
    flex: 1;
    padding: 10px;
    background-color: grey;
    border: 1px solid #333333;
    border-radius: 6px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
}

.footer-email-input::placeholder {
    color: #999999;
}

.btn-subscribe {
    background-color: #333333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-subscribe:hover {
    background-color: #555555;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff0000;
}

.social-icons {
    display: flex;
    align-items: start;
    gap: 15px;
}

#successToast {
    position: fixed;
    top: 20px;
    right: -300px; /* start hidden */
    background-color: #FF0000;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 9999;
}

#successToast.show {
    right: 20px;
    opacity: 1;
}

.social-icon img {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .newsletter-signup {
        flex-direction: column;
        align-items: end;
        width: 85%;
    }

    .btn-subscribe {
        width: 83%;
    }

    .footer-heading, .footer-links, .social-icons {
        text-align: start;
    }
}



.copyright {
    font-size: 0.9rem;
    color: #FFFFFF;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #333333;
}

/* Privacy policy */

span {
    font-weight: bold;
    font-size: 25px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-headline {
        font-size: 3.5rem;
    }
    
    .hero-headline .hero-vibe {
        font-size: 4rem;
    }
    
    .section-heading {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .navbar-content {
        padding: 0 30px;
    }
    
    .navbar-logo-img {
        height: 35px;
    }
    
    .btn-navbar-early-access {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-section {
        margin-top: 65px;
        padding: 100px 0 60px;
    }
    
    .hero-headline {
        font-size: 3rem;
    }
    
    .hero-headline .hero-vibe {
        font-size: 3.5rem;
    }
    
    .hero-content {
        padding: 20px 30px;
        text-align: left;
    }
    
    .hero-mockups {
        padding: 20px;
        align-items: center;
    }
    
    .who-we-are-section .section-heading {
        margin-bottom: 40px;
    }
    
    .who-we-are-content {
        padding: 20px 30px;
        text-align: left;
    }
    
    .who-we-are-mockups {
        padding: 20px;
    }
    
    .mvp-illustration {
        padding: 20px 30px;
        text-align: left;
    }
    
    .mvp-features {
        padding: 20px 30px;
    }
    
    .mockup-pair {
        flex-direction: row;
        gap: 15px;
    }
    
    .mockup-1 {
        transform: rotate(-8deg);
        width: 200px;
    }
    
    .mockup-2 {
        transform: rotate(8deg);
        width: 200px;
        margin-left: -60px;
    }
    
    .signup-heading {
        font-size: 2.5rem;
    }
    
    .email-form-container {
        flex-direction: column;
    }
    
    .btn-join-feed {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-headline span {
        font-size: 2.5rem;
    }

    .navbar-content {
        padding: 0 20px;
    }
    
    .navbar-logo-img {
        height: 30px;
    }
    
    .btn-navbar-early-access {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .hero-section {
        margin-top: 60px;
        padding: 80px 0 40px;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-headline .hero-vibe {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-heading {
        font-size: 2.5rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .signup-heading {
        font-size: 2rem;
    }
    
    .mvp-features .feature-title {
        font-size: 1.1rem;
    }
    
    .mvp-features .feature-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .navbar-content {
        padding: 0 15px;
    }
    
    .navbar-logo-img {
        height: 28px;
    }
    
    .btn-navbar-early-access {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .hero-section {
        margin-top: 55px;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-headline .hero-vibe {
        font-size: 2.5rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .signup-heading {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .key-features-section .feature-block {
        text-align: center;
        padding-block: 20px;
    }

    .key-features-section .feature-icon {
        margin: 0 auto 20px auto;
    }

    .key-features-section .feature-title {
        max-width: 90%;
        margin: 0 auto;       
        line-height: 1.4;
        font-size: 1rem;
    }
}

