@charset "UTF-8";

:root {
    /* Premium color palette with glass effects */
    --pure-black: #000000;
    --deep-black: #0a0a0a;
    --dark-gray: #1d1d1f;
    --medium-gray: #86868b;
    --light-gray: #f5f5f7;
    --pure-white: #ffffff;
    --accent-blue: #0071e3;
    --accent-hover: #0077ed;
    --accent-glow: #00a3ff;
    --text-primary: #1d1d1f;
    --text-secondary: #6e6e73;
    --glass-white: rgba(255, 255, 255, 0.15);
    --glass-heavy: rgba(255, 255, 255, 0.25);
    --glass-dark: rgba(0, 0, 0, 0.15);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --shadow-deep: 0 20px 80px rgba(0, 0, 0, 0.5);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--pure-black);
    color: var(--pure-white);
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.016em;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.display-font {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
}

/* Glass morphism enhanced */
.glass {
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

/* Enhanced Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: var(--shadow-deep);
    padding: 0.5rem 0;
}

nav.scrolled .nav-container {
    padding: 0.75rem 2rem;
}

nav.scrolled .logo img {
    height: 50px;
}

nav.scrolled .logo-text .company-name {
    font-size: 1.1rem;
}

nav.scrolled .logo-text .tagline {
    font-size: 0.7rem;
}

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

.logo {
    color: var(--pure-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo img {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 15px 50px rgba(0, 163, 255, 1)) drop-shadow(0 5px 20px rgba(0, 163, 255, 0.8)) brightness(1.2);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 15px 50px rgba(0, 163, 255, 1)) drop-shadow(0 5px 20px rgba(0, 163, 255, 0.8)) brightness(1.2); }
    50% { filter: drop-shadow(0 20px 60px rgba(0, 163, 255, 1)) drop-shadow(0 8px 25px rgba(0, 163, 255, 0.9)) brightness(1.25); }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text .company-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-text .tagline {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 0.05em;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--pure-white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-glow);
    box-shadow: 0 0 10px var(--accent-glow);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent-blue);
    color: var(--pure-white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 113, 227, 0.3);
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 113, 227, 0.5);
}

/* Epic Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0,0,0,0.02), rgba(0,0,0,0.08)), url('../images/hero-background-plus-1.webp') center/cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Animated background particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-glow);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-glow);
    animation: floatUp 20s linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

/* Fixed carousel implementation */
.hero-carousel {
    position: relative;
    min-height: 400px;
    width: 100%;
    cursor: pointer;
    user-select: none;
}

.hero-carousel:active {
    cursor: grabbing;
}

.carousel-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.carousel-item h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    color: var(--pure-white);
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.carousel-item p {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Carousel indicators */
.carousel-indicators {
    position: absolute;
    bottom: -40px;
    left: 0;
    display: flex;
    gap: 12px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot.active {
    background: var(--accent-glow);
    width: 40px;
    border-radius: 6px;
    box-shadow: 0 0 20px var(--accent-glow);
}

.hero-cta-group {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-primary {
    background: var(--accent-blue);
    color: var(--pure-white);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 113, 227, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--accent-glow);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 113, 227, 0.5);
}

/* Small button variant */
.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.btn-sm.btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.btn-sm.btn-outline-light {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.btn-secondary {
    background: var(--glass-heavy);
    backdrop-filter: blur(10px);
    color: var(--pure-white);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    border: 2px solid var(--glass-border);
    transition: all 0.3s ease;
    position: relative;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glass);
    border-color: var(--accent-glow);
}

.btn-outline-light {
    background: transparent;
    color: var(--pure-white);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Enhanced floating cards */
.hero-visual {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.float-card {
    position: absolute;
    background: var(--glass-white);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
    min-height: 350px;
}

.float-card:hover {
    animation-play-state: paused;
    transform: translateY(-15px) scale(1.08) translateZ(100px);
    box-shadow: 0 25px 50px rgba(0, 113, 227, 0.4);
    border-color: var(--accent-glow);
    z-index: 20 !important;
}

.float-card img {
    filter: brightness(0.9);
    transition: all 0.3s ease;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: 12px;
}

.float-card:hover img {
    filter: brightness(1.1) drop-shadow(0 5px 20px rgba(0, 113, 227, 0.5));
    transform: scale(1.1);
}

.float-card:nth-child(1) {
    top: 5%;
    right: 5%;
    width: 400px;
    animation: floatSmooth1 12s ease-in-out infinite;
    z-index: 10;
}

.float-card:nth-child(2) {
    top: 35%;
    right: 15%;
    width: 400px;
    animation: floatSmooth2 12s ease-in-out infinite 4s;
    z-index: 11;
}

.float-card:nth-child(3) {
    bottom: 15%;
    right: 5%;
    width: 400px;
    animation: floatSmooth3 12s ease-in-out infinite 8s;
    z-index: 9;
}

/* Separate animations for clean movement */
@keyframes floatSmooth1 {
    0%, 100% { 
        transform: translateY(0) translateZ(0) scale(1);
        z-index: 10;
    }
    33% {
        transform: translateY(-20px) translateZ(50px) scale(1.05);
        z-index: 12;
    }
    66% { 
        transform: translateY(-10px) translateZ(-50px) scale(0.95);
        z-index: 8;
    }
}

@keyframes floatSmooth2 {
    0%, 100% { 
        transform: translateY(0) translateZ(0) scale(1);
        z-index: 11;
    }
    33% {
        transform: translateY(-15px) translateZ(-50px) scale(0.95);
        z-index: 9;
    }
    66% { 
        transform: translateY(-25px) translateZ(50px) scale(1.05);
        z-index: 13;
    }
}

@keyframes floatSmooth3 {
    0%, 100% { 
        transform: translateY(0) translateZ(0) scale(1);
        z-index: 9;
    }
    33% {
        transform: translateY(-10px) translateZ(50px) scale(1.05);
        z-index: 11;
    }
    66% { 
        transform: translateY(-20px) translateZ(-50px) scale(0.95);
        z-index: 7;
    }
}

.float-card h3 {
    font-size: 1.5rem;
    color: var(--pure-white);
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.float-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: linear-gradient(rgba(0,0,0,0.03), rgba(0,0,0,0.1)), url('../images/revolutionazing-legal-services-1.webp') center/cover;
    position: relative;
}

/* Divisions Section with Foundation background */
#divisions {
    background: linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.12)), url('../images/TNH-Foundation-2.webp') center/cover;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-glow) 50%, 
        transparent 100%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.section-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 113, 227, 0.3);
    border-color: var(--accent-glow);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 20px currentColor);
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--pure-white);
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features li::before {
    content: '✓';
    color: var(--accent-glow);
    font-weight: bold;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.15)), url('../images/hero-background-1.webp') center/cover;
    position: relative;
}

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

