/* CineFocus Website — Cinema Gold & Black Theme */

:root {
    --gold: #D4AF37;
    --gold-dim: rgba(212, 175, 55, 0.15);
    --bg: #000000;
    --surface: #0A0A0A;
    --card: #111111;
    --text: #FFFFFF;
    --muted: #808080;
    --radius: 16px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

.gold { color: var(--gold); }

/* Hero */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 80px 24px 0;
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-dim) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    from { opacity: 0.6; transform: translateX(-50%) scale(1); }
    to { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.hero-content { position: relative; z-index: 1; }

.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.3px;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: var(--text);
}

.subtitle {
    font-size: 17px;
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.subtitle strong {
    color: var(--text);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--text);
    color: var(--bg);
    padding: 14px 28px;
    border-radius: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

/* Hero Phones — 3-phone fan layout */

.hero-phones {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 480px;
    margin-top: 60px;
    perspective: 1200px;
}

.hero-phone {
    position: absolute;
    transition: transform 0.4s ease;
}

.hero-phone-center {
    z-index: 3;
    bottom: 0;
}

.hero-phone-left {
    z-index: 2;
    bottom: 20px;
    transform: translateX(-200px) rotate(-8deg);
}

.hero-phone-right {
    z-index: 2;
    bottom: 20px;
    transform: translateX(200px) rotate(8deg);
}

.phone-frame {
    position: relative;
    width: 240px;
    height: 500px;
    background: #1a1a1a;
    border-radius: 40px;
    border: 3px solid #333;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 14px;
    z-index: 10;
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Features */

.features {
    padding: 100px 24px;
    background: var(--surface);
}

.features-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color 0.3s, transform 0.2s;
}

.feature-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* Flow */

.flow {
    padding: 100px 24px;
}

.flow-inner {
    max-width: 800px;
    margin: 0 auto;
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.flow-step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg);
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.step-label {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.step-desc {
    font-size: 13px;
    color: var(--muted);
}

.flow-arrow {
    font-size: 20px;
    color: var(--muted);
}

/* CTA Section */

.cta-section {
    padding: 100px 24px;
    text-align: center;
    background: var(--surface);
}

.cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Footer */

footer {
    padding: 40px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--gold);
}

.footer-links { display: flex; gap: 20px; }

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* Legal & Page Content (shared across privacy, terms, co-creation, membership) */

.legal, .page {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.legal h1, .page h1 { font-size: 32px; margin-bottom: 8px; }
.legal .date, .page .date { color: var(--muted); font-size: 14px; margin-bottom: 40px; }
.legal .intro, .page .intro { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 40px; }
.legal h2, .page h2 { font-size: 20px; margin-top: 36px; margin-bottom: 12px; color: var(--gold); }
.legal h3, .page h3 { font-size: 17px; margin-top: 24px; margin-bottom: 8px; }
.legal p, .legal li, .page p, .page li { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.legal ul, .legal ol, .page ul, .page ol { padding-left: 20px; margin-bottom: 12px; }
.legal strong, .page strong { color: #ccc; }
.page .emoji { font-size: 18px; }

.highlight-box {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
}
.highlight-box p:last-child { margin-bottom: 0; }

.reward-card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    margin: 16px 0;
    transition: border-color 0.3s;
}
.reward-card:hover { border-color: rgba(212, 175, 55, 0.25); }
.reward-card h3 { margin-top: 0; color: var(--gold); }
.reward-card p:last-child { margin-bottom: 0; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.step-card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.step-card .step-num {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--gold);
    color: #000;
    font-weight: 800;
    font-size: 15px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
}

.step-card h3 { margin-top: 0; }
.step-card p { font-size: 14px; margin-bottom: 0; }

.cta-inline {
    display: inline-block;
    background: var(--gold);
    color: #000;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    margin-top: 20px;
    transition: transform 0.2s;
}
.cta-inline:hover { transform: translateY(-2px); }

/* Responsive */

@media (max-width: 768px) {
    .hero-phones {
        height: 360px;
        margin-top: 40px;
    }

    .phone-frame {
        width: 180px;
        height: 380px;
        border-radius: 32px;
    }

    .phone-notch {
        width: 60px;
        height: 18px;
        top: 8px;
    }

    .hero-phone-left {
        transform: translateX(-140px) rotate(-8deg);
        bottom: 15px;
    }

    .hero-phone-right {
        transform: translateX(140px) rotate(8deg);
        bottom: 15px;
    }

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

    .flow-steps {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .features, .flow, .cta-section {
        padding: 60px 20px;
    }

    .legal, .page {
        padding: 100px 20px 60px;
    }

    .legal h1, .page h1 {
        font-size: 26px;
    }

    .legal h2, .page h2 {
        font-size: 18px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-phones {
        height: 280px;
        margin-top: 32px;
    }

    .phone-frame {
        width: 140px;
        height: 296px;
        border-radius: 26px;
        border-width: 2px;
    }

    .phone-notch {
        width: 48px;
        height: 14px;
        top: 6px;
        border-radius: 8px;
    }

    .hero-phone-left {
        transform: translateX(-100px) rotate(-8deg);
        bottom: 10px;
    }

    .hero-phone-right {
        transform: translateX(100px) rotate(8deg);
        bottom: 10px;
    }

    .hero {
        padding: 100px 16px 60px;
        min-height: auto;
    }

    .subtitle { font-size: 15px; }

    .app-icon {
        width: 72px;
        height: 72px;
        border-radius: 18px;
        margin-bottom: 24px;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .feature-card {
        padding: 20px;
    }

    .legal, .page {
        padding: 90px 16px 40px;
    }

    .legal p, .legal li, .page p, .page li {
        font-size: 14px;
    }

    .reward-card {
        padding: 16px;
    }

    .highlight-box {
        padding: 16px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-links a {
        font-size: 12px;
    }
}
