:root {
    --bg-color: #0d0f17;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --accent-1: #6366f1;
    /* Indigo */
    --accent-2: #a855f7;
    /* Purple */
    --accent-3: #3b82f6;
    /* Blue */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --primary-gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    --text-gradient: linear-gradient(to right, var(--accent-3), var(--accent-1), var(--accent-2));
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

/* Background Blobs */
.blob-bg {
    position: fixed;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, rgba(13, 15, 23, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
    animation: float 20s infinite ease-in-out alternate;
}

.blob-bg.blob-2 {
    top: auto;
    bottom: -200px;
    left: auto;
    right: -200px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(13, 15, 23, 0) 70%);
    animation: float 25s infinite ease-in-out alternate-reverse;
}

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

    100% {
        transform: translate(100px, 50px);
    }
}

/* Typography Utilities */
.text-gradient {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(13, 15, 23, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-img.small {
    width: 24px;
    height: 24px;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

.btn.w-100 {
    width: 100%;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 180px 5% 100px;
    min-height: 100vh;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--accent-1);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 0.1s forwards;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

.hero-attribution {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 0.25s forwards;
}

.hero-attribution strong {
    color: var(--accent-3);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
}

.hero-image-wrapper {
    margin-top: 4rem;
    width: 100%;
    max-width: 1000px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease 0.4s forwards;
    perspective: 1000px;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 10px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(20px);
    transform: rotateX(5deg);
    transition: transform 0.5s ease;
}

.glass-panel:hover {
    transform: rotateX(0deg);
}

.hero-image {
    width: 100%;
    border-radius: 16px;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.app-showcase {
    position: relative;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.app-card {
    position: absolute;
    width: 65%;
    max-width: 800px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.card-left {
    left: -5%;
    transform: perspective(1200px) rotateY(15deg) rotateX(5deg) translateZ(-150px) translateX(10%);
    z-index: 1;
    opacity: 0.6;
    filter: brightness(0.6);
}

.card-right {
    right: -5%;
    transform: perspective(1200px) rotateY(-15deg) rotateX(5deg) translateZ(-150px) translateX(-10%);
    z-index: 2;
    opacity: 0.6;
    filter: brightness(0.6);
}

.card-center {
    z-index: 5;
    transform: perspective(1200px) translateZ(20px);
}

.app-showcase:hover .app-card {
    filter: brightness(1);
}

.app-showcase:hover .card-left {
    transform: perspective(1200px) rotateY(5deg) translateX(-45%) translateZ(-50px) scale(0.95);
    opacity: 0.9;
    z-index: 6;
}

.app-showcase:hover .card-right {
    transform: perspective(1200px) rotateY(-5deg) translateX(45%) translateZ(-50px) scale(0.95);
    opacity: 0.9;
    z-index: 7;
}

.app-showcase:hover .card-center {
    transform: perspective(1200px) translateY(-5%) scale(1.05) translateZ(80px);
    z-index: 10;
}

.app-screenshot {
    width: 100%;
    border-radius: 14px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Features */
.features,
.pricing {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-icon::before {
    content: '📅';
    font-size: 1.5rem;
}

.members-icon::before {
    content: '👥';
    font-size: 1.5rem;
}

.reports-icon::before {
    content: '📊';
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Highlight Section */
.highlight-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(13, 15, 23, 0) 0%, rgba(99, 102, 241, 0.05) 50%, rgba(13, 15, 23, 0) 100%);
}

.container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 4rem;
}

.container.reverse {
    flex-direction: row-reverse;
}

.content {
    flex: 1;
}

.content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.content>p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.check-list {
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.check-list li strong {
    color: var(--text-primary);
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%233b82f6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>') no-repeat center center;
}

.visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.shield-illustration {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulsing-shield {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(13, 15, 23, 0) 70%);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

.shield-icon {
    width: 150px;
    height: 150px;
    color: #3b82f6;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
    z-index: 1;
}

/* Pricing */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.highlight {
    border-color: var(--accent-1);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.1) 0%, rgba(13, 15, 23, 0) 100%);
    transform: scale(1.05);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary-gradient);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-3);
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.period {
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.price-card .desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    min-height: 50px;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list li::before {
    content: '✓';
    color: var(--accent-1);
    font-weight: bold;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 5% 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.attribution {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: -1rem;
}

.attribution strong {
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero-cta {
        flex-direction: column;
    }

    .container {
        flex-direction: column !important;
        gap: 2rem;
        text-align: center;
    }

    .check-list li {
        text-align: left;
    }

    .pricing-cards {
        flex-direction: column;
    }

    .price-card.highlight {
        transform: scale(1);
    }
}