:root {
    --bg-dark: #09090b;
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --primary: #C800FF;
    --accent: #00F5FF;
    --card-bg: rgba(24, 24, 27, 0.6);
    --border: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.5;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #09090b;
}

::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 5px;
    border: 2px solid #09090b;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    z-index: -1;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
}

.bg-glow-1 {
    top: -150px;
    left: -150px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    animation: bloom 8s infinite alternate;
}

.bg-glow-2 {
    bottom: -150px;
    right: -150px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    animation: bloom 12s infinite alternate-reverse;
}

@keyframes bloom {
    0% {
        transform: scale(1);
        opacity: 0.15;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.25;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(9, 9, 11, 0.8);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.02em;
}

.brand i {
    color: var(--accent);
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.5));
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-items a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.nav-items a:hover,
.nav-items a.active {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.btn-nav {
    background: linear-gradient(90deg, rgba(200, 0, 255, 0.1), rgba(0, 245, 255, 0.1));
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.btn-nav:hover {
    background: linear-gradient(90deg, rgba(200, 0, 255, 0.2), rgba(0, 245, 255, 0.2));
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(200, 0, 255, 0.2);
}

.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    background:
        linear-gradient(180deg, rgba(9, 9, 11, 0.6) 0%, rgba(9, 9, 11, 0.3) 40%, #09090b 100%),
        url('obrazyXD/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--bg-dark);
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    margin-top: 60px;
}

.dot-pulse {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 2s infinite;
}

h1 {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    position: relative;
    line-height: 1;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    background: linear-gradient(180deg, #ffffff 20%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.hero-desc {
    font-size: 1.15rem;
    color: #e4e4e7;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-main {
    background: linear-gradient(135deg, var(--primary), #a800d6);
    color: white;
    border: none;
    padding: 18px 45px;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px -5px rgba(200, 0, 255, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px rgba(200, 0, 255, 0.6);
}

.btn-sec {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    backdrop-filter: blur(10px);
}

.btn-sec:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.mini-card {
    background: rgba(20, 20, 24, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 28px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 220px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.clickable {
    cursor: pointer;
}

.mini-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s;
}

.mini-card:hover {
    background: rgba(30, 30, 35, 0.9);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
}

.mini-card:hover::after {
    opacity: 1;
}

.mini-card i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(200, 0, 255, 0.15), rgba(0, 245, 255, 0.15));
    padding: 12px;
    border-radius: 12px;
    color: white;
}

.card-1 i {
    color: var(--accent);
}

.card-2 i {
    color: var(--primary);
}

.card-3 i {
    color: #fff;
    text-shadow: 0 0 10px var(--accent);
}

.mini-card div strong {
    display: block;
    font-size: 1.2rem;
    color: white;
    font-weight: 700;
}

.mini-card div span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.card-1 {
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    animation: float 6s ease-in-out infinite 1s;
}

.card-3 {
    animation: float 6s ease-in-out infinite 2s;
}

.features-section {
    padding: 140px 0;
    position: relative;
    background-color: var(--bg-dark);
    min-height: 100vh;
}

.features-section::before {
    display: none;
}

.section-header {
    text-align: center;
    margin-bottom: 90px;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 900;
    background: linear-gradient(180deg, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.info-card {
    background: rgba(25, 25, 25, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(200, 0, 255, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(30, 30, 35, 0.8);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    transition: transform 0.4s;
}

.info-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.icon-box.blue {
    background: rgba(0, 245, 255, 0.1);
    color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
}

.icon-box.purple {
    background: rgba(200, 0, 255, 0.1);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(200, 0, 255, 0.1);
}

.icon-box.orange {
    background: linear-gradient(135deg, rgba(200, 0, 255, 0.1), rgba(0, 245, 255, 0.1));
    color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.owners-section {
    padding: 120px 0;
    position: relative;
    background: transparent;
    overflow: hidden;
    z-index: 1;
}

.owners-section {
    padding: 120px 0;
    position: relative;
    background: transparent;
    overflow: hidden;
    isolation: isolate;
}

.owners-section .container {
    position: relative;
    z-index: 2;
}

.owners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('obrazyXD/background2.png') center/cover no-repeat;
    filter: blur(2px);
    z-index: 0;
    transform: scale(1.02);
    opacity: 0.9;
}

.owners-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            var(--bg-dark) 0%,
            rgba(9, 9, 11, 0.6) 10%,
            rgba(9, 9, 11, 0) 25%,
            rgba(9, 9, 11, 0) 75%,
            var(--bg-dark) 100%);
    z-index: 1;
    pointer-events: none;
}

.owners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 60px;
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.owner-card {
    position: relative;
    border-radius: 35px;
    padding: 0 30px 40px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    margin-top: 60px;
    display: flex;
    flex-direction: column;
}

.owner-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 25, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 35px;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.owner-card:hover .card-bg {
    background: rgba(25, 25, 30, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.glow-purple .card-bg {
    box-shadow: inset 0 0 0 1px rgba(200, 0, 255, 0.1), 0 20px 50px rgba(0, 0, 0, 0.5);
}

.glow-purple:hover .card-bg {
    border-color: rgba(200, 0, 255, 0.4);
    box-shadow:
        inset 0 0 30px rgba(200, 0, 255, 0.1),
        0 30px 60px -10px rgba(200, 0, 255, 0.2);
}

.glow-blue .card-bg {
    box-shadow: inset 0 0 0 1px rgba(0, 245, 255, 0.1), 0 20px 50px rgba(0, 0, 0, 0.5);
}

.glow-blue:hover .card-bg {
    border-color: rgba(0, 245, 255, 0.4);
    box-shadow:
        inset 0 0 30px rgba(0, 245, 255, 0.1),
        0 30px 60px -10px rgba(0, 245, 255, 0.2);
}

.render-box {
    position: relative;
    z-index: 2;
    height: 280px;
    margin-top: -60px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease;
}

.owner-card:hover .render-box {
    transform: translateY(-15px) scale(1.05);
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.7));
}

.owner-render {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    animation: float 5s ease-in-out infinite;
}

.owner-info {
    position: relative;
    z-index: 3;
    text-align: center;
}

.role-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    border: 1px solid transparent;
}

.badge-purple {
    background: rgba(200, 0, 255, 0.15);
    color: #e066ff;
    border-color: rgba(200, 0, 255, 0.3);
    box-shadow: 0 0 15px rgba(200, 0, 255, 0.2);
}

.badge-blue {
    background: rgba(0, 245, 255, 0.15);
    color: #4dfaff;
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

.owner-info h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: -0.02em;
}

.owner-info p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.owner-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glow-purple .social-btn:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 20px rgba(200, 0, 255, 0.4);
    transform: translateY(-3px);
    border-color: transparent;
}

.glow-blue .social-btn:hover {
    background: var(--accent);
    color: black;
    box-shadow: 0 5px 20px rgba(0, 245, 255, 0.4);
    transform: translateY(-3px);
    border-color: transparent;
}

footer {
    border-top: 1px solid var(--border);
    padding: 60px 0;
    margin-top: 50px;
    background: linear-gradient(to top, rgba(200, 0, 255, 0.05), transparent);
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
}

.footer-logo {
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.socials {
    display: flex;
    gap: 24px;
}

.socials a {
    color: var(--text-muted);
    font-size: 1.4rem;
    transition: all 0.3s;
}

.socials a:hover {
    color: var(--accent);
    transform: translateY(-3px);
    text-shadow: 0 0 15px var(--accent);
}

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(200, 0, 255, 0.2);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast i {
    color: var(--accent);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: #121215;
    border: 1px solid var(--border);
    width: 90%;
    max-width: 500px;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.1);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: white;
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-title i {
    color: var(--primary);
}

.modal-body {
    color: var(--text-muted);
    line-height: 1.6;
}

.modal-body ul {
    list-style: none;
    margin-top: 15px;
}

.modal-body li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-body li i {
    color: var(--accent);
    font-size: 0.8rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 245, 255, 0.7);
    }

    70% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 10px rgba(0, 245, 255, 0);
    }

    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 245, 255, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
    filter: blur(10px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.cards-grid .info-card:nth-child(1) {
    transition-delay: 0.1s;
}

.cards-grid .info-card:nth-child(2) {
    transition-delay: 0.3s;
}

.cards-grid .info-card:nth-child(3) {
    transition-delay: 0.5s;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3.2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-main,
    .btn-sec {
        width: 100%;
        justify-content: center;
    }

    .nav-items {
        display: none;
    }

    .mini-card {
        width: 100%;
    }

    .bg-glow {
        width: 100%;
        height: 50%;
    }
}

.mt-big {
    margin-top: 100px;
}

.section-title-small {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-small h3 {
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.section-title-small .line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 15px var(--accent);
}

.helpers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.helper-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.helper-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.helper-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 255, 128, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 128, 0.2);
    transition: transform 0.3s;
}

.helper-card:hover .helper-img {
    transform: scale(1.1) rotate(5deg);
    border-color: #00ff80;
}

.helper-info h4 {
    font-size: 1.1rem;
    color: white;
    font-weight: 700;
    margin-bottom: 5px;
}

.badge-green {
    background: rgba(0, 255, 128, 0.15);
    color: #00ff80;
    border-color: rgba(0, 255, 128, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 128, 0.1);
    font-size: 0.7rem;
    padding: 4px 12px;
}

@media (max-width: 500px) {
    .owners-grid {
        grid-template-columns: 1fr;
    }

    .owner-card {
        margin-top: 50px;
    }

    .render-box {
        height: 280px;
        margin-top: -60px;
    }

    .owner-info h3 {
        font-size: 1.8rem;
    }
}