/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: rgb(244, 242, 234);
    --fg-color: rgb(15, 23, 94);
    --accent-color: rgba(15, 23, 94, 0.1);
    --hover-color: rgba(15, 23, 94, 0.8);
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --font-primary: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --shadow-subtle: 0 4px 6px -1px rgba(15, 23, 94, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(15, 23, 94, 0.1);
    --shadow-strong: 0 20px 25px -5px rgba(15, 23, 94, 0.1);
}

body {
    background-color: var(--bg-color);
    color: var(--fg-color);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.hidden {
    display: none !important;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 94, 0.95);
    color: var(--bg-color);
    padding: 1.5rem;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--fg-color);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-primary, .btn-secondary, .btn-tertiary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background: transparent;
    color: var(--bg-color);
    border: 2px solid var(--bg-color);
}

.btn-tertiary {
    background: transparent;
    color: var(--bg-color);
    text-decoration: underline;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary:hover, .btn-tertiary:hover {
    background: rgba(244, 242, 234, 0.1);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(244, 242, 234, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 100;
    border-bottom: 1px solid rgba(15, 23, 94, 0.1);
}

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

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

.logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(15, 23, 94, 0.1));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fg-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--fg-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--hover-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fg-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

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

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

/* Hero Logo */
.hero-logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-logo-wrapper:hover {
    transform: scale(1.05);
}

.hero-logo-image {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(15, 23, 94, 0.2));
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.hero-logo-wrapper:hover .hero-logo-image {
    filter: drop-shadow(0 15px 40px rgba(15, 23, 94, 0.3)) brightness(1.1);
}

.logo-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border: 2px solid var(--fg-color);
    border-radius: 50%;
    opacity: 0;
    animation: logo-pulse 3s infinite;
}

.logo-pulse-ring.delay-1 {
    animation-delay: 1s;
}

.logo-pulse-ring.delay-2 {
    animation-delay: 2s;
}

.logo-tagline {
    background: rgba(15, 23, 94, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 25px;
    border: 1px solid rgba(15, 23, 94, 0.1);
    position: relative;
    max-width: 400px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-subtle);
}

.logo-tagline::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid rgba(15, 23, 94, 0.05);
}

#logo-message {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    color: var(--fg-color);
}

/* Hero Text */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-line.adaptive {
    background: linear-gradient(135deg, var(--fg-color), var(--hover-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary {
    background: var(--fg-color);
    color: var(--bg-color);
}

.cta-secondary {
    background: transparent;
    color: var(--fg-color);
    border: 2px solid var(--fg-color);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.cta-secondary:hover {
    background: var(--accent-color);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--fg-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-random var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

/* Podcast Section - High Specificity */
section.podcast-section,
.podcast-section,
#podcast {
    padding: 8rem 2rem !important;
    background: #f4f2ea !important; /* Fallback for var(--bg-color) */
    background: linear-gradient(135deg, var(--bg-color, #f4f2ea) 0%, rgba(15, 23, 94, 0.05) 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

.podcast-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(15,23,94,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(15,23,94,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(15,23,94,0.06)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.podcast-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: transparent;
}

.podcast-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.podcast-showcase {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

/* Podcast Unified Container - High Specificity */
.podcast-section .podcast-unified,
section.podcast-section .podcast-unified,
#podcast .podcast-unified {
    background: #f4f2ea !important; /* Fallback */
    background: var(--bg-color, #f4f2ea) !important;
    padding: 3rem !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 94, 0.1) !important; /* Fallback */
    box-shadow: var(--shadow-medium, 0 10px 15px -3px rgba(15, 23, 94, 0.1)) !important;
    border: 1px solid rgba(15, 23, 94, 0.1) !important;
    max-width: 800px !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
}

.podcast-unified::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1DB954, #ff6b35);
    opacity: 0.7;
}

.podcast-description {
    margin-bottom: 2.5rem;
}

.podcast-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #0f175e; /* Fallback */
    color: var(--fg-color, #0f175e);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    text-align: center;
}

.podcast-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.podcast-listen {
    text-align: center;
}

.podcast-listen h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0f175e; /* Fallback */
    color: var(--fg-color, #0f175e);
    margin-bottom: 1.5rem;
}

.platform-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

/* Platform Links - High Specificity */
.podcast-section .platform-link,
section.podcast-section .platform-link,
#podcast .platform-link {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 1rem 1.5rem !important;
    background: linear-gradient(135deg, rgba(15, 23, 94, 0.05), rgba(15, 23, 94, 0.1)) !important;
    border: 2px solid transparent !important;
    border-radius: 16px !important;
    text-decoration: none !important;
    color: #0f175e !important; /* Fallback */
    color: var(--fg-color, #0f175e) !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    min-width: 180px !important;
    justify-content: center !important;
}

.platform-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.platform-link:hover::before {
    left: 100%;
}

.platform-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(15, 23, 94, 0.2);
}

.platform-link.apple-podcasts:hover {
    background: linear-gradient(135deg, rgba(255, 45, 85, 0.1), rgba(255, 45, 85, 0.15));
    color: #ff2d55;
}

.platform-link.spotify:hover {
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.1), rgba(29, 185, 84, 0.15));
    color: #1db954;
}

.platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(15, 23, 94, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.platform-link:hover .platform-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.latest-episode {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(15, 23, 94, 0.03), rgba(15, 23, 94, 0.08));
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 94, 0.08);
    max-width: 500px;
    margin: 0 auto;
}

.latest-episode h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--fg-color);
    margin-bottom: 0.75rem;
    text-align: center;
}

.latest-episode p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--fg-color);
    opacity: 0.8;
    margin-bottom: 0.5rem;
    text-align: center;
}

