@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-base: #030712;
    --bg-card: #0a0a0a;
    --accent: #0099ff; /* Electric Blue - Lighter than royal, less green than turquoise */
    --accent-hover: #007acc;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --border-color: #27272a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.text-accent {
    color: var(--accent);
}

/* Navigation */
.navbar {
    width: 100%;
    padding: 24px 0;
    position: relative;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.logo-img {
    height: 32px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-actions {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-actions .login-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-primary {
    background: var(--accent);
    color: #000000;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: border-color 0.2s;
}

.btn-outline:hover {
    border-color: var(--text-secondary);
}

/* Background Image */
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
        linear-gradient(to bottom, rgba(3, 7, 18, 0.7), rgba(3, 7, 18, 0.95)), /* Dark gradient overlay */
        url('assets/gta_bg.jpg') no-repeat center center;
    background-size: cover;
    z-index: -3;
    pointer-events: none;
    filter: blur(2px) contrast(1.1); /* Slight blur and contrast for moody feel */
}

/* Background Grid (T3 Style) */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

/* Background Glow */
.bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: min(1000px, 100vw);
    height: 800px;
    background: radial-gradient(circle, rgba(26, 91, 255, 0.15) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 140px 24px 60px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Floating Widgets */
.widget {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px 32px;
    border-radius: 100px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.widget i {
    color: var(--accent);
}

.float-1 { top: 10%; left: -15%; animation-delay: 0s; }
.float-2 { top: 25%; right: -20%; animation-delay: -1.5s; }
.float-3 { bottom: 10%; left: -10%; animation-delay: -3s; }
.float-4 { bottom: 20%; right: -15%; animation-delay: -4.5s; }

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.35rem;
    color: var(--text-secondary);
    max-width: 850px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 80px;
}

/* Showcase Section */
.showcase {
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

.vlx-showcase {
    display: flex;
    flex-direction: column;
}

.vlx-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
}

.vlx-img-container {
    position: relative;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-color);
    min-height: 400px;
}

.vlx-img-container:last-child {
    border-right: none;
}

.vlx-img-tower {
    display: flex;
    flex-direction: column;
}

.vlx-tower-item {
    position: relative;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.vlx-tower-item:first-child {
    border-bottom: 1px solid var(--border-color);
}

.vlx-img-container img,
.vlx-tower-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.vlx-label {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    z-index: 2;
}

/* Product header */
.vlx-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 32px;
}

.vlx-title-group h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.vlx-title-group p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 16px;
}

.vlx-tag {
    display: inline-block;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.btn-delivery {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(0,153,255,0.3);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-delivery span {
    color: var(--accent);
}

.btn-delivery:hover {
    background: rgba(0,153,255,0.1);
    border-color: var(--accent);
}


.vlx-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 8px;
}

.feat-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.feat-chip i {
    font-size: 0.82rem;
    opacity: 0.7;
}

.feat-chip:hover {
    border-color: rgba(0,153,255,0.3);
    color: var(--text-primary);
    background: rgba(0,153,255,0.05);
}

.feat-chip-accent {
    background: linear-gradient(135deg, rgba(0,153,255,0.12), rgba(0,153,255,0.05));
    border-color: rgba(0,153,255,0.25);
    color: var(--text-primary);
}

.feat-chip-accent i {
    color: var(--accent);
    opacity: 1;
}

/* Pricing Grid */
.pricing-container {
    max-width: 1280px;
    margin: 120px auto;
    padding: 0 32px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 20px;
    align-items: center;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s;
}

.pricing-card:not(.premium):hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.pricing-card.premium {
    position: relative;
    padding: 64px 52px;
    background: linear-gradient(160deg, rgba(26,91,255,0.08) 0%, var(--bg-card) 60%);
    border: 1.5px solid var(--accent);
    box-shadow: 0 0 60px rgba(26, 91, 255, 0.2), 0 0 120px rgba(26, 91, 255, 0.08);
    transform: translateY(-8px);
}

.pricing-card.premium:hover {
    transform: translateY(-14px);
    box-shadow: 0 0 80px rgba(26, 91, 255, 0.28), 0 0 140px rgba(26, 91, 255, 0.1);
}

.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 5px 20px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.pricing-card.premium .plan-name {
    color: var(--accent);
}

.plan-price {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    line-height: 1;
}

.plan-price span {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0;
}

.plan-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 36px;
    min-height: 44px;
    line-height: 1.6;
}

.plan-divider {
    height: 1px;
    background: var(--border-color);
    margin-bottom: 32px;
}

.pricing-card.premium .plan-divider {
    background: rgba(26, 91, 255, 0.25);
}

.plan-features {
    list-style: none;
    margin-bottom: 44px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.plan-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    background: var(--border-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 36px 24px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-copy {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

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

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 16px;
    transition: color 0.2s;
}

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

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .hero h1 { font-size: 3.2rem; }
    .hero p { font-size: 1.1rem; }
    .hero { padding: 120px 20px 40px; }

    .widget { display: none; }

    .vlx-images { grid-template-columns: 1fr; }
    .vlx-img-container { border-right: none; border-bottom: 1px solid var(--border-color); min-height: 300px; }
    .vlx-img-container:last-child { border-bottom: none; }

    .vlx-header { flex-direction: column; gap: 18px; }
    .vlx-title-group h2 { font-size: 1.7rem; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .pricing-card.premium { transform: none; order: -1; }
    .pricing-card.premium:hover { transform: translateY(-4px); }
    .pricing-container { margin: 80px auto; }

    .footer-container { flex-direction: column; gap: 40px; }
    .footer-links { gap: 40px; flex-wrap: wrap; }
}

@media (max-width: 640px) {
    .nav-container { flex-wrap: wrap; gap: 12px; padding: 0 16px; }
    .nav-links { order: 3; width: 100%; justify-content: center; gap: 20px; }
    .nav-actions { gap: 12px; }

    .hero h1 { font-size: 2.3rem; letter-spacing: -0.03em; }
    .hero p { font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }

    .showcase { padding: 0 16px; }
    .vlx-img-container { min-height: 220px; padding: 16px; }
    .vlx-tower-item { padding: 16px; }

    .feat-chip { font-size: 0.8rem; padding: 8px 14px; }

    .pricing-card { padding: 36px 24px; }
    .pricing-card.premium { padding: 40px 26px; }
    .plan-price { font-size: 3rem; }

    .footer-links { flex-direction: column; gap: 28px; }
}
