:root {
    --bg-color: #050505;
    --text-main: #f0f0f0;
    --text-muted: #888888;
    --accent-gold: #d4af37;
    --accent-gold-dark: #aa8c2c;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
    --glow-color: rgba(212, 175, 55, 0.15);
}

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

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

.glow-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--glow-color) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

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

.text-gradient {
    background: linear-gradient(135deg, #f0f0f0 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Navbar */
.navbar {
    padding: 2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    /* gap: 0.5rem; */
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 1.5rem;
    width: auto;
    object-fit: contain;
    margin-right: 0.5rem;
}

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

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Buttons */
.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-family: var(--font-main);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
}

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

.btn-primary:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--glow-color);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-disabled {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    cursor: not-allowed;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* App Mockup Animation */
.hero-visual {
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.app-mockup {
    position: absolute;
    top: 50%;
    right: 0;
    width: 120%;
    /* make it slightly wider than the container half */
    transform: translateY(-50%) rotateY(-10deg) rotateX(5deg);
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 400px;
    animation: float-mockup 6s ease-in-out infinite;
}

.mockup-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--card-border);
    gap: 1rem;
    background: rgba(0, 0, 0, 0.2);
}

.circles {
    display: flex;
    gap: 6px;
}

.circles i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--card-border);
}

.circles i:nth-child(1) {
    background: #ff5f56;
}

.circles i:nth-child(2) {
    background: #ffbd2e;
}

.circles i:nth-child(3) {
    background: #27c93f;
}

.search-bar {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.mockup-body {
    display: flex;
    flex-grow: 1;
}

.mockup-sidebar {
    width: 140px;
    border-right: 1px solid var(--card-border);
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-item.active {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    border-left: 2px solid var(--accent-gold);
}

.badge-count {
    background: var(--accent-gold);
    color: #000;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
}

.mockup-list {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.email-item {
    padding: 1rem;
    border-bottom: 1px solid var(--card-border);
    display: grid;
    grid-template-columns: 1fr auto;
    row-gap: 0.3rem;
    opacity: 0.7;
}

.email-item.unread {
    opacity: 1;
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid var(--accent-gold);
}

.sender {
    font-size: 0.9rem;
    font-weight: 600;
}

.time {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: right;
}

.subject {
    font-size: 0.85rem;
    color: var(--text-main);
    grid-column: 1 / -1;
}

.email-item:not(.unread) .subject {
    color: var(--text-muted);
}


/* Sections */
section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card.premium {
    border-color: var(--accent-gold);
    transform: scale(1.05);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.popular-badge {
    position: absolute;
    top: 30px;
    right: -55px;
    background: var(--accent-gold);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 3rem;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.tier-name {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.tier-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.tier-price .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.tier-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.tier-features li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tier-features li::before {
    content: "✓";
    color: var(--accent-gold);
}

/* CTA */
.cta-section .container {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.access-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: var(--accent-gold);
}

.w-full {
    width: 100%;
}

/* Footer */
.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--card-border);
    margin-top: 5rem;
}

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

.footer-legal {
    text-align: right;
    font-size: 0.85rem;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes float-mockup {
    0% {
        transform: translateY(-50%) rotateY(-10deg) rotateX(5deg);
    }

    50% {
        transform: translateY(-48%) rotateY(-12deg) rotateX(7deg);
    }

    100% {
        transform: translateY(-50%) rotateY(-10deg) rotateX(5deg);
    }
}


/* Scroll Revel */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .feature-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.premium {
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal {
        text-align: center;
    }
}