@font-face {
    font-family: 'TT Firs Neue';
    src: url('assets/TT_Firs_Neue_DemiBold.woff');
}

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

:root {
    --bg-primary: #1C1C1C;
    --bg-secondary: #1A1A1D;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --accent: #F7751A;
    --accent-hover: #FF8655;
    --success: #10B981;
    --border: #2A2A2D;
    --card-bg: #111113;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    /*border-bottom: 1px solid var(--border);*/
    transition: all 0.3s ease;
}

nav.scrolled {

}

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

.bg {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    pointer-events: none;
    z-index: 0;
}

.bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    backdrop-filter: blur(400px);
    z-index: 1;
}

.bg-circle {
    position: absolute;
    top: 40%;
    left: 40%;
    background-color: #F3792560;
    width: 40%;
    height: 40%;
    border-radius: 50%;
    transform: translate(-100%, -50%);
    z-index: 0;
}

.bg-circle-blue {
    left: 100%;
    top: 100%;
    background-color: #5225F360;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.logo-img {
    height: 36px;
    width: auto;
}

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

.nav-buttons {
    display: flex;
    gap: 24px;
    align-items: center;
}

@media (max-width: 380px) {
    .nav-buttons {
        gap: 8px;
    }

    .nav-link {
        display: none;
    }
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.btn {
    padding: 8px 10px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 13px;
    display: inline-block;
}

.btn-primary {
    background: #F97316;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--card-bg);
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at center top, rgba(255, 107, 53, 0.05), transparent 50%);
    isolation: isolate;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    pointer-events: none;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

h1 {
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 700;
    font-family: 'TT Firs Neue', sans-serif;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--text-primary);
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-family: 'TT Firs Neue', sans-serif;
}

h3 {
    font-family: 'TT Firs Neue', sans-serif;
}

.highlight-text {
    color: var(--accent) !important;
}

.subheadline {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-container {
    margin-bottom: 20px;
}

.cta-subtext {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 0;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.problem-card {
    background: #111113;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.problem-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 107, 53, 0.2);
    background: #131315;
}

.problem-card::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 52px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.problem-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-primary);
    padding-left: 20px;
    line-height: 1.4;
}

.problem-description {
    color: #888;
    line-height: 1.8;
    font-size: 15px;
}

/* Product Preview Section */
.preview-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.preview-header {
    text-align: center;
    margin-bottom: 80px;
}

.preview-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    margin-top: 16px;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.preview-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.preview-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.preview-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.preview-text h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
    color: var(--text-primary);
}

.preview-text p {
    color: #888;
    font-size: 15px;
    line-height: 1.8;
}

.preview-image-container {
    position: relative;
    background: rgba(26, 26, 29, 0.3);
    border-radius: 16px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.preview-image-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 53, 0.2);
}

.preview-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Alternating layout */
.preview-item:nth-child(1) {
    grid-column: 1;
}

.preview-item:nth-child(2) {
    grid-column: 2;
}

.preview-item:nth-child(3) {
    grid-column: 1;
}

.preview-item:nth-child(4) {
    grid-column: 2;
}

.preview-item:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}

.preview-item:nth-child(6) {
    grid-column: 1;
    grid-row: 2;
}

.preview-item:nth-child(7) {
    grid-column: 2;
    grid-row: 3;
}

.preview-item:nth-child(8) {
    grid-column: 1;
    grid-row: 3;
}

/* How It Works Section */
.how-it-works {
    position: relative;
    padding: 100px 0;
    z-index: 2;
}


.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 60px;
}

.feature-box {
    background: #111113;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 48px;
}

.feature-box h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 16px 0;
    padding-left: 36px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 16px;
    width: 20px;
    height: 20px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.limitation-list {
    list-style: none;
}

.limitation-list li {
    padding: 16px 0;
    padding-left: 36px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

.limitation-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    top: 16px;
    width: 20px;
    height: 20px;
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}


/* Who It's For Section */
.who-its-for {
    position: relative;
    padding: 100px 0;
    z-index: 2;
}