.latest-episode p strong {
    color: var(--fg-color);
    opacity: 1;
    font-weight: 600;
}

/* Mobile Responsiveness for Podcast Section */
@media (max-width: 768px) {
    .podcast-section {
        padding: 4rem 1rem;
    }
    
    .podcast-unified {
        padding: 2rem;
        max-width: 100%;
    }
    
    .platform-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .platform-link {
        min-width: 200px;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .podcast-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .podcast-unified {
        padding: 1.5rem;
    }
    
    .podcast-listen h4 {
        font-size: 1.2rem;
    }
    
    .platform-link {
        min-width: 180px;
        font-size: 0.9rem;
    }
}

/* Demo Section */
.demo-section {
    padding: 5rem 0;
    background: rgba(15, 23, 94, 0.05);
}

.demo-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.demo-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.demo-interface {
    background: var(--fg-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-strong);
}

.demo-screen {
    background: #000;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    min-height: 200px;
    font-family: var(--font-mono);
    text-align: left;
}

.demo-output {
    color: #00ff00;
    font-size: 0.9rem;
}

.output-line {
    margin-bottom: 0.5rem;
}

.typing::after {
    content: '|';
    animation: cursor-blink 1s infinite;
}

.demo-controls {
    display: flex;
    gap: 1rem;
}

.demo-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: var(--bg-color);
    color: var(--fg-color);
    font-size: 1rem;
}

.demo-button {
    padding: 1rem 1.5rem;
    background: var(--bg-color);
    color: var(--fg-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.demo-button:hover {
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: 5rem 0;
}

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

.features-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(15, 23, 94, 0.05);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--fg-color);
}

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

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Footer */
.main-footer {
    background: var(--fg-color);
    color: var(--bg-color);
    padding: 3rem 0 1rem;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-logo-img {
    height: 30px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: var(--bg-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(244, 242, 234, 0.2);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes blink {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0; }
}

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

@keyframes logo-pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    50% { opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float-random {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(100px, -100px) rotate(90deg); }
    50% { transform: translate(-50px, -200px) rotate(180deg); }
    75% { transform: translate(-100px, -50px) rotate(270deg); }
}

@keyframes cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes ripple {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 400px; height: 400px; opacity: 0; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-logo-image {
        width: 200px;
    }
    
    .logo-pulse-ring {
        width: 220px;
        height: 220px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .demo-controls {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* About Section Styles */
.about-section {
    padding: 5rem 0;
    background: rgba(15, 23, 94, 0.02);
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--fg-color);
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.team-container, .vision-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.team-member {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(15, 23, 94, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.member-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--fg-color);
}

.member-role {
    font-size: 1rem;
    font-weight: 500;
    color: var(--hover-color);
    margin-bottom: 0.5rem;
}

.member-email {
    font-size: 0.9rem;
    color: var(--fg-color);
    opacity: 0.7;
    margin-bottom: 1rem;
    font-family: var(--font-mono);
}

.member-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

.vision-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--fg-color);
}

.vision-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vision-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.vision-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(15, 23, 94, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 94, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--fg-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 500;
}

/* Contact Section Styles */
.contact-section {
    padding: 5rem 0;
    background: var(--bg-color);
}

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

.ai-contact-interface {
    background: rgba(15, 23, 94, 0.02);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(15, 23, 94, 0.1);
    box-shadow: var(--shadow-subtle);
}

.ai-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(15, 23, 94, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 94, 0.1);
}

.status-indicator {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-details {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    opacity: 0.7;
}

.ai-greeting {
    margin-bottom: 2rem;
}

.ai-greeting h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--fg-color);
}

.ai-greeting p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ai-note {
    font-style: italic;
    opacity: 0.8;
    font-size: 0.95rem;
}

.contact-form {
    margin-bottom: 3rem;
}

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

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--fg-color);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(15, 23, 94, 0.1);
    border-radius: 8px;
    background: var(--bg-color);
    color: var(--fg-color);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--fg-color);
}

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