.about-text h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
    font-weight: 900;
}

.about-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.stat-card {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
    border-color: var(--accent-glow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-glow);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 3rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--glass-border);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
}

.timeline-date {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-glow);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--pure-white);
}

.timeline-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.timeline-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--accent-glow);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.timeline-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--accent-glow);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Media Section */
.media-section {
    padding: 8rem 0;
    background: linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.15)), url('../images/podcasts-background-1.webp') center/cover;
    background-attachment: fixed;
    position: relative;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.podcast-card {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.podcast-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 113, 227, 0.3);
    border-color: var(--accent-glow);
}

.podcast-header {
    margin-bottom: 2rem;
}

.podcast-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.podcast-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--pure-white);
}

.coming-soon {
    display: inline-block;
    background: rgba(0, 163, 255, 0.2);
    color: var(--accent-glow);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.podcast-platforms {
    margin: 2rem 0;
}

.podcast-platforms span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.platform-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.platform-icons img {
    height: 30px;
    width: auto;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

.platform-icons img:hover {
    filter: brightness(1.2) drop-shadow(0 0 10px currentColor);
    transform: scale(1.1);
}

.media-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 6rem 0;
    background: var(--deep-black);
    position: relative;
}

.newsletter-cta {
    padding: 6rem 0;
    background: linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.15)), url('../images/bar-prep-discovery-2.webp') center/cover;
    background-attachment: fixed;
    position: relative;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 2px solid rgba(0, 163, 255, 0.3);
    box-shadow: 0 0 50px rgba(0, 163, 255, 0.2), inset 0 0 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: all 0.3s ease;
}

.newsletter-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 70px rgba(0, 163, 255, 0.3), inset 0 0 30px rgba(0, 0, 0, 0.7);
    border-color: var(--accent-blue);
    background: rgba(0, 0, 0, 0.3);
}

.newsletter-form input[type="email"]:hover {
    background: rgba(0, 0, 0, 0.6) !important;
    border-color: var(--accent-glow) !important;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.7) !important;
    border-color: var(--accent-blue) !important;
    box-shadow: 0 0 20px rgba(0, 113, 227, 0.3);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem;
    border-radius: 24px;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.newsletter-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.newsletter-benefits {
    list-style: none;
}

.newsletter-benefits li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.newsletter-benefits li::before {
    content: '✓';
    color: var(--accent-glow);
    font-weight: bold;
    font-size: 1.25rem;
}

.newsletter-subscribe {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-subscribe input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--pure-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-subscribe input:focus {
    outline: none;
    border-color: var(--accent-glow);
    box-shadow: 0 0 20px rgba(0, 163, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-privacy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

@media (max-width: 768px) {
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .newsletter-subscribe {
        flex-direction: column;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background: linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.15)), url('../images/beta-program-2.webp') center/cover;
    background-attachment: fixed;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 113, 227, 0.2);
    border-color: var(--accent-glow);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-glow);
}

.testimonial-header h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--pure-white);
}

.testimonial-header p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-rating {
    font-size: 1.25rem;
    color: var(--accent-glow);
}

.beta-cta {
    text-align: center;
    margin-top: 3rem;
}

.beta-notice {
    font-size: 1.125rem;
    color: var(--accent-glow);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    background: linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.1)), url('../images/becoming-action-call-1.webp') center/cover;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 40%);
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.cta-content p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Beta Program Page - Minimal Apple-inspired Design */
.beta-hero-minimal {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 163, 255, 0.15) 0%, transparent 50%);
    animation: pulse-subtle 8s ease-in-out infinite;
}

