/* ===========================
   AEZAKMI VPN — Landing Styles
   =========================== */

/* --- Variables --- */
:root {
    --yellow: #FFD600;
    --yellow-dim: #C9A800;
    --yellow-glow: rgba(255, 214, 0, 0.15);
    --black: #000000;
    --dark: #0a0a0a;
    --dark2: #111111;
    --dark3: #1a1a1a;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.5);
    --text-dim: rgba(255, 255, 255, 0.25);
    --border: rgba(255, 214, 0, 0.12);
    --radius: 20px;
}

/* --- Reset --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
    cursor: none;
}

/* --- Custom Cursor --- */
.cursor {
    width: 12px;
    height: 12px;
    background: var(--yellow);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, width 0.2s, height 0.2s;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 214, 0, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.08s linear;
}

body:hover .cursor {
    opacity: 1;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.nav-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--yellow);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--yellow);
    color: var(--black);
    border: none;
    border-radius: 100px;
    padding: 12px 28px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: none;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 214, 0, 0.4);
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 60px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 214, 0, 0.18) 0%, transparent 70%);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    animation: orbPulse 6s ease-in-out infinite;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 214, 0, 0.08) 0%, transparent 70%);
    bottom: 100px;
    right: 10%;
    animation: orbPulse2 8s ease-in-out infinite reverse;
}

@keyframes orbPulse {
    0%, 100% { transform: scale(1) translateX(-50%); }
    50% { transform: scale(1.15) translateX(-50%); }
}

@keyframes orbPulse2 {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 214, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 214, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 214, 0, 0.1);
    border: 1px solid rgba(255, 214, 0, 0.25);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--yellow);
    margin-bottom: 40px;
    animation: fadeSlideUp 0.8s ease both;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--yellow);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 10vw, 130px);
    line-height: 0.9;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: fadeSlideUp 0.8s ease 0.1s both;
}

.hero-title .accent {
    color: var(--yellow);
}

.hero-title .outline {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
    color: transparent;
}

.hero-sub {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 50px;
    line-height: 1.7;
    animation: fadeSlideUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease 0.3s both;
}

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

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--black);
    border: none;
    border-radius: 100px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s;
    cursor: none;
}

.btn-primary:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 50px rgba(255, 214, 0, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    cursor: none;
}

.btn-secondary:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    background: rgba(255, 214, 0, 0.05);
}

.btn-cta-big {
    font-size: 18px;
    padding: 22px 56px;
}

/* --- Stats --- */
.stats {
    padding: 60px;
    display: flex;
    justify-content: center;
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--dark2);
}

.stat-item {
    flex: 1;
    max-width: 200px;
    text-align: center;
    padding: 20px 40px;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Marquee --- */
.marquee-section {
    padding: 30px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--dark2);
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--text-dim);
    letter-spacing: 3px;
    flex-shrink: 0;
}

.marquee-item .dot {
    color: var(--yellow);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- Sections (shared) --- */
section {
    padding: 120px 60px;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title .accent {
    color: var(--yellow);
}

.section-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.8;
}

/* --- Features --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 80px;
}

.feature-card {
    background: var(--dark2);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.feature-card:hover {
    background: var(--dark3);
}

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

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

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 214, 0, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 214, 0, 0.15);
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    color: var(--yellow);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.feature-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.feature-num {
    position: absolute;
    bottom: 28px;
    right: 36px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: rgba(255, 214, 0, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* --- How It Works --- */
.how-bg {
    background: var(--dark2);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 80px;
}

.step {
    padding: 40px;
    background: var(--dark);
    position: relative;
}

.step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--yellow);
    background: rgba(255, 214, 0, 0.1);
    border: 1px solid rgba(255, 214, 0, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
    color: var(--yellow);
    font-size: 20px;
    z-index: 1;
}

.step:last-child .step-arrow {
    display: none;
}

/* --- Trust --- */
.trust-row {
    display: flex;
    align-items: stretch;
    gap: 2px;
    margin-top: 80px;
}

.trust-card {
    flex: 1;
    padding: 44px;
    background: var(--dark2);
    text-align: center;
    transition: background 0.3s;
}

.trust-card:hover {
    background: var(--dark3);
}

