:root {
    --bg: #050505;
    --bg-card: #0F0F0F;
    --acc: #CCFF00;
    --acc-glow: rgba(204, 255, 0, 0.4);
    --white: #FFFFFF;
    --gray: #8A8A8A;
    --border: #222222;
    --font-main: 'Space Grotesk', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

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

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

.highlight {
    color: var(--acc);
    text-shadow: 0 0 15px var(--acc-glow);
}

h1, h2, h3 {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -0.02em;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    background: linear-gradient(to bottom, rgba(5,5,5,0.9), transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.mascot-logo {
    height: 32px;
    margin: 0 4px;
}

.logo-dot {
    color: var(--acc);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--acc);
}

.nav-cta {
    background: var(--acc);
    color: var(--bg);
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 700;
}

.nav-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent, var(--bg) 90%);
}

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

.hero-title {
    font-size: clamp(48px, 10vw, 96px);
    line-height: 0.9;
    margin-bottom: 24px;
}

.hero-subtext {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 48px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: var(--acc);
    color: var(--bg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--acc-glow);
}

.btn-icon {
    font-size: 24px;
}

.btn-text small {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: -4px;
}

.btn-text span {
    font-size: 18px;
}

/* App Preview */
.app-preview {
    padding: 120px 0;
}

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

.section-title {
    font-size: clamp(32px, 5vw, 64px);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
}

.mockup-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.mockup-grid.three-col {
    /* Override for 1-column single list to keep size appropriate */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.mockup-card {
    background: transparent;
    padding: 20px;
    border-radius: 40px;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    max-width: 380px;
    width: 100%;
}

.mockup-card:hover {
    border-color: var(--acc);
    transform: translateY(-10px);
}

.mockup-frame {
    margin-bottom: 30px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    border: 4px solid #111;
    background: #000;
}

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

.mockup-desc h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.mockup-desc p {
    color: var(--gray);
}

/* Features */
.features {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

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

.feature-card {
    background: var(--bg-card);
    padding: 48px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    background: #111;
    border-color: var(--acc);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--acc);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--gray);
    font-size: 16px;
}

/* Loyalty / Scene Member */
.loyalty {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
    text-align: center;
}

.loyalty-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.loyalty-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.loyalty-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg), transparent, var(--bg));
}

.bolt-icon {
    font-size: 80px;
    color: var(--acc);
    text-shadow: 0 0 30px var(--acc);
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

.loyalty-title {
    font-size: clamp(32px, 8vw, 80px);
    margin-bottom: 24px;
}

.loyalty-text {
    font-size: 18px;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 48px;
    opacity: 0.8;
}

.btn.glass {
    display: inline-flex;
    background: rgba(204, 255, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--acc);
    color: var(--acc);
}

.btn.glass:hover {
    background: var(--acc);
    color: var(--bg);
}

/* Footer */
.footer {
    padding: 100px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-info p {
    color: var(--gray);
    margin-top: 16px;
}

.footer h4 {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--acc);
}

.social-icons {
    display: flex;
    gap: 24px;
    font-size: 14px;
    font-weight: 700;
}

.footer-contact p {
    color: var(--gray);
    margin-bottom: 8px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gray);
}

.boot-text {
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: clamp(36px, 12vw, 64px);
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }

    .logo {
        font-size: 20px;
    }

    .mascot-logo {
        height: 26px;
    }
}
