/* ============================================
   FREEDOM BLUEPRINT WEBSITE - MAIN STYLESHEET
   Design: Minimalist Sophistication
   Colors: Navy (#0A0E27) + Cyan (#00D9FF) + Pink (#FF006E)
   ============================================ */

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

:root {
    --primary-bg: #0A0E27;
    --secondary-bg: #1a1f3a;
    --accent-cyan: #00D9FF;
    --accent-pink: #FF006E;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B8D4;
    --text-muted: #7a8299;
    --border-color: rgba(0, 217, 255, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 {
    font-size: 64px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 48px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

h3 {
    font-size: 24px;
    color: var(--text-primary);
}

h4 {
    font-size: 18px;
    color: var(--text-primary);
}

p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-pink) 100%);
    color: var(--primary-bg);
    border-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
}

.btn-secondary:hover {
    background: rgba(0, 217, 255, 0.1);
    transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.cta-link {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    margin-top: 80px;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(26, 31, 58, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 72px;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.visual-placeholder {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: var(--accent-cyan);
    opacity: 0.3;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 100px 0;
    position: relative;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 8px;
}

.traits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 60px 0;
}

.trait-card {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-cyan);
    padding: 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trait-card:nth-child(2) {
    border-left-color: var(--accent-pink);
    background: rgba(255, 0, 110, 0.05);
}

.trait-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    background: rgba(0, 217, 255, 0.08);
}

.trait-icon {
    font-size: 48px;
    color: var(--accent-cyan);
    margin-bottom: 16px;
}

.trait-card:nth-child(2) .trait-icon {
    color: var(--accent-pink);
}

.trait-card h3 {
    margin-bottom: 12px;
}

.trait-card p {
    font-size: 14px;
    line-height: 1.6;
}

.cultural-highlight,
.expertise-highlight {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-cyan);
    padding: 32px;
    margin: 32px 0;
    border-radius: 8px;
}

.expertise-highlight {
    border-left-color: var(--accent-pink);
    background: rgba(255, 0, 110, 0.05);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 60px 0;
}

.features-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(26, 31, 58, 0.9) 100%);
    z-index: 1;
}

.features-section .container {
    position: relative;
    z-index: 2;
}

.features-section h2 {
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.feature-item {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:nth-child(2n) {
    background: rgba(255, 0, 110, 0.05);
    border-color: rgba(255, 0, 110, 0.2);
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
}

.feature-item i {
    font-size: 48px;
    color: var(--accent-cyan);
    margin-bottom: 16px;
}

.feature-item:nth-child(2n) i {
    color: var(--accent-pink);
}

.feature-item h4 {
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 14px;
}

/* ============================================
   PLATFORMS SECTION
   ============================================ */

.platforms-section {
    padding: 100px 0;
}

.platforms-section h2 {
    text-align: center;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.platform-card {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--accent-cyan);
    padding: 32px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    background: rgba(0, 217, 255, 0.08);
}

.pro-card {
    background: rgba(255, 0, 110, 0.05);
    border-top-color: var(--accent-pink);
    border-color: rgba(255, 0, 110, 0.2);
}

.pro-card:hover {
    border-color: var(--accent-pink);
}

.credit-card {
    background: rgba(0, 217, 255, 0.05);
}

.platform-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.platform-header i {
    font-size: 32px;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.pro-card .platform-header i {
    color: var(--accent-pink);
}

.platform-header h3 {
    margin-bottom: 4px;
}

.platform-audience {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-description {
    font-size: 14px;
    color: var(--text-secondary);
}

.platform-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.platform-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.platform-features i {
    color: var(--accent-cyan);
    font-size: 14px;
}

.pro-card .platform-features i {
    color: var(--accent-pink);
}

.platform-url {
    font-size: 12px;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

/* ============================================
   IMPACT SECTION
   ============================================ */

.impact-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 60px 0;
}

.impact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(26, 31, 58, 0.9) 100%);
    z-index: 1;
}

.impact-section .container {
    position: relative;
    z-index: 2;
}

.impact-section h2 {
    text-align: center;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 56px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.stat-item p {
    font-size: 18px;
    color: var(--text-secondary);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: rgba(10, 14, 39, 0.5);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        height: 300px;
    }

    .traits-grid,
    .features-grid,
    .platforms-grid,
    .impact-stats,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 16px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .hero {
        margin-top: 60px;
    }

    .navbar {
        padding: 12px 0;
    }

    .nav-links {
        display: none;
    }
}
