/* CSS Variables & Theme Setup */
:root {
    --bg-base: #080c14;
    --bg-surface: #0e1626;
    --bg-surface-high: #15223b;
    --primary: #00bfff;
    --primary-glow: rgba(0, 191, 255, 0.15);
    --secondary: #2563eb;
    --accent: #10b981;
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    --outline: rgba(148, 163, 184, 0.12);
    --outline-hover: rgba(0, 191, 255, 0.3);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --gutter: 2rem;
    --border-radius: 1.5rem;
}

/* Global Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: var(--primary-glow);
    border: 1px solid rgba(0, 191, 255, 0.3);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

/* Custom Glass Panel effect */
.glass-panel {
    background: rgba(14, 22, 38, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--outline);
    border-radius: var(--border-radius);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel:hover {
    border-color: var(--outline-hover);
    box-shadow: 0 10px 30px -10px var(--primary-glow);
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 0.85rem;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.4);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--outline);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-muted);
}

.btn-nav {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    background: var(--primary-glow);
    border: 1px solid rgba(0, 191, 255, 0.3);
    color: var(--primary);
}

.btn-nav:hover {
    background: var(--primary);
    color: var(--bg-base);
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-lg {
    padding: 0.95rem 2rem;
    font-size: 1.05rem;
    border-radius: 1rem;
}

/* Header Section */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 12, 20, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--outline);
}

.nav-container {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(0, 191, 255, 0.12);
}

.shape-2 {
    bottom: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(37, 99, 235, 0.15);
}

.hero-container {
    display: grid;
    grid-template-cols: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.partnership-inline {
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid var(--outline);
    padding-top: 1.5rem;
}

.partner-name {
    color: var(--text-primary);
    font-weight: 600;
}

/* Hero Visual Console Mockup */
.hero-visual {
    position: relative;
}

.hero-preview-img {
    width: 100%;
    height: auto;
    border-radius: 1.25rem;
    border: 1px solid var(--outline);
    box-shadow: 0 20px 50px rgba(0, 191, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-preview-img:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0, 191, 255, 0.25);
}

/* Stats Section */
.stats-section {
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-cols: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    padding: 1.75rem;
    text-align: center;
    border-radius: 1.25rem;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-cols: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--outline);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    transition: all 0.25s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary-glow);
    border-color: var(--primary);
    transform: scale(1.05);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* How It Works Section */
.how-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(14, 22, 38, 0.3) 50%, transparent 100%);
}

.steps-container {
    display: grid;
    grid-template-cols: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.step-item {
    position: relative;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 191, 255, 0.08);
    line-height: 1;
    margin-bottom: -1rem;
    transition: color 0.3s ease;
}

.step-item:hover .step-num {
    color: rgba(0, 191, 255, 0.18);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.step-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Partnership Section */
.partnership-section {
    padding: 100px 0;
}

.partnership-wrapper {
    padding: 4rem;
    text-align: center;
    border-radius: var(--border-radius);
    max-width: 900px;
    margin: 0 auto;
}

.partnership-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.partnership-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
}

.partnership-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto 2.5rem;
}

.partnership-brands {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

  .partner-logo {
    height: 40px;
    width: auto;
    border-radius: 0.5rem;
    object-fit: contain;
    border: 1px solid var(--outline);
    background: rgba(255, 255, 255, 0.03);
    padding: 2px;
    transition: all 0.3s ease;
}

.brand-item:hover .partner-logo {
    transform: scale(1.05);
    border-color: var(--primary);
}

.brand-divider {
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* Call to Action Section */
.cta-section {
    padding: 100px 0;
}

.cta-container {
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(14, 22, 38, 0.6) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Footer styling */
.footer {
    border-top: 1px solid var(--outline);
    padding: 3rem 0;
    background: rgba(3, 7, 18, 0.4);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-dark);
    max-width: 500px;
    text-align: right;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-cols: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-content {
        margin: 0 auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .features-grid {
        grid-template-cols: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-cols: repeat(2, 1fr);
    }
    .footer-copy {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
    .features-grid {
        grid-template-cols: 1fr;
    }
    .steps-container {
        grid-template-cols: 1fr;
        gap: 2rem;
    }
    .cta-container {
        padding: 3rem 2rem;
        text-align: center;
        justify-content: center;
    }
    .nav-menu {
        display: none; /* simple hidden nav for mobile */
    }
    .partnership-brands {
        gap: 1.5rem;
    }
}
