@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --gold: #FCF6BA;
    --gold-dark: #BFA14A;
    --gold-mid: #D4AF37;
    --gold-light: #FFF8DC;
    --bg: #050505;
    --bg-card: rgba(15, 15, 15, 0.8);
    --bg-glass: rgba(252, 246, 186, 0.03);
    --border: rgba(252, 246, 186, 0.12);
    --border-hover: rgba(252, 246, 186, 0.35);
    --text: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.55);
    --glow: rgba(191, 161, 74, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ═══ PARTICLES CANVAS ═══ */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══ NAVBAR ═══ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(5, 5, 5, 0.7);
    border-bottom: 1px solid rgba(252, 246, 186, 0.06);
    transition: all 0.3s;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.92);
    border-bottom-color: var(--border);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

/* ═══ HERO ═══ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 50% 30%, rgba(191, 161, 74, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(191, 161, 74, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 60%, rgba(191, 161, 74, 0.03) 0%, transparent 40%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-2%, -1%) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.logo-container {
    width: 130px;
    height: 130px;
    margin: 0 auto 2.5rem;
    position: relative;
}

.logo-ring {
    position: absolute;
    inset: -8px;
    border-radius: 36px;
    border: 1.5px solid transparent;
    background: linear-gradient(135deg, var(--gold), transparent 50%, var(--gold-dark)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: ringRotate 6s linear infinite;
}

@keyframes ringRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.logo-badge {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(145deg, #1a1714, #0a0908);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 80px rgba(191, 161, 74, 0.15), inset 0 1px 0 rgba(252, 246, 186, 0.1);
}

.logo-badge svg {
    width: 56px;
    height: 56px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 30%, var(--gold-dark) 70%, var(--gold-light) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 4s linear infinite;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

@keyframes textShimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero .tagline {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* ═══ STATS BAR ═══ */
.stats-bar {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 1.5rem 2.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 60px;
    backdrop-filter: blur(10px);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(252, 246, 186, 0.3);
}

.stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ═══ BUTTONS ═══ */
.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 60px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
    background-size: 200% auto;
    color: #0A0A0A;
    box-shadow: 0 4px 25px rgba(191, 161, 74, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(191, 161, 74, 0.5);
    background-position: right center;
}

.btn-glass {
    background: rgba(252, 246, 186, 0.05);
    color: var(--gold);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(252, 246, 186, 0.1);
    border-color: var(--gold-dark);
    transform: translateY(-3px);
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ═══ SECTIONS ═══ */
section {
    padding: 7rem 2rem;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--bg-glass);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.section-badge svg {
    width: 14px;
    height: 14px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

.divider {
    height: 1px;
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    opacity: 0.4;
}

/* ═══ FEATURES GRID ═══ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top center, rgba(252, 246, 186, 0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(191, 161, 74, 0.08);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(191, 161, 74, 0.15), rgba(191, 161, 74, 0.05));
    border: 1px solid rgba(252, 246, 186, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.feature-card:hover .feature-icon-wrap {
    background: linear-gradient(135deg, rgba(191, 161, 74, 0.25), rgba(191, 161, 74, 0.1));
    box-shadow: 0 0 25px rgba(191, 161, 74, 0.15);
}

.feature-icon-wrap svg {
    width: 26px;
    height: 26px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
    position: relative;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.65;
    position: relative;
}

/* ═══ SCREENS SHOWCASE ═══ */
.screens-track {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.phone {
    width: 260px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone:hover {
    transform: translateY(-12px) scale(1.03);
}

.phone-frame {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 32px;
    border: 2px solid var(--border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(191, 161, 74, 0.05);
    overflow: hidden;
    position: relative;
    height: 520px;
}

.phone:hover .phone-frame {
    border-color: var(--border-hover);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(191, 161, 74, 0.1);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 24px;
    background: #0a0a0a;
    border-radius: 0 0 14px 14px;
    z-index: 3;
}

.phone-screen {
    padding: 36px 16px 16px;
    height: 100%;
    overflow: hidden;
}

.phone-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--gold);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.phone-title svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.phone-sub {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.phone-label {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-align: center;
}

.mini-card {
    background: rgba(252, 246, 186, 0.04);
    border: 1px solid rgba(252, 246, 186, 0.08);
    border-radius: 10px;
    padding: 8px 10px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: 0 0 8px rgba(252, 246, 186, 0.3);
    flex-shrink: 0;
}

.mini-text {
    font-size: 0.6rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.mini-text strong {
    color: var(--gold-light);
    font-size: 0.65rem;
}

.chip {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    border: 1px solid rgba(252, 246, 186, 0.12);
    font-size: 0.5rem;
    color: var(--gold);
    margin: 2px;
    background: rgba(252, 246, 186, 0.04);
}

.search-bar {
    background: rgba(252, 246, 186, 0.04);
    border: 1px solid rgba(252, 246, 186, 0.1);
    border-radius: 10px;
    padding: 8px 10px;
    margin-bottom: 10px;
    font-size: 0.55rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-bar svg {
    width: 12px;
    height: 12px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.fam-label {
    font-size: 0.5rem;
    color: var(--gold);
    letter-spacing: 1.5px;
    margin: 8px 0 4px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.fam-label svg {
    width: 10px;
    height: 10px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

/* ═══ TECH ═══ */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tech-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
}

.tech-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.tech-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(191, 161, 74, 0.12), rgba(191, 161, 74, 0.04));
    border: 1px solid rgba(252, 246, 186, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.tech-card h4 {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.tech-card p {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ═══ PRICING ═══ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--gold-dark);
    box-shadow: 0 0 60px rgba(191, 161, 74, 0.12), 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #0A0A0A;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(191, 161, 74, 0.3);
}

.pricing-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text);
    margin: 1rem 0;
}

.price span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

/* ═══ AMAZON AFFILIATE ═══ */
.affiliate-box {
    background: linear-gradient(135deg, rgba(191, 161, 74, 0.06), rgba(191, 161, 74, 0.02));
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.affiliate-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(191, 161, 74, 0.05) 0%, transparent 70%);
}

.affiliate-box h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    position: relative;
}

.affiliate-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.affiliate-box strong {
    color: var(--gold);
}

/* ═══ FOOTER ═══ */
footer {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(252, 246, 186, 0.06);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

footer p {
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.8;
}

footer a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 0.7;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1.2rem;
    }

    .nav-links {
        display: none;
    }

    .features-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
    }

    .stats-bar {
        gap: 1.5rem;
        padding: 1rem 1.5rem;
        border-radius: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    section {
        padding: 5rem 1.5rem;
    }

    .screens-track {
        gap: 1.5rem;
    }

    .phone {
        width: 220px;
    }

    .phone-frame {
        height: 440px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}