:root {
    --bg-color: #0d0d0d;
    --accent-color: #00f2ff;
    --text-primary: #f2f2f2;
    --text-secondary: rgba(242, 242, 242, 0.6);
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --navy-blue: #0A1D37; /* Luksusowy granat z logo */
    --sea-blue: #00f2ff; /* Autorski niebieski morski */
}

.brand-logotype {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    gap: 1.5rem;
}

.aura-svg {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.h2-part { 
    color: var(--sea-blue); 
    font-weight: 300;
    font-size: 4.5rem;
    line-height: 1;
    margin-left: 0.8rem;
}

.brand-underline {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--sea-blue), transparent);
    border-radius: 2px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

.mobile-only {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.2rem 0;
    background: transparent;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo img {
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.2));
    transition: var(--transition);
}

.logo img:hover {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: var(--accent-color);
}

.btn-contact {
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--accent-color);
    color: var(--accent-color) !important;
    border-radius: 4px;
}

.btn-contact:hover {
    background: var(--accent-color);
    color: var(--bg-color) !important;
}

/* Menu Toggle Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2000;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 160px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(0, 242, 255, 0.08) 0%, rgba(13, 13, 13, 1) 70%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    max-width: 600px;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--card-bg);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
}

h1 span {
    font-weight: 700;
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    height: 50px;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.product-actions > * {
    flex: 1;
}

/* Technology Section */
.tech-section {
    padding: 4rem 0;
    position: relative;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.tech-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,242,255,0.1);
}

.tech-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.tech-text h2 span {
    font-weight: 700;
    color: var(--accent-color);
}

.tech-specs {
    list-style: none;
    margin-top: 3rem;
}

.tech-specs li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    text-align: left;
}

.tech-specs li strong {
    color: var(--accent-color);
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #0d0d0d, #1a1a1a, #0d0d0d);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 3rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    background: rgba(0, 242, 255, 0.02);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    margin-bottom: 2rem;
}

.product-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-info ul {
    list-style: none;
    margin: 2rem 0;
}

.product-info ul li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-info ul li::before {
    content: '•';
    color: var(--accent-color);
}

/* Applications Section */
.apps-section {
    padding: 4rem 0;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.app-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.app-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.app-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    padding: 5rem 0;
    border-top: 1px solid var(--card-border);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Bubble Animation */
#bubble-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 999;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -50px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9) 0%, rgba(0, 242, 255, 0.2) 60%, rgba(0, 242, 255, 0) 100%);
    border-radius: 50%;
    border: 1px solid rgba(0, 242, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.1);
    animation: rise linear forwards;
}

