/* ===================================
   JOULE ENERGY - Modern Stylesheet
   Ocean-Based Energy Storage Company
   Complete Redesign 2026
   =================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
    /* Core Colors */
    --primary-dark: #060d18;
    --primary-deeper: #0a1424;
    --primary-blue: #0d2847;
    --accent-teal: #00d4ff;
    --accent-cyan: #48cae4;
    --accent-light: #90e0ef;
    --accent-glow: rgba(0, 212, 255, 0.4);
    --white: #ffffff;
    --off-white: #e8f4f8;
    --gray-light: #a8c0cc;
    --gray-medium: #5a7a8a;

    /* Gradients */
    --gradient-ocean: linear-gradient(180deg, #060d18 0%, #0a1628 50%, #0d2847 100%);
    --gradient-glow: linear-gradient(135deg, #00d4ff 0%, #48cae4 50%, #00d4ff 100%);
    --gradient-card: linear-gradient(165deg, rgba(13, 40, 71, 0.4) 0%, rgba(6, 13, 24, 0.8) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    --gradient-hero: linear-gradient(180deg, rgba(6, 13, 24, 0.3) 0%, rgba(6, 13, 24, 0.7) 50%, #060d18 100%);
    --gradient-radial: radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.15) 0%, transparent 60%);

    /* Shadows */
    --shadow-glow: 0 0 60px rgba(0, 212, 255, 0.3);
    --shadow-glow-sm: 0 0 30px rgba(0, 212, 255, 0.2);
    --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-elevated: 0 20px 40px rgba(0, 0, 0, 0.4);

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: all 0.2s ease;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;

    /* Spacing */
    --section-padding: 8rem;
    --container-max: 1400px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-teal) var(--primary-dark);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-teal);
    border-radius: 4px;
}

body {
    font-family: var(--font-body);
    background: var(--primary-dark);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

/* Selection */
::selection {
    background: var(--accent-teal);
    color: var(--primary-dark);
}

/* ===================================
   ANIMATED BACKGROUNDS
   =================================== */

/* Base Background */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    background: var(--gradient-ocean);
}

/* Animated Gradient Orbs */
.bg-pattern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(72, 202, 228, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(0, 180, 216, 0.04) 0%, transparent 30%);
    animation: orbFloat 30s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 2%) rotate(90deg); }
    50% { transform: translate(0%, 4%) rotate(180deg); }
    75% { transform: translate(-2%, 2%) rotate(270deg); }
}

/* Particles - Varied by page */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--accent-teal);
    border-radius: 50%;
    opacity: 0;
    animation: particleRise 25s linear infinite;
}

.particle:nth-child(odd) {
    width: 3px;
    height: 3px;
}

.particle:nth-child(even) {
    width: 5px;
    height: 5px;
    background: var(--accent-cyan);
}

.particle:nth-child(1) { left: 5%; animation-delay: 0s; }
.particle:nth-child(2) { left: 15%; animation-delay: 3s; }
.particle:nth-child(3) { left: 25%; animation-delay: 6s; }
.particle:nth-child(4) { left: 35%; animation-delay: 9s; }
.particle:nth-child(5) { left: 45%; animation-delay: 12s; }
.particle:nth-child(6) { left: 55%; animation-delay: 15s; }
.particle:nth-child(7) { left: 65%; animation-delay: 18s; }
.particle:nth-child(8) { left: 75%; animation-delay: 21s; }
.particle:nth-child(9) { left: 85%; animation-delay: 24s; }

@keyframes particleRise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-10vh) scale(0.5);
        opacity: 0;
    }
}

/* Wave SVG Background */
.wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
    z-index: 0;
}

.wave-bg svg {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 100%;
    animation: waveFlow 15s linear infinite;
}

.wave-bg svg:nth-child(2) {
    animation-delay: -7s;
    opacity: 0.5;
}

@keyframes waveFlow {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(6, 13, 24, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: var(--transition-smooth);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-light);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    position: relative;
    transition: var(--transition-smooth);
}

.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glass);
    border-radius: var(--radius-md);
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.nav-links a:hover::before {
    opacity: 1;
}

.nav-links a.active {
    color: var(--accent-teal);
    background: rgba(0, 212, 255, 0.1);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) saturate(1.2);
    transform: scale(1.05);
    animation: heroZoom 30s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    padding: 2rem;
    text-align: center;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
}

.hero h1 span {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gradient-glow);
    opacity: 0.3;
    filter: blur(10px);
}

