:root {
    --color-bg: #141414;
    --color-surface: #1a1a17;
    --color-accent: #c9a84c;
    --color-accent-2: #e8c86a;
    --color-accent-glow: rgba(201, 168, 76, 0.25);
    --color-accent-2-glow: rgba(232, 200, 106, 0.2);
    --color-text: #ede8de;
    --color-text-muted: #7a7568;
    --color-border: #252520;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
}

/* Gold horizontal rule divider */
.neon-rule {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent-2), transparent);
    opacity: 0.4;
    margin: 0;
}

/* Marquee identifier line above logo */
.hero-marquee {
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.5em;
    color: var(--color-accent-2);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.75;
    animation: fadeInDown 0.6s ease-out;
}

/* Thin gold accent rule below logo */
.hero-rule {
    width: 100%;
    max-width: 480px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent-2), transparent);
    margin: 0 auto 2rem;
    opacity: 0.35;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Grain overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.045;
    pointer-events: none;
    z-index: 9999;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 1.5rem;
    position: relative;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 90%, rgba(201, 168, 76, 0.03) 0%, transparent 40%),
                var(--color-bg);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--color-bg), transparent);
    pointer-events: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.logo-icon img {
    max-width: 360px;
    height: auto;
    width: 100%;

}

@media (min-width: 640px) {
    .logo-icon img {
        max-width: 480px;
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.75rem);
    letter-spacing: 0.01em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 span {
    display: block;
    color: var(--color-accent);
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 540px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--color-accent), #8a6a1e);
    color: #0a0806;
    padding: 1rem 2rem;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Poster Preview */
.poster-preview {
    margin-top: 4rem;
    position: relative;
    animation: fadeInUp 1s ease-out 0.8s both;
    width: 100%;
    max-width: 900px;
}

.poster-frame {
    background: var(--color-surface);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 6px;
    padding: 0.5rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(201, 168, 76, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.poster-frame img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.image-caption {
    text-align: center;
    padding: 1rem;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--color-accent-2);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 168, 76, 0.06);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 76, 0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-accent);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Coming soon badge */
.coming-soon-badge {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    border-radius: 3px;
    padding: 0.3rem 0.75rem;
}

/* Feature tag badge */
.feature-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--color-accent-2);
    vertical-align: middle;
    margin-left: 0.5rem;
    position: relative;
    top: -2px;
}

/* Showcase Section */
.showcase {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--color-bg), rgba(201, 168, 76, 0.02), var(--color-bg));
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.showcase-image {
    position: relative;
}

.showcase-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(201, 168, 76, 0.08), 0 0 0 1px rgba(201, 168, 76, 0.15);
    margin: 0 auto;
    display: block;
}

.showcase-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.showcase-content p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.showcase-content ul {
    list-style: none;
    margin-top: 1.5rem;
}

.showcase-content li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--color-text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.showcase-content li svg {
    width: 20px;
    height: 20px;
    fill: var(--color-accent);
    flex-shrink: 0;
}

/* Reversed showcase grid (text left, image right at desktop) */
@media (min-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .showcase-image img {
        max-width: 100%;
    }

    .showcase-grid--reverse .showcase-image {
        order: 2;
    }

    .showcase-grid--reverse .showcase-content {
        order: 1;
    }
}

/* Why PosterBox Section */
.why-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.015), transparent);
}

.comparison-box {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 2.5rem 2rem;
    margin-top: 3rem;
}

.comparison-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list .icon-x {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    fill: #ff4757;
}

.comparison-list .icon-check {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    fill: var(--color-accent-2);
}

.comparison-list span {
    color: var(--color-text-muted);
}

.comparison-list strong {
    color: var(--color-text);
    font-weight: 600;
}

.highlight-box {
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 6px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-box svg {
    width: 32px;
    height: 32px;
    fill: var(--color-accent);
    flex-shrink: 0;
}

.highlight-box p {
    font-size: 1rem;
}

.highlight-box strong {
    color: var(--color-accent-2);
}

/* Pricing Section (currently hidden) */
.pricing-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.02), transparent);
}

.pricing-card {
    background: var(--color-surface);
    border: 2px solid var(--color-accent);
    border-radius: 8px;
    padding: 3rem 2rem;
    max-width: 480px;
    margin: 3rem auto 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(201, 168, 76, 0.1);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.trial-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent), #8a6a1e);
    color: #0a0806;
    padding: 0.5rem 1.25rem;
    border-radius: 3px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.price {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    color: var(--color-text);
}

.period {
    font-size: 1.25rem;
    color: var(--color-text-muted);
}

.pricing-description {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--color-text);
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    fill: var(--color-accent-2);
    flex-shrink: 0;
}

.pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--color-accent), #8a6a1e);
    color: #0a0806;
    padding: 1.125rem 2.5rem;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px var(--color-accent-glow);
    width: 100%;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--color-accent-glow);
}

.pricing-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* How to Install Section (currently hidden) */
.install-section {
    padding: 6rem 0;
}

.steps-container {
    margin-top: 3rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 56px;
    width: 2px;
    height: calc(100% - 16px);
    background: linear-gradient(to bottom, var(--color-accent), transparent);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #0a0806;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.step-content p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.search-demo {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 320px;
}

.search-demo svg {
    width: 20px;
    height: 20px;
    fill: var(--color-text-muted);
}

.search-demo span {
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 600;
}

/* Remote Button Visual */
.remote-visual {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem;
    max-width: 280px;
    margin-top: 1rem;
}

.remote-body {
    background: linear-gradient(180deg, #2a2a3a 0%, #1a1a2a 100%);
    border-radius: 40px;
    padding: 2rem 1.5rem;
    position: relative;
}

.remote-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.nav-ring {
    width: 100px;
    height: 100px;
    border: 3px solid #3a3a4a;
    border-radius: 50%;
    position: relative;
    background: #1a1a2a;
}

.nav-ring::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: #3a3a4a;
    border-radius: 50%;
}

.button-row {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.remote-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #3a3a4a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remote-btn svg {
    width: 16px;
    height: 16px;
    fill: #6a6a7a;
}

.menu-btn {
    background: var(--color-accent);
    box-shadow: 0 0 20px var(--color-accent-glow);
    animation: pulse 2s infinite;
}

.menu-btn svg {
    fill: #0a0806;
}

.btn-label {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.menu-label {
    color: var(--color-accent);
    font-weight: 600;
}

/* Get PosterBox Section */
.get-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.015), transparent);
}

.store-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .store-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.store-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.store-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 168, 76, 0.06);
}

.store-badge {
    display: block;
    max-width: 180px;
    height: auto;
    margin: 0 auto 1.25rem;
}

.store-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.store-search-demo {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.25rem;
    justify-content: center;
}

.store-search-demo svg {
    width: 18px;
    height: 18px;
    fill: var(--color-text-muted);
    flex-shrink: 0;
}

.store-search-demo span {
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 600;
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
}

.footer-logo .logo-icon svg {
    width: 18px;
    height: 18px;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
}

footer p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.footer-community {
    margin-bottom: 0.75rem;
}

.facebook-link {
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.facebook-link:hover {
    color: var(--color-accent-2);
    border-bottom-color: var(--color-accent);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px var(--color-accent-glow); }
    50%       { box-shadow: 0 0 30px var(--color-accent-glow), 0 0 40px var(--color-accent-glow); }
}

/* Responsive — Tablet */
@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .poster-frame {
        padding: 2rem;
    }
}

/* Responsive — Desktop */
@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero {
        padding: 6rem 2rem;
    }

    .comparison-box {
        padding: 3rem;
    }

    .step {
        gap: 2rem;
    }
}