@keyframes pulse-subtle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.hero-content {
    text-align: center;
    margin-bottom: 8rem;
    z-index: 2;
}

.beta-title {
    font-size: 10rem;
    font-weight: 200;
    letter-spacing: -0.05em;
    line-height: 0.9;
    background: linear-gradient(180deg, #fff 0%, #999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.beta-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    letter-spacing: 0.02em;
}

/* Minimal Countdown */
.countdown-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: absolute;
    bottom: 10vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

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

.countdown-value {
    font-size: 3rem;
    font-weight: 100;
    color: #fff;
    line-height: 1;
    font-family: 'SF Mono', 'Monaco', monospace;
    min-width: 80px;
}

.countdown-unit {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    text-transform: lowercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.beta-features {
    padding: 8rem 0;
    background: #080808;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.beta-benefits {
    padding: 8rem 0;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2)), url('../images/beta-program-2.webp') center/cover;
    background-attachment: fixed;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    text-align: left;
    background: transparent;
    border: none;
    padding: 0;
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.beta-application {
    padding: 8rem 0;
    background: #080808;
}

.application-form {
    max-width: 600px;
    margin: 4rem auto 0;
    padding: 0;
    background: transparent;
    border: none;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    display: block;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-glow);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.2);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

textarea.form-control {
    min-height: 100px;
}

@media (max-width: 768px) {
    .beta-application form > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

.form-control option {
    background: var(--deep-black);
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
}

/* Footer */
footer {
    background: var(--pure-black);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--pure-white);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social .social-icons {
    display: flex;
    gap: 1rem;
}

.footer-social .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.footer-social .social-icons a:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--accent-glow);
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--pure-white);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Social Media Icons */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 5px 15px rgba(0, 163, 255, 0.6));
}

.social-links svg {
    width: 24px;
    height: 24px;
}

/* Hero Logo Hover Effect */
.hero-logo:hover {
    filter: drop-shadow(0 30px 80px rgba(0, 163, 255, 0.9)) brightness(1.15) !important;
    transform: scale(1.05);
}

/* Division Logos in Hero */
.division-logos-container {
    margin-top: 3rem;
}

.division-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.division-logos-row:last-child {
    margin-bottom: 0;
}

.division-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.division-logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.9) drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
    cursor: pointer;
}

.division-logo img:hover {
    transform: scale(1.1);
    filter: brightness(1.1) drop-shadow(0 6px 20px rgba(0, 113, 227, 0.5));
}

/* Footer Logo Hover */
.footer-logo-section img {
    transition: all 0.3s ease;
}

.footer-logo-section img:hover {
    filter: drop-shadow(0 10px 40px rgba(0, 163, 255, 0.7)) brightness(1.1);
    transform: scale(1.05);
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--pure-white);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Responsive */
@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        gap: 2rem;
        z-index: 1001;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }
    
    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
    
    .nav-overlay.active {
        display: block;
    }
    .hero-container {
        text-align: center;
    }

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

    .hero-visual {
        height: 400px;
        margin-top: 3rem;
    }

    .nav-links {
        display: none;
    }

    .logo img {
        height: 60px;
    }

    .logo-text .tagline {
        display: none;
    }

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

    .timeline-item {
        flex-direction: column !important;
    }

    .timeline::before {
        left: 2rem;
    }

    .timeline-dot {
        left: 2rem;
    }
    
    /* Division logos on mobile */
    .division-logos-row {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .division-logo img {
        height: 60px;
    }
    
    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .footer-logo-section {
        text-align: center;
    }
    
    .footer-logo-section img {
        margin: 0 auto 1.5rem !important;
        display: block;
    }
    
    .footer-logo-section .social-links {
        justify-content: center !important;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center;
    }
}
/* Countdown Section */
.countdown-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.05) 0%, rgba(0, 163, 255, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.countdown-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.countdown-item {
    text-align: center;
    min-width: 60px;
}

.countdown-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent-glow);
    text-shadow: 0 0 15px rgba(0, 163, 255, 0.3);
    line-height: 1;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

.countdown-cta {
    margin-top: 1.5rem;
}

.countdown-features {
    margin-top: 3rem;
}

.countdown-features h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--pure-white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 163, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 163, 255, 0.1);
    border-color: var(--accent-glow);
}

.feature-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px currentColor);
}

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

/* Energy Ribbon Animation */
@keyframes energyFlow {
    0% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    50% {
        background-position: 100% 50%;
        filter: hue-rotate(30deg);
    }
    100% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        transparent 30%, 
        rgba(0, 163, 255, 0.1) 50%, 
        transparent 70%);
    background-size: 200% 200%;
    animation: energyFlow 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .countdown-timer {
        gap: 1.5rem;
    }
    
    .countdown-number {
        font-size: 3rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}
EOF < /dev/null


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 163, 255, 0.2);
}

.back-to-top:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 163, 255, 0.3);
    border-color: var(--accent-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}