.hero-tagline {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--gray-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-teal), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 60px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--gradient-glow);
    color: var(--primary-dark);
    box-shadow: 0 4px 25px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--accent-teal);
    border: 2px solid var(--accent-teal);
}

.btn-outline:hover {
    background: var(--accent-teal);
    color: var(--primary-dark);
    box-shadow: var(--shadow-glow-sm);
}

.btn-ghost {
    background: rgba(255,255,255,0.05);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-teal);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

.btn-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-teal);
    transition: var(--transition-smooth);
}

.btn-arrow:hover {
    gap: 1rem;
}

.btn-arrow:hover::after {
    width: 100%;
}

/* ===================================
   SECTIONS
   =================================== */

section {
    padding: var(--section-padding) 2rem;
    position: relative;
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

/* Section Headers - Multiple Styles */
.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-header.left {
    max-width: 600px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-teal);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-teal);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-title .highlight {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-light);
    max-width: 650px;
    line-height: 1.8;
}

.section-header.centered .section-subtitle {
    margin: 0 auto;
}

/* ===================================
   ABOUT SECTION (Homepage)
   =================================== */

.about-section {
    background: var(--gradient-radial), var(--primary-deeper);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
}

.about-text p strong {
    color: var(--accent-teal);
}

.about-visual {
    position: relative;
}

.about-visual img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.about-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-teal);
    border-radius: var(--radius-xl);
    opacity: 0.3;
    z-index: -1;
}

/* Patent Card */
.patent-card {
    display: flex;
    flex-direction: column;
    background: var(--gradient-card);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
    position: relative;
}

.patent-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}

.patent-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(0, 212, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 100px;
    z-index: 10;
}

.patent-badge svg {
    width: 18px;
    height: 18px;
    color: var(--accent-teal);
}

.patent-badge span {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-teal);
}

.patent-document {
    background: linear-gradient(165deg, #0f1c2e 0%, #081220 100%);
    padding: 0;
    position: relative;
}

.patent-doc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.08) 0%, transparent 100%);
}

.patent-doc-seal {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-teal);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.patent-doc-type {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gray-medium);
    text-transform: uppercase;
}

.patent-doc-body {
    padding: 32px 24px;
}

.patent-doc-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0, 212, 255, 0.3);
}

.patent-doc-title {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.5;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.patent-doc-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.patent-doc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.patent-doc-item .label {
    font-size: 12px;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.patent-doc-item .value {
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
}

.patent-doc-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 24px;
    background: rgba(0, 212, 255, 0.1);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    transition: var(--transition-smooth);
}

.patent-card:hover .patent-doc-footer {
    background: rgba(0, 212, 255, 0.2);
}

.patent-doc-footer svg {
    width: 18px;
    height: 18px;
    color: var(--accent-teal);
}

.patent-doc-footer span {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-teal);
}

/* ===================================
   BENTO GRID - OPPORTUNITIES
   =================================== */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1.5rem;
}

.bento-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: var(--shadow-glow);
}

.bento-card:hover::before {
    opacity: 1;
}

/* Bento Card Sizes */
.bento-card.large {
    grid-column: span 8;
    grid-row: span 2;
    padding: 3.5rem;
}

.bento-card.medium {
    grid-column: span 4;
}

.bento-card.wide {
    grid-column: span 6;
}

.bento-card.full {
    grid-column: span 12;
}

/* Bento Card Content */
.bento-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.05));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.bento-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: var(--gradient-glow);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.bento-card:hover .bento-icon::after {
    opacity: 0.3;
    filter: blur(10px);
}

.bento-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-teal);
}

.bento-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bento-card.large h3 {
    font-size: 2.5rem;
}

.bento-card p {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.8;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.bento-card .btn-arrow {
    margin-top: auto;
}

/* Bento Card Variants */
.bento-card.featured {
    background: linear-gradient(165deg, rgba(0, 212, 255, 0.15) 0%, rgba(6, 13, 24, 0.95) 50%);
    border-color: rgba(0, 212, 255, 0.2);
}

.bento-card.featured .bento-number {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 800;
    color: rgba(0, 212, 255, 0.1);
    position: absolute;
    top: 1rem;
    right: 2rem;
    line-height: 1;
}

/* ===================================
   OPPORTUNITY CARDS (Legacy Support)
   =================================== */

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

.opportunity-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.opportunity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-glow);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.opportunity-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--shadow-glow);
}

.opportunity-card:hover::before {
    transform: scaleX(1);
}

