/* Font Face Definitions */
@font-face {
    font-family: 'SuisseIntl';
    src: url('SuisseIntl-Regular/SuisseIntl-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SuisseIntl';
    src: url('SuisseIntl-Bold/SuisseIntl-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'SuisseIntl';
    src: url('SuisseIntl-Medium/SuisseIntl-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'SuisseIntl';
    src: url('SuisseIntl-SemiBold/SuisseIntl-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'SuisseWorks';
    src: url('SuisseWorks-Bold/SuisseWorks-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SuisseIntl', sans-serif;
    background-color: #0a0a0a; /* Dark background based on typical "dark mode" aesthetics */
    color: #ffffff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 20px 0; /* increased padding */
    position: fixed;
    width: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgb(29, 29, 32);
    border-left: 0;
    border-right: 0;
    border-top: 0;
    opacity: 1;
    z-index: 1000;
    min-height: 110px; /* Taller header container */
    display: block; /* Reset to block so container handles layout */
}

.header .container {
    display: flex;
    justify-content: space-between; /* Spread content out */
    align-items: center;
    max-width: 1650px; /* Restrict width to bring content inward */
    margin: 0 auto; /* Center the container */
    padding: 0 20px; /* Standard padding */
    height: 100%; /* Fill the header height */
    position: relative; /* Allow absolute positioning of centered Home link */
}

.logo {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 60px; /* More buffer for even bigger logo */
}

.logo img {
    height: 60px; /* Base height increased */
    width: auto;
    display: block;
    transform: scale(3.5); /* Even bigger visual scale */
    transform-origin: left center;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto; /* Push nav to the right */
    margin-right: 100px; /* Move nav (and button) to the left */
}

.nav-home {
    position: absolute;
    left: 50%;
    transform: translateX(-120px); /* Home positioned to the left of center */
    font-size: 1.1rem; /* Bigger text */
    color: #ccc;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-home:hover {
    color: #fff;
}

.nav-features {
    position: absolute;
    left: 50%;
    transform: translateX(-20px); /* Features positioned near center, with spacing from Home */
    font-size: 1.1rem; /* Bigger text */
    color: #ccc;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-features:hover {
    color: #fff;
}

.nav-faq {
    position: absolute;
    left: 50%;
    transform: translateX(80px); /* FAQ positioned to the right with proper spacing */
    font-size: 1.1rem; /* Bigger text */
    color: #ccc;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-faq:hover {
    color: #fff;
}

.nav a {
    font-size: 0.95rem;
    color: #ccc;
    transition: color 0.3s;
}

.nav a:hover {
    color: #fff;
}

.btn-try-now {
    color: #ffffff !important;
    padding: 14px 28px;
    border-radius: 11px;
    font-weight: 500;
    font-size: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-try-now:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-download {
    background-color: #ffffff;
    color: #000000 !important; /* Ensure text is black */
    padding: 14px 28px; /* Bigger button */
    border-radius: 11px;
    font-weight: 500;
    font-size: 1.05rem; /* Bigger text */
}

/* Hero Section */
.hero {
    padding-top: 220px; /* Increased from 150px for more header separation */
    padding-bottom: 200px; /* Increased from 80px to push scroll section down */
    background-color: #000000;
    /* Text align removed to allow flex layout control */
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.hero-image-placeholder {
    flex: 1;
    display: flex;
    justify-content: center;
    background: none;
    border: none;
}

.hero-mockup-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.badges {
    display: flex;
    justify-content: flex-start; /* Align to start */
    gap: 20px;
    margin-bottom: 20px;
    align-items: center; /* Align badge images vertically */
}

.badge-img {
    height: auto;
    width: auto;
    max-height: 60px; /* Limit max height for badges */
    display: block;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: -1px;
    
    background: linear-gradient(87.11deg, rgb(255, 255, 255) 17.87%, rgba(255, 255, 255, 0.9) 45.18%, rgba(255, 255, 255, 0.86) 57.76%) padding-box text;
    background-clip: text;
    -webkit-background-clip: text;
    color: rgba(255, 255, 255, 0.042); /* Fallback / transparent for gradient text */
  
    
    /* Stroke and Shadow */
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.42);
    text-shadow: rgb(0, 0, 0) 0px 4px 24px;
}

.subtitle {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 40px;
}

.app-buttons {
    display: flex;
    justify-content: flex-start; /* Align buttons to left */
    gap: 20px;
    margin-bottom: 60px;
}

.app-store-btn,
.google-play-btn {
    height: 60px; /* Standard height for both buttons */
    width: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Maintain aspect ratio while fitting within dimensions */
    cursor: pointer;
}

.google-play-btn {
    height: 85px !important; /* Ensure Google Play button matches App Store button height */
    width: auto;
    margin-top: -12px; /* Move up slightly to align with App Store button */
}

/* Responsive adjustments for Hero */
@media (max-width: 900px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .badges, .app-buttons {
        justify-content: center;
    }
}

.placeholder-box {
    width: 100%;
    max-width: 800px;
    height: 500px;
    background-color: #1a1a1a;
    border: 2px dashed #333;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 1.5rem;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    text-align: center;
    background-color: #000000;
}

.community-badge {
    display: inline-block;
    background: radial-gradient(75% 119% at 50% 119.8%, rgb(84, 46, 232) 0%, rgb(42, 16, 147) 100%);
    padding: 12px 24px; /* Match how-it-works-badge */
    border-radius: 29px; /* Match how-it-works-badge */
    border: 2px solid rgba(19, 7, 64, 0.22);
    margin-bottom: 20px;
    font-size: 1.1rem; /* Match how-it-works-badge */
    color: #ffffff; /* White text like how-it-works-badge */
    font-weight: 500;
}

.testimonials h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #888;
    margin-bottom: 60px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    text-align: left;
}

.review-card {
    background-color: #111;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #222;
}

.review-card p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ddd;
}

.author {
    color: #666;
    font-size: 0.9rem;
}

/* Tutorial / How it works */
.tutorial {
    padding: 100px 0;
    background-color: #000000;
}

.tutorial-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.how-it-works-badge {
    display: inline-block;
    background: radial-gradient(75% 119% at 50% 119.8%, rgb(84, 46, 232) 0%, rgb(42, 16, 147) 100%);
    padding: 12px 24px; /* Increased padding */
    border-radius: 29px; /* Requested radius */
    border: 2px solid rgba(19, 7, 64, 0.22);
    margin-bottom: 20px;
    font-size: 1.1rem; /* Increased font size */
    color: #ffffff; /* White text */
    font-weight: 500;
}

.tutorial-header h3 {
    color: #888;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.tutorial-header h2 {
    font-size: 2.75rem; /* Increased from 2.5rem */
}

.tutorial-header .subtitle {
    font-size: 1.3rem; /* Increased from 1.2rem */
}

.tutorial-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
}

.step .placeholder-box.small {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 12px;
    font-size: 1rem;
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step p {
    color: #888;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #000000;
}

.faq-title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 60px;
    color: #ffffff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.1rem;
    padding-right: 20px;
}

.faq-question:hover {
    color: #ccc;
}

.faq-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 20px;
}

.faq-answer p {
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.faq-answer li {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.faq-answer li::before {
    content: "•";
    color: #ffffff;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

/* Footer CTA Section */
.footer-cta-section {
    padding: 150px 0 100px; /* Spacing for the CTA section */
    text-align: center;
    background: #000000;
}

.footer-cta {
    margin-bottom: 0;
}

.footer-cta h2 {
    font-family: 'SuisseWorks', sans-serif;
    font-weight: bold;
    font-size: 3.75rem;
    margin-bottom: 40px;
}

.btn-escape {
    font-family: 'SuisseIntl-Medium', sans-serif;
    background-color: #542EE8; /* Hustle Purple */
    color: #000000 !important;
    padding: 14px 28px;
    border-radius: 30px;
    letter-spacing: -0.9px;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
}

/* Footer */
.footer {
    position: relative;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #222;
    background: #542EE8; /* Hustle Purple */
    overflow: hidden; /* Cut off the bottom of the large text */
    min-height: 200px; /* Ensure enough space */
}

.footer-hustle-text {
    font-family: 'SuisseWorks', sans-serif;
    font-weight: bold;
    font-size: 25rem; /* Very large text */
    color: rgb(0, 0, 0); /* Subtle white */
    position: absolute;
    bottom: -12rem; /* Position so bottom half is cut off */
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    line-height: 1;
    letter-spacing: -15px; /* Tighter letter spacing for large text */
    z-index: 0; /* Behind other content */
    pointer-events: none; /* Don't interfere with clicks */
}

.footer .container {
    position: relative;
    z-index: 1; /* Above the large text */
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}


.footer-links {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-family: 'SuisseIntl', sans-serif;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}
