/* ==========================================================================
   EDIT AXIS MEDIA - INFLUENCER MARKETING AGENCY
   Theme: Clean, Tech-Vibe, Data-Driven
   ========================================================================== */

:root {
    --primary: #8AAFC4;       /* Steel Blue */
    --primary-dark: #6a8ea3;
    --bg-light: #F2EFE7;      /* Warm Off-White */
    --bg-dark: #111111;       /* Near Black */
    --text-dark: #111111;
    --text-light: #F2EFE7;
    --text-muted: #888888;
    --border-light: rgba(17, 17, 17, 0.1);
    --border-dark: rgba(242, 239, 231, 0.1);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.1;
}

.mono {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography Utility */
.text-primary { color: var(--primary); }
.text-light { color: var(--text-light); }
.text-dark { color: var(--text-dark); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-dark);
}

/* Layout Utilities */
.section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    padding: 1rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    
    /* Apple Glass Effect */
    background: rgba(17, 17, 17, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    text-transform: uppercase;
}

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

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    background-color: var(--bg-dark);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
    text-align: center;
}

.hero-content {
    max-width: 900px;
}

.hero-title {
    font-size: clamp(4rem, 10vw, 8rem);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* ==========================================================================
   PROBLEM & PHILOSOPHY
   ========================================================================== */
.philosophy {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 3rem;
}

.process-grid {
    margin-top: 4rem;
}

.process-step {
    border-top: 2px solid var(--primary);
    padding-top: 1.5rem;
}

.process-step .step-num {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 0.95rem;
    color: #444;
}

/* ==========================================================================
   CAMPAIGN BLUEPRINTS
   ========================================================================== */
.blueprints {
    background-color: var(--bg-light);
}

.case-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed var(--border-light);
}

.case-brand {
    font-size: 2.5rem;
}

.case-tag {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--primary);
    font-weight: 700;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.kpi-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
}

.kpi-value {
    font-size: 2.5rem;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.kpi-label {
    color: #666;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* ==========================================================================
   OPEN NETWORK
   ========================================================================== */
.open-network {
    background-color: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
}

.data-strip {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-dark);
}

.data-point {
    max-width: 300px;
}

.data-stat {
    font-size: 3rem;
    color: var(--primary);
    display: block;
    margin-bottom: 1rem;
}

/* ==========================================================================
   TWIN PORTALS
   ========================================================================== */
.twin-portals {
    background-color: var(--bg-light);
}

.portal-card {
    background: #ffffff;
    padding: 3rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
}

.portal-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.portal-card p {
    margin-bottom: 2rem;
    color: #666;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-light);
    background: var(--bg-light);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

/* ==========================================================================
   WHY US & FOOTER
   ========================================================================== */
.why-us {
    background-color: var(--primary);
    color: var(--bg-dark);
    text-align: center;
    padding: 4rem 2rem;
}

.why-us p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 600;
}

.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-info p {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.footer-links a {
    display: block;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

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

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
    .grid-2, .grid-4, .kpi-grid {
        grid-template-columns: 1fr;
    }
    .data-strip {
        flex-direction: column;
        gap: 3rem;
    }
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-ctas {
        flex-direction: column;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

/* ==========================================================================
   CUSTOM CURSOR & ANIMATIONS
   ========================================================================== */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    mix-blend-mode: difference;
}

.cursor.active {
    width: 50px;
    height: 50px;
    background-color: rgba(138, 175, 196, 0.2); /* primary with opacity */
    backdrop-filter: blur(2px);
}

@media (max-width: 768px) {
    .cursor {
        display: none !important;
    }
}

/* ==========================================================================
   FOUNDERS SECTION (Restored)
   ========================================================================== */
.team-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    justify-items: center;
    margin-top: 4rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.member-photo-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    margin-bottom: 2rem;
    border-radius: 50%;
    padding: 10px;
    background: linear-gradient(135deg, var(--primary), transparent);
}

.circular-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #222;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: grayscale(20%);
}

.team-member:hover .circular-photo {
    transform: scale(1.05);
    filter: grayscale(0%);
}
