:root {
    --bg-dark: #050507;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    --primary-accent: #6b63ff;
    --secondary-accent: #00f2ea;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --glass-bg: rgba(5, 5, 7, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Custom cursor */
}





/* Typography & Utilities */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Header */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: var(--glass-border);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    gap: 0.8rem;
    color: var(--text-main);
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

.logo .dot {
    color: var(--secondary-accent);
}

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

nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

nav a:hover {
    color: var(--text-main);
}

.cta-btn {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--primary-accent);
    color: white;
    box-shadow: 0 0 15px rgba(107, 99, 255, 0.4);
}

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

.hero-content {
    flex: 1;
    z-index: 2;
    max-width: 600px;
}

.overline {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: var(--secondary-accent);
    margin-bottom: 1rem;
    display: block;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.primary {
    background: var(--text-main);
    color: var(--bg-dark);
}

.btn.primary:hover {
    background: var(--secondary-accent);
    transform: translateY(-2px);
}

.btn.secondary {
    margin-left: 1rem;
    color: var(--text-main);
}

.btn.secondary:hover {
    color: var(--secondary-accent);
}

/* Hero Visual & Abstract Elements */
.hero-visual {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glowing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-accent);
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary-accent);
    bottom: 20%;
    left: 20%;
    animation: float 8s ease-in-out infinite reverse;
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    width: 200px;
    color: white;
    z-index: 3;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.element-1 {
    top: 30%;
    right: 20%;
    transform: rotate(-5deg);
    animation: hoverCard 5s ease-in-out infinite;
}

.element-2 {
    bottom: 25%;
    right: 40%;
    transform: rotate(5deg);
    animation: hoverCard 7s ease-in-out infinite 1s;
}

/* Stats Bar */
.trust-bar {
    display: flex;
    justify-content: space-around;
    padding: 4rem 10%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(to bottom, var(--bg-dark), #0a0a0f);
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.stat .label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Services Grid */
.services {
    padding: 8rem 5%;
}

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

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

.section-header .line {
    width: 60px;
    height: 3px;
    background: var(--secondary-accent);
}

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

.service-card {
    padding: 2.5rem;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

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

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.learn-more {
    color: var(--secondary-accent);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Feature Split */
.feature-split {
    display: flex;
    padding: 6rem 5%;
    align-items: center;
    gap: 4rem;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-text p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.check-list li {
    list-style: none;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-main);
}

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

.feature-visual {
    flex: 1;
    position: relative;
}

.masked-image {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(80%) contrast(1.2);
    transition: 0.5s;
}

.feature-visual:hover .masked-image {
    filter: grayscale(0%) contrast(1);
}

/* CTA Section */
.cta-section {
    padding: 8rem 5%;
    text-align: center;
    background: radial-gradient(circle at center, rgba(107, 99, 255, 0.1) 0%, transparent 70%);
}

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

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Footer */
footer {
    padding: 4rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #020203;
}

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

.footer-content h3 {
    margin-bottom: 1rem;
}

.footer-content h4 {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.footer-content a {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.footer-content a:hover {
    color: var(--secondary-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
@keyframes float {

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

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

@keyframes hoverCard {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero {
        flex-direction: column;
        padding-top: 100px;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .glass-nav {
        padding: 1rem;
    }

    nav ul {
        display: none;
    }

    /* Simplified for MVP */
    .feature-split {
        flex-direction: column;
    }
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 242, 234, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}