.opportunity-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.05));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.opportunity-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--accent-teal);
}

.opportunity-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.opportunity-card p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
    line-height: 1.8;
}

/* ===================================
   STATS SECTION
   =================================== */

.stats-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.03), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===================================
   TEAM SECTION
   =================================== */

.team-section {
    position: relative;
}

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

.team-grid.staggered .team-card:nth-child(2) {
    transform: translateY(3rem);
}

.team-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--gradient-glow);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
    filter: blur(30px);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.2);
}

.team-card:hover::before {
    opacity: 0.15;
}

.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(var(--primary-dark), var(--primary-dark)) padding-box,
                var(--gradient-glow) border-box;
    position: relative;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-card:hover .team-photo img {
    transform: scale(1.1);
}

.team-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-card .role {
    color: var(--accent-teal);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.team-card p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Advisors Grid */
.advisors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.advisor-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.advisor-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

.advisor-card .team-photo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.advisor-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.advisor-card .role {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.advisor-card p {
    font-size: 0.8rem;
}

/* LinkedIn Photo Link */
.team-photo-link {
    position: relative;
    display: block;
    text-decoration: none;
}

.team-photo-link:hover .team-photo img {
    transform: scale(1.1);
}

.team-photo-link:hover .linkedin-badge {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.linkedin-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 48px;
    height: 48px;
    background: #0A66C2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(10, 102, 194, 0.4);
}

.linkedin-badge svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.linkedin-badge.small {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.linkedin-badge.small svg {
    width: 20px;
    height: 20px;
}

/* Team grid for 4 members */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    position: relative;
}

.faq-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
}

.faq-nav {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.faq-nav-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
}

.faq-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-nav-link {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--gray-light);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    border-left: 2px solid transparent;
}

.faq-nav-link:hover {
    background: rgba(0, 212, 255, 0.05);
    color: var(--white);
}

.faq-nav-link.active {
    background: rgba(0, 212, 255, 0.1);
    border-left-color: var(--accent-teal);
    color: var(--accent-teal);
}

.faq-container {
    max-width: 800px;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-item {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(0, 212, 255, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.03);
}

.faq-question h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-teal);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    background: var(--accent-teal);
    transform: rotate(180deg);
}

.faq-item.active .faq-icon svg {
    stroke: var(--primary-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: var(--gray-light);
    line-height: 1.8;
}

.faq-answer-content p {
    margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content a {
    color: var(--accent-teal);
}

.faq-answer-content a:hover {
    text-decoration: underline;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Expand All Button */
.expand-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 60px;
    color: var(--accent-teal);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-bottom: 1.5rem;
}

.expand-all-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent-teal);
}

.expand-all-btn.expanded {
    background: rgba(0, 212, 255, 0.15);
}

.expand-all-btn .expand-icon {
    width: 14px;
    height: 14px;
    transition: var(--transition-smooth);
}

.expand-all-btn.expanded .expand-icon {
    transform: rotate(180deg);
}

/* ===================================
   PAGE HEADERS - VARIED STYLES
   =================================== */

/* Default Page Header */
.page-header {
    padding: 12rem 2rem 5rem;
    text-align: center;
    position: relative;
    background: var(--primary-deeper);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: -2px;
}

.page-header .subtitle {
    font-size: 1.25rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* Minimal Header Variant */
.page-header.minimal {
    padding: 10rem 2rem 3rem;
    background: transparent;
}

.page-header.minimal::before {
    display: none;
}

/* Split Header Variant */
.page-header.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    text-align: left;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 10rem 2rem 4rem;
}

.page-header.split::before {
    left: 80%;
}

/* ===================================
   CONTENT SECTIONS
   =================================== */

.content-section {
    padding: 5rem 2rem;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.content-wrapper p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.9;
}

.content-wrapper p strong {
    color: var(--white);
}

.content-wrapper ul {
    list-style: none;
    margin: 2rem 0;
}

.content-wrapper ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--gray-light);
    line-height: 1.8;
}

.content-wrapper ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 8px;
    height: 8px;
    background: var(--accent-teal);
    border-radius: 50%;
}

.content-wrapper ul li strong {
    color: var(--white);
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(6, 13, 24, 0.8) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-glow);
}

.highlight-box p {
    margin-bottom: 0;
}

.highlight-box p strong {
    color: var(--accent-teal);
}

