:root {
    --color-primary: #4A90E2;
    --color-accent: #FF6B9D;
    --color-dark: #1a1a2e;
    --color-darker: #0f0f1e;
    --color-light: #f8f9fa;
    --color-text: #2d2d2d;
    --color-text-light: #6b6b6b;
    
    --font-display: 'DM Serif Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-light);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(74, 144, 226, 0.08), transparent 60%),
                radial-gradient(circle at 70% 60%, rgba(255, 107, 157, 0.08), transparent 60%);
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.badge a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-dark);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.hero-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-primary), transparent);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--color-accent), transparent);
    bottom: 20%;
    right: -5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--color-primary), transparent);
    top: 60%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: white;
}

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

.feature-card {
    padding: 3rem 2rem;
    border-radius: 20px;
    background: var(--color-light);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-weight: 400;
}

.feature-card p {
    color: var(--color-text-light);
    line-height: 1.8;
    font-weight: 300;
}

/* CTA Banner */
.cta-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    text-align: center;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: white;
}

.benefit-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.benefit-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-primary);
    font-weight: 400;
}

.benefit-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-weight: 400;
}

.benefit-content p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Platforms Section */
.platforms {
    padding: 6rem 0;
    background: var(--color-dark);
    color: white;
    text-align: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.section-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto 4rem;
    font-weight: 300;
}

.platform-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

.platform-badge {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-weight: 500;
    transition: var(--transition);
}

.platform-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Capabilities Section */
.capabilities {
    padding: 6rem 0;
    background: white;
}

.capability-card {
    padding: 3rem;
    background: var(--color-light);
    border-radius: 20px;
    margin-bottom: 2rem;
}

.capability-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-weight: 400;
}

.capability-card p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--color-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.testimonial-card {
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-primary);
}

.quote-section {
    text-align: center;
    margin-top: 6rem;
    padding: 4rem 2rem;
}

.quote-section blockquote {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 400;
}

.quote-section cite {
    font-size: 1.2rem;
    font-style: normal;
    color: var(--color-text-light);
    font-weight: 300;
}

/* IP Owners Section */
.ip-owners {
    padding: 6rem 0;
    background: white;
}

.ip-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.ip-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    max-width: 800px;
    line-height: 1.2;
    font-weight: 400;
}

.ip-content p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    font-weight: 300;
}

.ip-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ip-feature {
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 500;
}

/* Final CTA */
.final-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--color-darker), var(--color-dark));
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    font-weight: 400;
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
    font-weight: 500;
}

.final-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--color-darker);
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 300;
}

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

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.footer-bottom a {
    color: var(--color-primary);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .benefit-item {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
