:root {
    --bg-color: #020306;
    --accent-color: #00beff; 
    --accent-glow: rgba(0, 190, 255, 0.12);
    --text-main: #ffffff;
    --text-muted: #62627a;
    --card-bg: #06080e;
    --card-border: #111524;
    --nav-bg: rgba(2, 3, 6, 0.7);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
}

/* --- ANIMOWANE TŁO CYFROWE --- */
body::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 50% 15%, rgba(0, 190, 255, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 80% 60%, rgba(0, 90, 255, 0.04) 0%, transparent 35%),
        linear-gradient(rgba(255,255,255,0.003) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.003) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
    z-index: -1;
}

/* --- NAVBAR --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 190, 255, 0.05);
    transition: all 0.3s ease;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.logo-area img {
    height: 35px;
    filter: drop-shadow(0 0 10px var(--accent-color));
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-text span {
    color: var(--text-muted);
    font-weight: 500;
}

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

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

.nav-links a {
    text-decoration: none;
    color: #8989a2;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-glow);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Przełącznik języków */
.lang-selector {
    display: flex;
    gap: 6px;
    background: rgba(255,255,255,0.03);
    padding: 4px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.05);
}

.lang-btn {
    background: transparent;
    border: none;
    color: #55556d;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.2s;
}

.lang-btn.active, .lang-btn:hover {
    color: #fff;
    background: rgba(0, 190, 255, 0.15);
}

.btn-panel {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 190, 255, 0.05);
}

.btn-panel:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 25px var(--accent-color);
    transform: translateY(-1px);
}

/* --- WSPÓLNE DESIGNY SEKCJI --- */
section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 20px 60px;
}

.tagline {
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    text-shadow: 0 0 10px rgba(0, 190, 255, 0.2);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -1.5px;
}

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

/* --- INTERAKTYWNE EMERSYJNE ANIMACJE (SCROLL REVEAL) --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- HERO --- */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding-top: 100px;
}

.hero-logo {
    width: 140px;
    height: 140px;
    margin-bottom: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 25px var(--accent-color));
    animation: floating 4s ease-in-out infinite alternate;
}

@keyframes floating {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-15px) rotate(2deg); filter: drop-shadow(0 0 40px var(--accent-color)); }
}

.status-badge {
    border: 1px solid rgba(0, 190, 255, 0.25);
    background: rgba(0, 190, 255, 0.03);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 35px;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -2.5px;
    margin-bottom: 25px;
    background: linear-gradient(to bottom, #ffffff 60%, #a2a2c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: #8989a2;
    max-width: 650px;
    line-height: 1.7;
    font-size: 1.15rem;
    margin-bottom: 45px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-main, .btn-sub {
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-main {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 10px 25px rgba(255,255,255,0.05);
}

.btn-main:hover {
    background: #e1e3ed;
    transform: translateY(-2px);
}

.btn-sub {
    background: rgba(255,255,255,0.02);
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.08);
}

.btn-sub:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* --- CAPABILITIES (OVERVIEW) --- */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 45px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 190, 255, 0.02), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-card:hover {
    border-color: rgba(0, 190, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.card-number {
    color: #44445c;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    display: block;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: #797996;
    font-size: 0.95rem;
    line-height: 1.65;
    font-weight: 400;
}

/* --- SHOWCASE (MEDIA) --- */
.video-container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- LICENSING (ACCESS) --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 45px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.best-value {
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 190, 255, 0.04);
    background: linear-gradient(180deg, #070a14 0%, #06080e 100%);
}

.best-value-badge {
    position: absolute;
    top: -12px;
    left: 40px;
    background: var(--accent-color);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    color: #55556d;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 35px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    letter-spacing: -1px;
}

.plan-price span {
    font-size: 0.95rem;
    color: #55556d;
    font-weight: 500;
}

.divider {
    height: 1px;
    background: rgba(255,255,255,0.04);
    margin-bottom: 35px;
}

.feature-list {
    list-style: none;
    margin-bottom: 45px;
    flex-grow: 1;
}

.feature-list li {
    color: #8989a2;
    font-size: 0.95rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list li::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 2px;
    background: var(--accent-color);
    box-shadow: 0 0 8px var(--accent-color);
}

.btn-purchase {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    background: rgba(255,255,255,0.02);
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.05);
}

.btn-purchase:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.15);
}

.price-card.best-value .btn-purchase {
    background: var(--accent-color);
    color: #000;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 190, 255, 0.2);
}

.price-card.best-value .btn-purchase:hover {
    box-shadow: 0 12px 30px rgba(0, 190, 255, 0.4);
    transform: scale(1.02);
}

/* --- EXCLUSIVE FOOTER / HOTBAR --- */
footer {
    background: #03050a;
    border-top: 1px solid rgba(255,255,255,0.03);
    padding: 80px 6% 40px;
    margin-top: 100px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: #55556d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 20px;
    max-width: 320px;
}

.footer-title {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #55556d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #44445c;
    font-size: 0.85rem;
}

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

.footer-bottom-links a {
    color: #44445c;
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsywność */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; gap: 30px; }
    .capabilities-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .nav-center { display: none; }
    .hero h1 { font-size: 3.5rem; }
}