:root {
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --accent-primary: #00f0ff;
    /* Neon Cyan */
    --accent-secondary: #7000ff;
    /* Deep Neon Purple */
    --accent-gold: #ffd700;
    /* Metallic Gold for CTA */
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --glass-bg: rgba(20, 20, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(255, 255, 255, 0.03);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #0aff60, #00c853);
    color: #000;
    box-shadow: 0 0 20px rgba(10, 255, 96, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(10, 255, 96, 0.5);
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0);
    transition: var(--transition-smooth);
}

.btn:hover .btn-glow {
    opacity: 1;
    transform: scale(1);
    transition: 0s;
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('hero_background_abstract.png') no-repeat center center/cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.8), var(--bg-dark));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.3));
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a0a0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.hero h2 {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Context Section */
.context {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.context-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.context-text {
    flex: 1;
    min-width: 300px;
}

.context-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.context-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.text-body {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Method Section */
.method {
    background-color: var(--bg-dark);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.method-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.method-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
    display: inline-block;
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.method-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Qualification Section */
.qualification {
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
}

.qual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.qual-box {
    padding: 30px;
    border-left: 3px solid var(--accent-primary);
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.05), transparent);
}

.qual-box.negative {
    border-left-color: #ff4757;
    background: linear-gradient(90deg, rgba(255, 71, 87, 0.05), transparent);
}

.qual-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Final CTA */
.final-cta {
    background: url('hero_background_abstract.png') no-repeat center center/cover;
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.85);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    background: rgba(20, 20, 30, 0.4);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Founder/Social Section */
.founder-section {
    background-color: var(--bg-darker);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.founder-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.founder-text {
    flex: 1;
}

.founder-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.founder-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.profile-photo {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--accent-primary);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.2);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    transition: var(--transition-fast);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: var(--accent-primary);
}

.social-btn i {
    font-size: 1.2rem;
    color: var(--accent-primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .founder-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .profile-photo {
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .context-wrapper {
        flex-direction: column-reverse;
        /* Image on top on mobile? Or bottom? Usually image top or between text */
    }

    .context-image,
    .context-text {
        width: 100%;
    }
}