.users-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.user-card {
    background: #111113;
    padding: 48px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.user-card:hover {
    transform: translateY(-2px);
    background: #131315;
    border-color: rgba(255, 107, 53, 0.2);
}

.user-card h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.user-card p {
    color: #888;
    line-height: 1.8;
    font-size: 15px;
}

/* Final CTA Section */
.final-cta {
    position: relative;
    padding: 100px 0;
    text-align: center;
    z-index: 2;
}

.final-cta h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 24px;
}

.final-cta .subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.final-cta .btn {
    margin-bottom: 20px;
}

.final-cta .cta-subtext {
    margin-top: 0;
}

/* Footer */
footer {
    position: relative;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    z-index: 1;
}

.footer-content {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

.footer-divider {
    display: inline-block;
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.2);
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-link:hover {
    color: var(--accent);
}

.discord-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-link:hover .discord-icon {
    opacity: 1;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    h1 {
        font-size: clamp(36px, 6vw, 64px);
    }

    .section-title {
        font-size: clamp(32px, 4.5vw, 48px);
    }
}

@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problem-card {
        padding: 28px;
    }

    .problem-card::before {
        left: 28px;
        top: 38px;
    }

    .problem-title {
        font-size: 20px;
    }

    .users-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .user-card {
        padding: 28px;
    }

    .user-card h3 {
        font-size: 22px;
    }

    .preview-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .preview-item {
        grid-column: 1 !important;
    }

    /* Reorder items for mobile: text first, then image */
    .preview-item:nth-child(1) { grid-row: 2; } /* Image 1 → position 2 */
    .preview-item:nth-child(2) { grid-row: 1; } /* Text 1 → position 1 */
    .preview-item:nth-child(3) { grid-row: 3; } /* Text 2 → position 3 */
    .preview-item:nth-child(4) { grid-row: 4; } /* Image 2 → position 4 */
    .preview-item:nth-child(5) { grid-row: 6; } /* Image 3 → position 6 */
    .preview-item:nth-child(6) { grid-row: 5; } /* Text 3 → position 5 */
    .preview-item:nth-child(7) { grid-row: 7; } /* Text 4 → position 7 */
    .preview-item:nth-child(8) { grid-row: 8; } /* Image 4 → position 8 */

    .preview-text {
        padding: 16px 0;
    }

    .preview-text h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .preview-text p {
        font-size: 14px;
    }

    .preview-image-container {
        padding: 12px;
    }

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

    .feature-box {
        padding: 28px;
    }

    .feature-box h3 {
        font-size: 22px;
        margin-bottom: 24px;
    }


    .nav-buttons {
        gap: 24px;
    }

    .btn {
        padding: 9px 16px;
        font-size: 14px;
    }

    .nav-link {
        font-size: 14px;
    }

    .logo-img {
        height: 36px;
    }

    .hero {
        padding: 160px 0 100px;
    }

    .subheadline {
        font-size: clamp(16px, 2.5vw, 20px);
        margin-bottom: 36px;
        padding: 0 10px;
    }

    .problem-section,
    .preview-section,
    .how-it-works,
    .who-its-for {
        padding: 80px 0;
    }

    .final-cta {
        padding: 80px 0;
    }

    .section-title {
        margin-bottom: 48px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 140px 0 60px;
    }

    h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 24px;
    }

    h1 br {
        display: none;
    }

    .section-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 40px;
    }

    .container {
        padding: 0 20px;
    }

    .problem-card {
        padding: 24px;
    }

    .problem-card::before {
        left: 24px;
        top: 34px;
        width: 6px;
        height: 6px;
    }

    .problem-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .problem-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .user-card {
        padding: 24px;
    }

    .user-card h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .user-card p {
        font-size: 14px;
    }

    .feature-box {
        padding: 24px;
    }

    .feature-list li,
    .limitation-list li {
        font-size: 14px;
        padding: 12px 0;
        padding-left: 32px;
    }

    .preview-text h3 {
        font-size: 22px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .final-cta h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .final-cta .subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    footer {
        padding: 40px 0;
    }

    .footer-content {
        font-size: 12px;
    }

    .footer-divider {
        display: none;
    }

    .footer-link {
        display: block;
        margin-top: 12px;
    }
}