:root {
    --color-navy: #0a192f;
    --color-navy-light: #112240;
    --color-pink: #ffc0cb;
    --color-pink-dark: #ff9eb5;
    --color-white: #e6f1ff;
    --color-slate: #8892b0;
    --color-text-main: #ccd6f6;

    --font-main: 'Outfit', sans-serif;

    --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-navy);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 192, 203, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-pink);
    letter-spacing: 1px;
}

.logo span {
    color: var(--color-white);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-size: 0.9rem;
    color: var(--color-white);
}

.nav-list a:hover {
    color: var(--color-pink);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 20px;
}

.hero-text .highlight {
    color: var(--color-pink);
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: transparent;
    border: 1px solid var(--color-pink);
    color: var(--color-pink);
}

.btn-primary:hover {
    background-color: rgba(255, 192, 203, 0.1);
}

.btn-secondary {
    background-color: var(--color-pink);
    color: var(--color-navy);
    border: 1px solid var(--color-pink);
}

.btn-secondary:hover {
    background-color: var(--color-pink-dark);
    border-color: var(--color-pink-dark);
}

/* Abstract Shapes */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Products Section */
.products {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--color-pink);
}

/* Featured Product */
.featured-product {
    background-color: var(--color-navy-light);
    border-radius: 10px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 192, 203, 0.05);
    transition: var(--transition);
}

.featured-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -15px rgba(2, 12, 27, 0.7);
    border-color: var(--color-pink);
}

.badge {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--color-pink);
    border: 1px solid var(--color-pink);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.fp-content h3 {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 15px;
}

.feature-list {
    margin: 20px 0 30px;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--color-slate);
}

.feature-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--color-pink);
}

/* Flagship Animation */
.lms-animation {
    width: 100%;
    height: 100%;
    min-height: 300px;
    position: relative;
    background: radial-gradient(circle at center, #1d2d50 0%, #112240 70%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--color-pink);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--color-pink);
    z-index: 10;
    animation: pulse-center 3s ease-in-out infinite;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 192, 203, 0.2);
    border-radius: 50%;
}

.o1 {
    width: 140px;
    height: 140px;
    animation: spin 10s linear infinite;
}

.o2 {
    width: 220px;
    height: 220px;
    animation: spin 15s linear infinite reverse;
}

.o3 {
    width: 300px;
    height: 300px;
    animation: spin 20s linear infinite;
}

.o1::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-white);
}

.o2::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 15px;
    height: 15px;
    background: var(--color-pink-dark);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-pink);
}

.o3::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -8px;
    width: 12px;
    height: 12px;
    background: #4a5d85;
    border-radius: 50%;
}

.floating-item {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.i1 {
    top: 20%;
    right: 20%;
    width: 60px;
    height: 40px;
    animation: float-item 6s ease-in-out infinite;
}

.i2 {
    bottom: 30%;
    left: 15%;
    width: 80px;
    height: 50px;
    animation: float-item 8s ease-in-out infinite 1s;
}

.i3 {
    top: 15%;
    left: 30%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    animation: float-item 7s ease-in-out infinite 2s;
}

@keyframes pulse-center {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 30px var(--color-pink);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 50px var(--color-pink);
    }
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes float-item {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--color-navy-light);
    padding: 30px;
    border-radius: 6px;
    transition: var(--transition);
    cursor: default;
}

.product-card:hover {
    transform: translateY(-5px);
    background-color: #16284a;
}

.icon-box {
    font-size: 2rem;
    margin-bottom: 20px;
}

.product-card h4 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 0.95rem;
    color: var(--color-slate);
}

/* Team Section */
.team {
    padding: 100px 0;
    background-color: #0d1f3a;
}

.team-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 40px;
}

.team-carousel {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.team-card {
    flex: 0 0 calc(25% - 15px);
    /* Show 4 items by default */
    min-width: 200px;
    background-color: var(--color-navy-light);
    /* Ensure background for cards */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 25, 47, 0.8);
    color: var(--color-pink);
    border: 1px solid var(--color-pink);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--color-pink);
    color: var(--color-navy);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Responsive Carousel */
@media (max-width: 992px) {
    .team-card {
        flex: 0 0 calc(33.333% - 14px);
        /* Show 3 items */
    }
}

@media (max-width: 768px) {
    .team-card {
        flex: 0 0 calc(50% - 10px);
        /* Show 2 items */
    }
}

@media (max-width: 480px) {
    .team-card {
        flex: 0 0 100%;
        /* Show 1 item */
    }
}

.team-card .avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 2px solid var(--color-pink);
    transition: transform 0.5s ease;
}

.team-card:hover .avatar {
    transform: scale(1.1) rotate(5deg);
}

.team-card h4 {
    color: var(--color-white);
    margin-bottom: 5px;
}

.team-card p {
    color: var(--color-pink);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    padding: 50px 0 20px;
    background-color: var(--color-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--color-white);
    margin-bottom: 10px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: var(--color-slate);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .featured-product {
        grid-template-columns: 1fr;
    }

    .nav-list {
        display: none;
        /* Simplification for this step, would need JS for toggle */
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--color-pink);
        margin-bottom: 5px;
    }
}

/* Card Features */
.card-features {
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.card-features li {
    font-size: 0.85rem;
    color: var(--color-slate);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.card-features li::before {
    content: '•';
    color: var(--color-pink);
    margin-right: 8px;
    font-size: 1.2rem;
    line-height: 0;
}