/* Disclaimer */
.disclaimer {
    background: rgba(6, 13, 24, 0.8);
    border-left: 3px solid var(--gray-medium);
    padding: 1.5rem 2rem;
    margin-top: 3rem;
    font-size: 0.85rem;
    color: var(--gray-medium);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    line-height: 1.7;
}

/* ===================================
   FORMS - DIFFERENTIATED STYLES
   =================================== */

.form-section {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-top: 3rem;
}

.form-section h2 {
    margin-bottom: 0.5rem;
}

.form-section > p {
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-grid .form-group.full-width {
    grid-column: span 2;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-light);
    font-size: 0.9rem;
}

.form-group label .required {
    color: var(--accent-teal);
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(6, 13, 24, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    background: rgba(6, 13, 24, 0.8);
}

.form-control::placeholder {
    color: var(--gray-medium);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* Form Variants */
.form-section.investor {
    border-color: rgba(0, 212, 255, 0.2);
    background: linear-gradient(165deg, rgba(0, 212, 255, 0.08) 0%, rgba(6, 13, 24, 0.95) 40%);
}

.form-section.host {
    border-color: rgba(72, 202, 228, 0.2);
    background: linear-gradient(165deg, rgba(72, 202, 228, 0.08) 0%, rgba(6, 13, 24, 0.95) 40%);
}

.form-section.join {
    border-color: rgba(144, 224, 239, 0.2);
    background: linear-gradient(165deg, rgba(144, 224, 239, 0.08) 0%, rgba(6, 13, 24, 0.95) 40%);
}

/* ===================================
   CONTACT INFO
   =================================== */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-light);
    font-size: 1rem;
}

.contact-item svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-teal);
    flex-shrink: 0;
}

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

.footer {
    background: var(--primary-deeper);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
    opacity: 0.3;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-logo {
    height: 32px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    max-width: 320px;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: var(--gray-medium);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--accent-teal);
}

.footer-subscribe h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-subscribe > p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Subscribe Form */
.subscribe-form {
    display: flex;
    gap: 0.5rem;
}

.subscribe-form input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--accent-teal);
    background: rgba(255, 255, 255, 0.08);
}

.subscribe-form button {
    padding: 0.85rem 1.5rem;
    background: var(--accent-teal);
    border: none;
    border-radius: var(--radius-md);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.subscribe-form button:hover {
    background: var(--accent-light);
    box-shadow: var(--shadow-glow-sm);
}

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

/* ===================================
   ANIMATIONS
   =================================== */

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

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

@media (max-width: 1200px) {
    .bento-card.large {
        grid-column: span 12;
    }

    .bento-card.medium {
        grid-column: span 6;
    }

    .advisors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: -1;
    }

    .opportunities-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid.staggered .team-card:nth-child(2) {
        transform: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-nav {
        position: static;
        display: flex;
        overflow-x: auto;
        gap: 0.5rem;
        padding-bottom: 1rem;
        margin-bottom: 2rem;
    }

    .faq-nav-links {
        flex-direction: row;
    }

    .faq-nav-link {
        white-space: nowrap;
        border-left: none;
        border-bottom: 2px solid transparent;
    }

    .faq-nav-link.active {
        border-left: none;
        border-bottom-color: var(--accent-teal);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: rgba(6, 13, 24, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        transition: var(--transition-smooth);
        gap: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 1rem;
        font-size: 1.1rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    section {
        padding: 4rem 1.25rem;
    }

    .bento-grid {
        display: flex;
        flex-direction: column;
    }

    .bento-card.large,
    .bento-card.medium,
    .bento-card.wide {
        grid-column: auto;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .advisors-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-header {
        padding: 9rem 1.25rem 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header.split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid .form-group.full-width {
        grid-column: auto;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .bento-card {
        padding: 2rem;
    }

    .bento-card h3 {
        font-size: 1.5rem;
    }

    .form-section {
        padding: 2rem;
    }

    .highlight-box {
        padding: 1.5rem;
    }

    .team-grid,
    .advisors-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-gradient {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-teal { color: var(--accent-teal); }
.text-muted { color: var(--gray-light); }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mt-5 { margin-top: 5rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mb-5 { margin-bottom: 5rem; }

.py-1 { padding-top: 1rem; padding-bottom: 1rem; }
.py-2 { padding-top: 2rem; padding-bottom: 2rem; }
.py-3 { padding-top: 3rem; padding-bottom: 3rem; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Glass Card */
.glass-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
}

/* Divider */
.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin: 4rem 0;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Feature List */
.feature-list {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-teal);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.feature-content p {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin: 0;
}
