/* Global Styles & Variables */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-color: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.1);
    --primary-color: #ccff00;
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --font-main: 'Inter', sans-serif;
    --spacing-section: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Adjusted gradient: Green starts later (around 85-90%) */
    background: linear-gradient(to bottom,
            #050505 0%,
            #050505 70%,
            #0a1f0a 85%,
            #1a3300 95%,
            #ccff00 100%);
    /* Note: Ending in green/white mix. User wants 'start of green a bit further'. */
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ... existing code ... */

/* Section 6 & 7: Market Gap (Why Now) */
/* Text Adaptability: User requested White text for "Why Now" */
.why-now {
    color: #fff;
}

.why-now h2,
.why-now .eyebrow {
    color: #fff;
    text-shadow: none;
}

.why-now .lead {
    color: var(--text-muted);
    /* Or white if needed, but muted usually reads well on dark */
    color: rgba(255, 255, 255, 0.8);
}

.why-now hr {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* NEW: Strategic Value Section */
.strategic-section {
    background: transparent;
}

.strategy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .strategy-container {
        grid-template-columns: 1fr;
    }
}

.strategy-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.strategy-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    padding: 24px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.strategy-box p {
    font-size: 1.1rem;
    margin: 0;
    color: #fff;
    font-weight: 500;
}

.strategy-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-img-large {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    /* box-shadow: 0 0 30px rgba(204, 255, 0, 0.1); */
    object-fit: cover;
}

.quote-box {
    text-align: center;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 20px;
}

.visit-profile-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 32px;
    background: var(--primary-color);
    color: #000;
    font-weight: 700;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s;
}

.visit-profile-btn:hover {
    transform: scale(1.05);
}

/* Animations */
.in-view {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Main Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Sections Common */
.section {
    padding: var(--spacing-section) 0;
    position: relative;
    background: transparent !important;
}

.text-center {
    text-align: center;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    max-width: 900px;
    /* Slight increase to accommodate larger logo */
}

/* CSS Logo (Hero) */
.hero-logo {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    /* Phase 7 Update */
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.logo-humain {
    color: var(--primary-color);
}

.logo-one {
    background: linear-gradient(135deg, #ccff00 0%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, #a1a1aa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subhead {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    max-width: 100%;
}

.hero-sub-subhead {
    font-size: 1.25rem;
    color: #fff !important;
    opacity: 1;
    margin-top: 0;
    font-weight: 400;
}

/* Section 2: Problem (Pain Box) */
.pain-box {
    border: 1px solid var(--card-border);
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 16px;
    display: inline-block;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 800px;
}

.pain-box h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #fff;
}

.pain-box p.lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 0;
}

/* Section 3: Solution (Flip Model) */
.solution-content {
    padding: 60px 0;
}

.huge-text {
    font-size: 3rem;
    /* Phase 7 Update */
    text-transform: uppercase;
    margin-bottom: 24px;
    line-height: 1;
}

.highlight {
    color: var(--primary-color);
}

.lead-lg {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 16px;
}

.solution-logo {
    margin: 40px 0;
    font-size: 2.5rem;
    font-weight: 700;
}

.logo-humain-sm {
    color: #fff;
}

.logo-one-sm {
    color: var(--primary-color);
}

.architecture-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding-top: 20px;
    margin-top: 20px;
}

/* Section 5: Capabilities */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    padding: 32px;
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.strategy-box strong {
    display: block;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.strategy-box p {
    font-size: 1.1rem;
    margin: 0;
    color: #fff;
    font-weight: 400;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 24px;
}

/* Missing close brace from previous block if any, but properly closing card p */
.card p {
    color: var(--text-muted);
    font-size: 1rem;
}

.competitive-box h2 {
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 20px;
}

.competitive-box p.lead {
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.eyebrow {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

/* Section 8: Close */
.close-section {
    padding-bottom: 120px;
}

.close-section h2,
.close-section p,
.close-section .profile-name {
    color: #000;
}

.profile-links {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}