/* AIRadio.Host Landing Page - Complete CSS with UFO Phone Effect */

/* Universal Constants - Teal Arterial Palette */
:root {
    --deep-ocean: #0a1628;
    --midnight-blue: #1e3a5f;
    --arterial-teal: #16f4d0;
    --electric-cyan: #20e3b2;
    --soft-mint: #a8f5e4;
    --glass-white: rgba(255, 255, 255, 0.98);
    --frosted-glass: rgba(255, 255, 255, 0.08);
    --crystal-border: rgba(255, 255, 255, 0.15);
    --shadow-teal: rgba(22, 244, 208, 0.3);
    --apple-ease: cubic-bezier(0.42, 0, 0.58, 1);
    --glass-blur: 40px;
    --shine-gradient: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 60%);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Base */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--midnight-blue) 100%);
    color: var(--glass-white);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
}

/* Background Orbs */
body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

body::before {
    width: 600px;
    height: 600px;
    background: var(--arterial-teal);
    top: -200px;
    right: -200px;
    animation: float-orb 20s ease-in-out infinite;
}

body::after {
    width: 800px;
    height: 800px;
    background: var(--electric-cyan);
    bottom: -300px;
    left: -300px;
    animation: float-orb 25s ease-in-out infinite reverse;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Glass Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--frosted-glass);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--crystal-border);
    z-index: 9999;
    transition: all 0.4s var(--apple-ease);
}

nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--shine-gradient);
    opacity: 0.3;
    pointer-events: none;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    height: 50px;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s var(--apple-ease);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--arterial-teal);
    transition: width 0.3s var(--apple-ease);
}

.nav-links a:hover {
    color: var(--glass-white);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section with Phone */
.hero {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Left Side - Content */
.hero-content {
    padding-right: 2rem;
}

.hero-tagline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--glass-white) 0%, var(--arterial-teal) 50%, var(--electric-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { 
        background-size: 200% 200%;
        background-position: left center;
    }
    50% { 
        background-size: 200% 200%;
        background-position: right center;
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--soft-mint);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.125rem;
    opacity: 0.85;
    margin-bottom: 3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description p {
    margin-bottom: 0.75rem;
}

/* CTA Section */
.cta-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.glass-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--arterial-teal), var(--electric-cyan));
    color: var(--deep-ocean);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 980px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--apple-ease);
    box-shadow: 
        0 4px 24px var(--shadow-teal),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
}


.glass-cta2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 3rem; 
    color: linear-gradient(135deg, var(--arterial-teal), var(--electric-cyan));
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 980px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--apple-ease);
    box-shadow: 
        0 4px 24px var(--shadow-teal),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
}

.glass-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.glass-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s var(--apple-ease);
    opacity: 0;
}

.glass-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 32px var(--shadow-teal),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.glass-cta:hover::after {
    opacity: 1;
    transform: rotate(45deg) translateX(100%);
}

.android-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.5rem 1rem;
    background: var(--frosted-glass);
    border-radius: 20px;
    border: 1px solid var(--crystal-border);
    margin-top: 0.5rem;
}

/* Right Side - Phone Mockup UFO Style */
.phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    perspective: 1000px;
}

/* Phone UFO container */
.phone-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* UFO Phone */
.iphone {
    width: 320px;
    height: 640px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 
        0 10px 50px rgba(22, 244, 208, 0.2),
        0 20px 100px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1),
        0 0 120px rgba(22, 244, 208, 0.1);
    position: relative;
    transform-style: preserve-3d;
    transition: none;
    will-change: transform;
    /* Initial floating position */
    transform: translateY(0) rotateX(5deg) rotateY(-15deg);
}

/* Glowing effect for UFO look */
.iphone::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(
        ellipse at center,
        rgba(22, 244, 208, 0.15) 0%,
        rgba(22, 244, 208, 0.05) 40%,
        transparent 70%
    );
    border-radius: 50px;
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* UFO Shadow */
.phone-shadow {
    position: absolute;
    bottom: -100px;
    width: 280px;
    height: 80px;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(40px);
    transform-origin: center center;
    transition: none;
    will-change: transform, filter, opacity;
    z-index: -1;
}

/* Light beams from phone (subtle UFO effect) */
.light-beams {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 600px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.05;
    z-index: -2;
}

.light-beams::before,
.light-beams::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(22, 244, 208, 0.3) 50%,
        transparent 100%
    );
    transform: translateX(-50%) scaleY(1.5);
    animation: beam-scan 8s linear infinite;
}

.light-beams::after {
    animation-delay: 4s;
    width: 1px;
    opacity: 0.5;
}

@keyframes beam-scan {
    0% { transform: translateX(-50%) rotate(0deg) scaleY(1.5); }
    100% { transform: translateX(-50%) rotate(360deg) scaleY(1.5); }
}

/* Remove hover transform from iphone since we're handling it with JS */
.iphone:hover {
    transform: none;
}

/* Phone Screen */
.iphone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

/* Notch */
.notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

/* App Interface */
.app-interface {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
    padding: 50px 20px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* App Header */
.app-header {
    text-align: center;
    margin-bottom: 2rem;
}

.app-logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--arterial-teal), var(--electric-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.app-tagline {
    font-size: 0.75rem;
    color: var(--soft-mint);
    opacity: 0.8;
}

/* Live Badge in App */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    margin-top: 0.5rem;
    font-size: 0.625rem;
    color: #ef4444;
}

.live-dot-app {
    width: 6px;
    height: 6px;
    background: #ef4444;
    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); }
}

/* Station Cards in App */
.app-stations {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
}