.trust-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.trust-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.trust-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- Pricing --- */
.pricing-section {
    background: var(--dark2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    gap: 2px;
    margin: 80px auto 0;
}

.pricing-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px 36px;
    position: relative;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.pricing-card.popular {
    border-color: var(--yellow);
    background: linear-gradient(160deg, rgba(255, 214, 0, 0.08) 0%, var(--dark2) 60%);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--black);
    font-size: 11px;
    font-weight: 800;
    padding: 5px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pricing-card.popular .plan-name {
    color: var(--yellow);
}

.plan-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    line-height: 1;
    margin-bottom: 6px;
}

.plan-price span {
    font-size: 28px;
}

.plan-period {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: rgba(255, 214, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD600' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.plan-btn {
    display: block;
    text-align: center;
    padding: 18px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    cursor: none;
}

.plan-btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: var(--text);
}

.plan-btn-outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.plan-btn-fill {
    background: var(--yellow);
    color: var(--black);
}

.plan-btn-fill:hover {
    box-shadow: 0 8px 30px rgba(255, 214, 0, 0.4);
    transform: translateY(-2px);
}

/* --- CTA Section --- */
.cta-section {
    background: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 140px 60px;
}

.cta-bg-text {
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 280px;
    color: rgba(255, 214, 0, 0.025);
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 10px;
    pointer-events: none;
    user-select: none;
}

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

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 7vw, 96px);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cta-title .accent {
    color: var(--yellow);
}

.cta-sub {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 480px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
}

/* --- Footer --- */
footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-dim);
}

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

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

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

/* --- Document Pages --- */
.doc-page {
    cursor: auto;
}

.doc-page .cursor,
.doc-page .cursor-ring {
    display: none;
}

.doc-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 140px 40px 80px;
}

.doc-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    color: var(--yellow);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.doc-content h2 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--text);
}

.doc-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 10px;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 1024px) {
    nav {
        padding: 18px 30px;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 80px 30px;
    }

    .hero {
        padding: 120px 30px 60px;
    }

    .stats {
        padding: 40px 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        border-right: none;
        padding: 15px 20px;
        width: 50%;
    }

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

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

    .step-arrow {
        display: none;
    }

    .trust-row {
        flex-direction: column;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    footer {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    body {
        cursor: auto;
    }

    .cursor,
    .cursor-ring {
        display: none;
    }

    nav {
        padding: 16px 20px;
    }

    .nav-logo-text {
        font-size: 18px;
    }

    .nav-cta {
        padding: 10px 18px;
        font-size: 13px;
    }

    .hero {
        padding: 100px 20px 50px;
        text-align: center;
    }

    .hero-title {
        font-size: 64px;
        letter-spacing: 0;
    }

    .hero-sub {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 15px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 7px 16px;
    }

    .stats {
        padding: 30px 20px;
        gap: 0;
    }

    .stat-item {
        width: 50%;
        padding: 16px 10px;
        text-align: center;
    }

    .stat-num {
        font-size: 36px;
    }

    .marquee-item {
        font-size: 18px;
    }

    section {
        padding: 60px 20px;
        text-align: center;
    }

    .section-label {
        text-align: center;
    }

    .section-title {
        font-size: 42px;
    }

    .section-sub {
        margin: 0 auto;
        font-size: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2px;
        margin-top: 40px;
    }

    .feature-card {
        padding: 36px 28px;
    }

    .feature-icon {
        margin: 0 auto 24px;
    }

    .feature-num {
        display: none;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 2px;
        margin-top: 40px;
    }

    .step {
        padding: 30px 24px;
        text-align: center;
    }

    .step-num {
        margin: 0 auto 20px;
    }

    .trust-row {
        flex-direction: column;
        gap: 2px;
        margin-top: 40px;
    }

    .trust-card {
        padding: 36px 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .pricing-card {
        padding: 44px 28px;
    }

    .popular-badge {
        font-size: 10px;
        padding: 5px 14px;
    }

    .plan-price {
        font-size: 56px;
    }

    .cta-section {
        padding: 80px 20px;
    }

    .cta-title {
        font-size: 52px;
        letter-spacing: 1px;
    }

    .cta-sub {
        font-size: 15px;
    }

    .cta-bg-text {
        font-size: 140px;
    }

    .btn-cta-big {
        font-size: 15px;
        padding: 18px 32px;
        width: 100%;
        justify-content: center;
    }

    footer {
        padding: 36px 20px;
        text-align: center;
    }

    .footer-copy {
        font-size: 12px;
    }
}