.privacy-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.privacy-consent input[type="checkbox"] {
    margin-top: 0.2rem;
}

.privacy-consent a {
    color: var(--fg-color);
    text-decoration: underline;
}

.form-submit {
    background: var(--fg-color);
    color: var(--bg-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-alternatives {
    margin-bottom: 2rem;
}

.contact-alternatives h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--fg-color);
}

.contact-methods {
    display: grid;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(15, 23, 94, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 94, 0.1);
}

.method-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-details strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--fg-color);
}

.method-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

.method-details ul {
    list-style: none;
    padding: 0;
}

.method-details li {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    font-family: var(--font-mono);
}

.ai-signature {
    text-align: center;
    opacity: 0.8;
    font-style: italic;
}

.signature-animation {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.signature-dot {
    width: 8px;
    height: 8px;
    background: var(--fg-color);
    border-radius: 50%;
    animation: signature-pulse 1.5s infinite;
}

.signature-dot:nth-child(2) {
    animation-delay: 0.5s;
}

.signature-dot:nth-child(3) {
    animation-delay: 1s;
}

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

.response-container h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--fg-color);
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.response-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(15, 23, 94, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 94, 0.1);
}

.response-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--fg-color);
}

.response-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Privacy Section Styles */
.privacy-section {
    padding: 5rem 0;
    background: rgba(15, 23, 94, 0.02);
}

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

.privacy-content {
    background: var(--bg-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(15, 23, 94, 0.1);
}

.privacy-content h3, .privacy-content h4 {
    color: var(--fg-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-content h3 {
    font-size: 1.5rem;
}

.privacy-content h4 {
    font-size: 1.2rem;
}

.privacy-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.privacy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.gdpr-highlight {
    background: rgba(15, 23, 94, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 94, 0.1);
    margin: 1.5rem 0;
}

.gdpr-highlight h3, .gdpr-highlight h4 {
    margin-top: 0;
    color: var(--fg-color);
}

/* Additional Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes signature-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stat {
        flex: 1;
        margin: 0 0.5rem;
    }
    
    .response-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .ai-contact-interface {
        padding: 2rem;
    }
    
    .privacy-content {
        padding: 2rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-container, .team-container, .vision-container, .contact-container, .privacy-container {
        padding: 0 1rem;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .vision-stats {
        flex-direction: column;
    }
    
    .ai-contact-interface {
        padding: 1.5rem;
    }
    
    .privacy-content {
        padding: 1.5rem;
    }
} 

/* AI Agents Section Styles */
.ai-agents-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(15, 23, 94, 0.02), rgba(15, 23, 94, 0.05));
    position: relative;
    overflow: hidden;
}

.ai-agents-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(15, 23, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(15, 23, 94, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.ai-agents-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--fg-color);
    background: linear-gradient(135deg, var(--fg-color), var(--hover-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.agents-intro {
    text-align: center;
    margin-bottom: 4rem;
}

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

.agent-category {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(15, 23, 94, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.agent-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fg-color), var(--hover-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.agent-category:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.agent-category:hover::before {
    transform: scaleX(1);
}

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

.category-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, rgba(15, 23, 94, 0.1), rgba(15, 23, 94, 0.2));
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
}

.category-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--fg-color);
    margin: 0;
}

.agent-category p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.agent-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Feature Tags - High Specificity */
.podcast-section .feature-tag,
section.podcast-section .feature-tag,
#podcast .feature-tag {
    background: rgba(15, 23, 94, 0.1) !important;
    color: #0f175e !important; /* Fallback */
    color: var(--fg-color, #0f175e) !important;
    padding: 0.4rem 0.8rem !important;
    border-radius: 20px !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    border: 1px solid rgba(15, 23, 94, 0.15) !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.feature-tag:hover {
    background: rgba(15, 23, 94, 0.15);
    transform: translateY(-1px);
} 

/* Mobile Responsive Updates for AI Agents */
@media (max-width: 768px) {
    .ai-agents-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .agents-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .agent-category {
        padding: 2rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .category-icon {
        font-size: 2rem;
        min-width: 50px;
        height: 50px;
        padding: 0.8rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .ai-agents-container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .agents-intro {
        margin-bottom: 2.5rem;
    }
    
    .agent-category {
        padding: 1.5rem;
    }
    
    .category-header h3 {
        font-size: 1.2rem;
    }
} 

/* Demo Contact Button Styles */
.demo-contact-container {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(15, 23, 94, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 94, 0.1);
    animation: fadeInUp 0.5s ease-out;
}

.demo-contact-prompt {
    text-align: center;
}

.demo-contact-prompt p {
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--fg-color);
}

.demo-contact-btn {
    background: var(--fg-color);
    color: var(--bg-color);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-subtle);
}

.demo-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 