.app-station {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.app-station:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.station-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--arterial-teal), var(--electric-cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.station-info {
    flex: 1;
}

.station-name-app {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.station-desc-app {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.6);
}

.play-button {
    width: 36px;
    height: 36px;
    background: var(--arterial-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(22, 244, 208, 0.5);
}

.play-button::before {
    content: '▶';
    color: var(--deep-ocean);
    font-size: 0.75rem;
    margin-left: 2px;
}

/* Bottom Navigation */
.app-nav {
    display: flex;
    justify-content: space-around;
    padding: 1rem 0 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.app-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.625rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

.app-nav-item:hover {
    color: rgba(255, 255, 255, 0.8);
}

.app-nav-item.active {
    color: var(--arterial-teal);
}

.nav-icon {
    width: 24px;
    height: 24px;
    background: currentColor;
    -webkit-mask-size: contain;
    mask-size: contain;
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    background: var(--frosted-glass);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 10;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--arterial-teal);
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Stations Section - Postcard Style */
.stations {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
}

.stations-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stations h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.station-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
}

/* Postcard Style Station Cards */
.station-postcard {
    position: relative;
    height: 280px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: all 0.4s var(--apple-ease);
    text-decoration: none;
    color: inherit;
    display: block;
}

.station-postcard:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.station-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s var(--apple-ease);
}

.station-postcard:hover .station-bg {
    transform: scale(1.1);
}

.station-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

.station-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 3;
    transform: translateY(20px);
    transition: transform 0.4s var(--apple-ease);
}

.station-postcard:hover .station-content {
    transform: translateY(0);
}

.station-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--glass-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.station-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    opacity: 0;
    transition: opacity 0.4s var(--apple-ease) 0.1s;
}

.station-postcard:hover .station-description {
    opacity: 1;
}

.play-indicator {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--frosted-glass);
    backdrop-filter: blur(20px);
    border: 2px solid var(--crystal-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s var(--apple-ease);
}

.station-postcard:hover .play-indicator {
    opacity: 1;
    transform: scale(1);
}

.play-indicator::before {
    content: '▶';
    color: var(--arterial-teal);
    font-size: 1.25rem;
    margin-left: 4px;
}


.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24rem;
    align-items: center;
    min-height: 70vh;
}

.hero-massive-title {
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 0.9;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.hero-massive-title .highlight {
    background: linear-gradient(135deg, #16f4d0 0%, #16a085 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #f4f4f4;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.primary-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #16a085 0%, #138a76 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 160, 133, 0.3);
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 160, 133, 0.4);
}

.cta-icon {
    font-size: 2rem;
}

.cta-text strong {
    display: block;
    font-size: 1.1rem;
}

.cta-text small {
    opacity: 0.9;
    font-size: 0.85rem;
}

.secondary-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: #fff; background: linear-gradient(135deg, #16a085 0%, #138a76 100%);
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    border-color: #16a085;
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 2rem;
    color: #16a085;
}

.stat span {
    font-size: 0.9rem;
    color: #666;
}

/* Console Preview Styles */
.console-preview {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    font-family: 'Monaco', 'Consolas', monospace;
}

.console-header {
    background: #2a2a2a;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.console-title {
    color: #888;
    font-size: 0.85rem;
}

.console-controls {
    display: flex;
    gap: 0.5rem;
}

.console-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f57;
}

.console-controls span:nth-child(2) {
    background: #ffbd2e;
}

.console-controls span:nth-child(3) {
    background: #28ca42;
}

.console-content {
    padding: 1.5rem;
    font-size: 0.9rem;
}

.console-content pre {
    margin: 0;
    line-height: 1.6;
}

.console-cyan { color: #61dafb; }
.console-green { color: #50fa7b; }
.console-yellow { color: #f1fa8c; }
.console-white { color: #f8f8f2; }
.console-dim { color: #6272a4; }

.console-pulse {
    color: #ff5555;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Ticker */
.hero-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(22, 160, 133, 0.1);
    border-top: 1px solid rgba(22, 160, 133, 0.2);
    padding: 0.75rem;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    gap: 2rem;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-massive-title {
        font-size: 3.5rem;
    }
    
    .console-preview {
        max-width: 100%;
    }
}

/* About Section */
.about {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--frosted-glass);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--crystal-border);
    border-radius: 32px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.about-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--shine-gradient);
    opacity: 0.1;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    position: relative;
}

.about-content {
    position: relative;
}

.about-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.8;
    font-size: 1.125rem;
}

/* Truth Section */
.truth {
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.truth-container {
    max-width: 800px;
    margin: 0 auto;
}

.truth h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--arterial-teal);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.truth-statement {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.truth-statement strong {
    color: var(--soft-mint);
    font-weight: 700;
}

/* Footer */
footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid var(--crystal-border);
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    height: 80px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-text {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        padding-right: 0;
        order: 2;
    }

    .phone-mockup {
        order: 1;
        margin-bottom: 2rem;
    }

    .iphone {
        transform: translateY(0) rotateX(5deg) rotateY(0);
        width: 280px;
        height: 560px;
    }
    
    .phone-shadow {
        width: 240px;
        height: 60px;
        bottom: -80px;
    }
    
    /* Disable floating on mobile */
    .light-beams {
        display: none;
    }

    .cta-section {
        align-items: center;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .station-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .logo {
        height: 40px;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.875rem;
    }

    .hero {
        padding: 6rem 1rem 2rem;
    }

    .glass-cta {
        width: 100%;
        max-width: 400px;
    }

    .about-container {
        padding: 2.5rem 1.5rem;
        margin: 0 1rem;
    }

    .stations h2,
    .about h2,
    .truth h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
    }

    .station-postcard {
        height: 240px;
    }

    .station-title {
        font-size: 1.5rem;
    }

    .footer-logo {
        height: 60px;
    }
}