/* Custom variables matching your exact app theme color architecture */
:root {
    --bg-main: #0F0E17;
    --bg-card: #15141F;
    --text-primary: #FFFFFF;
    --text-muted: #A0A0B0;
    --neon-orange: #FF9F43;
    --neon-cyan: #00D2D3;
    --neon-green: #10AC84;
    --border-glow: rgba(255, 255, 255, 0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* Navigation Bar styling */
.navbar {
    background-color: rgba(15, 14, 23, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-size: 20px;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo span {
    color: var(--neon-orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Reusable buttons system */
.btn {
    display: inline-block;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-align: center;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-orange {
    background-color: var(--neon-orange);
    color: black;
}

.btn-orange:hover {
    box-shadow: 0 0 20px rgba(255, 159, 67, 0.4);
    transform: translateY(-1px);
}

.btn-cyan {
    background-color: var(--neon-cyan);
    color: var(--bg-main);
}

.btn-cyan:hover {
    box-shadow: 0 0 20px rgba(0, 210, 211, 0.4);
    transform: translateY(-1px);
}

.btn-outline {
    border: 1px solid var(--border-glow);
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
    border-color: var(--text-primary);
}

/* Hero section layout + dynamic ambient neon background blur spots */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
}

.hero-glow-orange {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 159, 67, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.hero-glow-cyan {
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 210, 211, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--neon-orange), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-hybrid {
    display: inline-block;
    background-color: rgba(16, 172, 132, 0.06);
    border: 1px solid rgba(16, 172, 132, 0.15);
    color: var(--neon-green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Interactivity UI App Layout Shell Mockup */
.app-mockup {
    background-color: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    max-width: 380px;
    margin: 0 auto;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.mockup-dots span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-left: 4px;
}

.rating-circle {
    text-align: center;
    padding: 24px 0;
}

.rating-title {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1.5px;
    display: block;
}

.rating-num {
    font-size: 80px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1;
    display: block;
    margin: 8px 0;
    text-shadow: 0 0 30px rgba(255, 159, 67, 0.15);
}

.rating-badge {
    font-size: 12px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glow);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
}

.mockup-chart-placeholder {
    height: 100px;
    border-top: 1px dashed rgba(255, 255, 255, 0.05);
    margin-top: 24px;
    position: relative;
}

.line-orange {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-orange), transparent);
    border-radius: 2px;
}

.line-cyan {
    position: absolute;
    bottom: 45px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    border-radius: 2px;
}

/* Features Grid section blocks */
.features-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-glow);
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    padding: 32px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-card.border-orange:hover {
    border-color: rgba(255, 159, 67, 0.3);
}

.feature-card.border-cyan:hover {
    border-color: rgba(0, 210, 211, 0.3);
}

.feature-card.border-green:hover {
    border-color: rgba(16, 172, 132, 0.3);
}

.icon-box {
    font-size: 28px;
    margin-bottom: 20px;
}

.badge-hybrid,
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-hybrid svg,
.rating-badge svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5px;
}

.icon-box svg {
    width: 32px;
    height: 32px;
    stroke-width: 2px;
}

.color-orange {
    color: var(--neon-orange);
}

.color-cyan {
    color: var(--neon-cyan);
}

.color-green {
    color: var(--neon-green);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* App Download section links */
.download-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, rgba(21, 20, 31, 0.5) 100%);
    border-top: 1px solid var(--border-glow);
}

.download-btn a {
    color:
        black
}

.download-section h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.download-section p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.download-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.store-badge {
    background-color: #000000;
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    padding: 10px 24px;
    color: #FFFFFF;
    text-decoration: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    width: 170px;
    transition: border-color 0.2s ease;
}

.store-badge:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.badge-sub {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.badge-main {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

/* Merchandise Store section layouts */
.merch-section {
    padding: 60px 0 120px 0;
}

.merch-banner {
    background-color: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 28px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.badge-new {
    display: inline-block;
    background-color: rgba(0, 210, 211, 0.06);
    border: 1px solid rgba(0, 210, 211, 0.15);
    color: var(--neon-cyan);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.merch-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.merch-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 15px;
}

.merch-image-placeholder {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 70%);
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tee-mockup {
    width: 140px;
    height: 170px;
    background-color: #1A1926;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.tee-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 24px;
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Footer structure rules */
footer {
    border-top: 1px solid var(--border-glow);
    padding: 40px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.footer-socials a:hover {
    color: var(--text-primary);
}

/* Responsive break configurations for mobile screens */
@media (max-width: 868px) {

    .hero-container,
    .features-grid,
    .merch-banner {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 120px;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 36px auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .app-mockup {
        margin-top: 40px;
    }

    .footer-container {
        flex-direction: column;
        gap: 16px;
    }
}