/* ==========================================================================
   PRELANDER STYLES - Opera GX VPN
   ========================================================================== */

/* VARIABLES */
:root {
    --bg: #0c0b10;
    --bg-alt: #16151c;
    --accent: #fa1e4e;
    --accent-hover: #ff3a64;
    --text: #fff;
    --text-soft: #b8b8c0;
    --border: rgba(255, 255, 255, 0.08);
    --radius: 8px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(12, 11, 16, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.625rem 1rem;
}
.header__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.header__logo {
    height: 32px;
    display: flex;
    align-items: center;
}
.header__logo img,
.header__logo svg {
    height: 32px;
    width: auto;
    min-width: 100px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
}
.btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}
.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.btn--lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}
.btn--lg svg {
    width: 18px;
    height: 18px;
}
.btn--ghost {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}
.btn--ghost:hover {
    background: var(--accent);
    color: #fff;
}

/* HERO */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem 2.5rem;
}
.hero__inner {
    max-width: 1000px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.hero__content {
    text-align: left;
}
.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero__image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(250, 30, 78, 0.25);
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-soft);
    margin-bottom: 1.25rem;
}
.hero__badge-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.hero__title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.hero__title span {
    color: var(--accent);
}
.hero__subtitle {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: var(--text-soft);
    margin-bottom: 1.5rem;
}
.hero__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.75rem;
    text-align: left;
}
.hero__item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9rem;
}
.hero__item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--accent);
    margin-top: 2px;
}
.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.hero__trust {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8rem;
    color: var(--text-soft);
}
.hero__trust svg {
    width: 14px;
    height: 14px;
    color: #22c55e;
}

/* FOOTER */
.footer {
    padding: 0.875rem 1rem;
    text-align: center;
    border-top: 1px solid var(--border);
}
.footer__text {
    font-size: 0.65rem;
    color: var(--text-soft);
    opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__content {
        order: 2;
    }
    .hero__image {
        order: 1;
        margin-bottom: 1.5rem;
    }
    .hero__image img {
        max-width: 70%;
    }
    .hero__list {
        text-align: left;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero__cta {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem 0.875rem;
    }
    .header__logo {
        height: 26px;
    }
    .header__logo img,
    .header__logo svg {
        height: 26px;
        min-width: 80px;
    }
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    .btn--lg {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    .hero {
        padding: 1.5rem 1rem 2rem;
    }
    .hero__image img {
        max-width: 60%;
    }
    .hero__list {
        gap: 0.5rem;
    }
    .hero__item {
        font-size: 0.85rem;
    }
    .hero__cta {
        flex-direction: column;
        align-items: center;
    }
    .hero__cta .btn {
        width: 100%;
        max-width: 280px;
    }
}