@keyframes rise {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-110vh) translateX(20px); opacity: 0; }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding-top: 30px;
    }

    .hero .container {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-top: 0.2rem;
        line-height: 1.1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .brand-logotype {
        margin-bottom: 0.2rem;
        gap: 0.8rem;
    }

    .aura-svg {
        height: 38px;
    }

    .h2-part {
        font-size: 2.2rem;
        margin-left: 0.5rem;
    }

    .brand-underline {
        height: 3px;
        width: 50%;
    }

    .hero-content p {
        font-size: 1rem;
        text-align: center;
        margin: 1rem auto 0;
        max-width: 100%;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-content .badge {
        margin-left: auto;
        margin-right: auto;
        display: table;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-top: 2rem;
    }

    .hero-btns .btn-primary, .hero-btns .btn-secondary {
        width: 100%;
        text-align: center;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header nav {
        padding: 1rem 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    header ul {
        display: none;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        right: 1.5rem;
    }

    nav ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        padding: 7rem 1.5rem 120px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1500;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex !important;
    }

    nav ul.active {
        transform: translateY(0);
    }

    nav ul li {
        width: 100%;
        text-align: center;
        border: none !important;
        padding: 0 !important;
    }

    nav ul li a {
        font-size: 1.5rem;
        color: var(--white);
    }

    .logo img {
        height: 80px !important;
    }

    .mobile-only {
        display: block;
    }

    .apps-grid, .product-grid, .tech-grid, .edge-grid, .knowledge-grid, .capabilities-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .product-actions {
        flex-direction: column;
        gap: 10px;
    }

    .product-actions .btn-secondary {
        font-size: 0.75rem;
        padding: 0.8rem 1rem;
    }

    .btn-concierge {
        padding: 15px 25px !important;
        font-size: 1rem !important;
        transform: none !important;
        width: 100%;
    }

    .floating-badge {
        bottom: 15px !important;
        right: 15px !important;
        padding: 10px 15px !important;
    }

    .floating-badge div:first-child {
        font-size: 1rem !important;
    }

    .floating-badge div:last-child {
        font-size: 0.6rem !important;
    }

    .b2b-reversed {
        display: flex !important;
        flex-direction: column;
        text-align: center;
    }

    .b2b-reversed .tech-image {
        order: 2;
    }

    .b2b-reversed .tech-text {
        order: 1;
    }

    .b2b-reversed .tech-text h2 {
        font-size: 2rem;
    }

    .b2b-reversed .tech-specs li {
        text-align: center;
        justify-content: center;
    }

    .tech-text {
        text-align: left;
    }

    .tech-specs li {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .modal-content {
        padding: 6rem 1.5rem 3rem !important;
        width: 100% !important;
        min-height: 100vh !important;
        border-radius: 0 !important;
        transform: none !important;
        margin: 0 !important;
    }

    .modal-overlay {
        align-items: flex-start !important;
        overflow-y: auto !important;
    }
}

/* Modal Implementation */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    overflow-y: auto;
    padding: 40px 0;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    max-width: 700px;
    width: 90%;
    position: relative;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: fixed;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--accent-color);
    cursor: pointer;
    z-index: 3000;
    line-height: 1;
    background: #000;
    border: 1px solid var(--accent-color);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal-text h2 {
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.modal-text p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.modal-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.modal-text ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.modal-text ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.source {
    font-style: italic;
    color: var(--accent-color);
    font-size: 0.85rem;
}

/* Ecosystem Buttons */
.btn-more {
    margin-top: 1.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 30px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.8rem;
    transition: var(--transition);
}

.app-card:hover .btn-more {
    background: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

/* Grid Sections Responsive */
@media (max-width: 992px) {
    .trust-grid, .faq-grid, .segmentation-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .trust-grid, .faq-grid, .segmentation-grid {
        grid-template-columns: 1fr !important;
    }
    .process-timeline {
        flex-direction: column !important;
        gap: 50px !important;
    }
    .timeline-line {
        display: none !important;
    }
}

/* Team / Founders Section */
.team-section {
    padding: 120px 0;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1000;
}

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

.team-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    padding: 40px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    background: rgba(0, 242, 255, 0.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.team-image-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.team-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image-container img {
    transform: scale(1.03);
}

.team-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 5px;
}

.team-info .founder-title {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.team-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.team-quote {
    font-style: italic;
    border-left: 3px solid var(--accent-color);
    padding-left: 15px;
    margin-top: auto;
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .team-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .team-image-container {
        height: 320px;
    }
}

/* Mobile Shop Button in Header */
.mobile-shop-btn {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-shop-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 1.1rem;
        background: linear-gradient(135deg, var(--sea-blue), #00d2ff);
        color: var(--white) !important;
        font-weight: 700;
        font-family: 'Outfit', sans-serif;
        text-transform: uppercase;
        border-radius: 6px;
        font-size: 0.8rem;
        box-shadow: 0 4px 15px rgba(0, 242, 255, 0.25);
        position: absolute;
        right: 4.5rem; /* Left of the hamburger menu (at 1.5rem) */
        text-shadow: none;
        z-index: 1800;
        letter-spacing: 0.05em;
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-decoration: none;
    }
    .mobile-shop-btn:hover {
        opacity: 0.9;
        box-shadow: 0 4px 20px rgba(0, 242, 255, 0.4);
    }
}

/* Floating Shop Button */
.floating-shop-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--sea-blue), #00d2ff);
    color: var(--white) !important;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(0, 242, 255, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.05em;
    text-decoration: none;
}

.floating-shop-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 242, 255, 0.5);
    background: linear-gradient(135deg, #00d2ff, var(--sea-blue));
}
@media (max-width: 768px) {
    .floating-shop-btn {
        bottom: 25px;
        left: 25px;
        right: auto;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* Social Media Icons - Navigation & Footer */
.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon:hover {
    background: rgba(0, 242, 255, 0.08);
    border-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
    transform: translateY(-3px);
}

.social-icon:hover svg {
    transform: scale(1.1);
}

/* Nav Social */
.nav-social-group {
    display: inline-flex;
    gap: 1.2rem;
    align-items: center;
}

.nav-social-link {
    color: var(--text-secondary);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-social-link:hover {
    color: var(--accent-color);
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .nav-social-group {
        margin-top: 1rem;
        gap: 2rem;
    }
    .nav-social-link svg {
        width: 24px;
        height: 24px;
    }
}

