:root {
    /* Colors - Deep Midnight Blue Theme */
    --bg-body: #050505;
    --bg-card: rgba(20, 20, 30, 0.4);
    --bg-card-hover: rgba(30, 30, 45, 0.5);
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --primary-accent: #a855f7;
    --secondary-accent: #d946ef;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glow-shadow: 0 0 20px rgba(168, 85, 247, 0.2);

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-body);
    /* Dark blue/purple gradient background with subtle animation overlay */
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Subtle ambient overlay animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 5, 16, 0.3) 0%, rgba(168, 85, 247, 0.05) 50%, rgba(10, 5, 16, 0.3) 100%);
    background-size: 200% 200%;
    animation: ambientGradient 20s ease infinite;
    pointer-events: none;
    z-index: 0;
}

body>* {
    position: relative;
    z-index: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.text-gradient {
    background: linear-gradient(to right, #fff, #e9d5ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(10, 5, 16, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    border: none;
    border-radius: 99px;
    padding: 10px 24px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--glow-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
}

.btn-secondary {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 99px;
    padding: 10px 24px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-left: 10px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* App Store Button */
.btn-appstore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 10px 22px 10px 18px;
    color: white;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
}

.btn-appstore:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-appstore .appstore-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-appstore .appstore-label {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.btn-appstore .appstore-sublabel {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    opacity: 0.85;
}

.btn-appstore .appstore-mainlabel {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.btn-appstore.btn-appstore-sm {
    padding: 8px 18px 8px 14px;
    border-radius: 10px;
}

.btn-appstore.btn-appstore-sm .appstore-icon {
    width: 20px;
    height: 20px;
}

.btn-appstore.btn-appstore-sm .appstore-sublabel {
    font-size: 0.55rem;
}

.btn-appstore.btn-appstore-sm .appstore-mainlabel {
    font-size: 1rem;
}

.btn-appstore.full-width {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    text-align: center;
    position: relative;
}

.hero-logo {
    height: 120px;
    width: auto;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.4));
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.dashboard-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(148, 163, 184, 0.9);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-visual {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    perspective: 1000px;
    /* Essential for 3D context */
}

/* 3D Dashboard Styles */
.hero-3d-container {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.dashboard-3d-wrapper {
    position: relative;
    width: 100%;
    transform-style: preserve-3d;
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) translateY(0);
    transition: transform 0.1s ease-out;
    /* Smooth JS scrolling */
}

.dashboard-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    display: block;
}

.dashboard-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%) translateZ(-50px);
    background: radial-gradient(circle, rgba(168, 85, 247, 0.5) 0%, rgba(59, 130, 246, 0.2) 60%, transparent 100%);
    filter: blur(50px);
    border-radius: 50%;
    z-index: -1;
}

@keyframes float-dashboard {

    0%,
    100% {
        transform: rotateX(20deg) rotateY(0deg) rotateZ(0deg) translateY(0);
    }

    50% {
        transform: rotateX(22deg) rotateY(0deg) rotateZ(0deg) translateY(-20px);
    }
}

/* Ambient Gradient Animation */
@keyframes ambientGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Trust Signals Section */
.trust-signals {
    padding: 120px 20px 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 90px;
}

.trust-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.trust-number {
    font-size: 6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    line-height: 1;
}

.trust-label {
    font-size: 1.4rem;
    color: rgba(148, 163, 184, 0.9);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.trust-integrations {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.integrations-label {
    font-size: 1rem;
    color: rgba(148, 163, 184, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.integration-logos {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.integration-logo {
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.integration-logo:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(168, 85, 247, 0.4);
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(168, 85, 247, 0.25);
}

blockquote.testimonial-card {
    margin: 0;
}

.testimonial-card {
    max-width: 900px;
    padding: 60px 55px;
    border-radius: 28px;
    background: rgba(20, 20, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-author cite {
    font-style: normal;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: white;
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.author-title {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Features Section - Bento Grid */
.features {
    padding: 120px 20px;
    overflow: hidden;
}

.features-header {
    text-align: center;
    margin-bottom: 100px;
}

.features-header h2,
.features-header h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    font-family: var(--font-sans);
    letter-spacing: -0.01em;
}

.features-header p {
    font-size: 1.2rem;
    color: rgba(148, 163, 184, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* 2/3 for Analytics, 1/3 for Action Hub */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-span-full {
    grid-column: 1 / -1;
}

/* Bento Grid Responsive Breakpoints */
@media (max-width: 1100px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .bento-card h3 {
        font-size: 1.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Reset all multi-column spans in single-column layout */
    .use-case-wide-card,
    .meeting-library-container,
    .grid-span-full {
        grid-column: 1 !important;
    }

    /* Stack meeting library vertically */
    .lib-dashboard {
        flex-direction: column !important;
    }

    .lib-sidebar {
        width: 100% !important;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 16px !important;
    }

    .sidebar-group {
        margin-bottom: 0;
    }

    .sidebar-nav {
        gap: 6px;
    }

    .sidebar-nav li {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .meeting-item {
        padding: 16px;
    }

    .meeting-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .search-bar {
        width: 100% !important;
    }

    .meeting-library-container {
        min-height: auto;
        padding: 16px;
    }

    .lib-content {
        padding: 16px;
    }

    .lib-header {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .lib-header .btn-primary {
        text-align: center;
    }

    /* Fix 3D card containers */
    .cards-3d-wrapper {
        height: auto;
        perspective: none;
        gap: 16px;
    }

    .float-card {
        position: relative;
        transform: none !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .float-card:hover {
        transform: translateY(-5px) !important;
    }

    /* Prevent content overflow on mobile */
    .bento-card {
        overflow: hidden;
    }

    .action-hub-container,
    .share-3d-container {
        padding: 20px;
        overflow: hidden;
    }

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

    .stat-box {
        min-width: 0;
    }

    .topic-pill {
        flex: 0 1 auto;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        gap: 16px;
    }

    .bento-card {
        padding: 24px;
    }

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

@media (max-width: 600px) {
    .bento-card {
        padding: 20px;
    }

    .bento-card h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }
}

.bento-card {
    border-radius: 24px;
    padding: 30px;
    position: relative;
    max-width: 100%;
}

.card-header {
    margin-bottom: 30px;
    z-index: 2;
    position: relative;
}

.card-header h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}

.card-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

/* Card 1: Speaker Analytics (Glassmorphism) */
.speaker-analytics {
    background: rgba(20, 20, 30, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.analytics-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.timeline-track {
    display: flex;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: visible;
    position: relative;
    align-items: center;
    padding: 0 5px;
}

.timeline-segment {
    height: 40px;
    border-radius: 8px;
    margin: 0 2px;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s, filter 0.2s;
}

.timeline-segment:hover {
    transform: scaleY(1.1);
    filter: brightness(1.2);
    z-index: 10;
}

/* Speaker Colors */
.speaker-a {
    background: #3b82f6;
}

.speaker-b {
    background: #10b981;
}

.speaker-c {
    background: #f59e0b;
}

.segment-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.6);
}

/* Tooltips for Transcripts */
.segment-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 8px;
    /* Fixed width for stability in Safari */
    width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    /* Safari Fixes */
    -webkit-font-smoothing: antialiased;
    white-space: normal;
    word-wrap: break-word;
    margin-left:-50%;
}

.timeline-segment:hover .segment-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-15px);
}

/* Speaker Stats Bento Mini-Grid */
.speaker-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    /* Tighter radius like sidebar items */
    padding: 10px 16px;
    display: flex;
    flex-direction: row;
    /* Horizontal layout like "All Meetings ... 29" */
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s, transform 0.2s;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.1);
}

.stat-label {
    font-size: 0.75rem;
    color: #cbd5e1;
    /* Brighter text */
    font-weight: 500;
    margin-bottom: 0;
    /* Removing bottom margin for row layout */
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 0.75rem;
    color: #fff;
    font-family: var(--font-mono);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    /* Badge style */
    padding: 2px 8px;
    border-radius: 12px;
    min-width: 24px;
    text-align: center;
}

/* Tooltip Styling for Stats */
.has-tooltip {
    position: relative;
    cursor: help;
}

.info-icon {
    font-size: 0.8em;
    opacity: 0.7;
    margin-left: 4px;
}

.stat-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 10, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 400;
    width: 200px;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    display: none;
    /* Force hide */
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.has-tooltip:hover .stat-tooltip {
    opacity: 1;
    visibility: visible;
    display: block;
    /* Force show */
    transform: translateX(-50%) translateY(-10px);
}

/* Analytics Bottom Grid (Stats + Key Topics) */
/* Wrapper removed in HTML, styles deprecated */

.speaker-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}

/* Key Topics Styling */
.key-topics-container {
    background: rgba(20, 20, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.topics-header {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-tag {
    font-size: 1rem;
}

.topics-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.topic-pill {
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
    letter-spacing: 0.3px;
    flex: 1 1 auto;
    /* Responsive growing like buttons */
    text-align: center;
    transition: transform 0.2s, background 0.2s;
    cursor: default;
}

.topic-pill:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
}

.pill-purple {
    background: rgba(168, 85, 247, 0.2);
    color: #d8b4fe;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.pill-green {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.pill-red {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.pill-indigo {
    background: rgba(99, 102, 241, 0.2);
    color: #c7d2fe;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

@media (max-width: 768px) {
    .analytics-bottom-grid {
        grid-template-columns: 1fr;
    }
}

/* ... existing styles ... */

/* Card 2: Action Hub (3D Tilt) */
.action-hub-container {
    perspective: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Transparent background to let floating cards pop */
    background: transparent;
    border: none;
    padding: 0;
}

.cards-3d-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* Safari Stability */
    transform: translateZ(0);
    z-index: 10;
}

.float-card {
    width: 280px;
    background: rgba(30, 30, 45, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.27), border-color 0.3s;
    transform: translate3d(0, 0, 0);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5), -1px -1px 0 rgba(255, 255, 255, 0.1);
    cursor: pointer;
    /* Safari Flickering Fixes */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    transform-style: preserve-3d;
    z-index: 1;
}

.float-card:hover {
    z-index: 100;
    /* Ensure hovered card pops above others */
}

/* Specific Positions - Aligned Vertically */
.action-card,
.decision-card,
.blocker-card {
    /* No specific offsets, just base style */
    z-index: 1;
}

/* Hover Effects */
.float-card:hover {
    transform: translate3d(0, 0, 50px) scale(1.05);
    /* Use translate3d for GPU */
    border-color: var(--primary-accent);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
    z-index: 100;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.check-icon {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.star-icon {
    background: rgba(234, 179, 8, 0.2);
    color: #facc15;
}

.alert-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

/* Live Meeting Sharing Icons */
.transcript-icon {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.chat-icon {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
}

.stream-icon {
    background: rgba(244, 63, 94, 0.2);
    color: #fb7185;
}

.card-content h4 {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 4px;
}

.mono-list {
    list-style: none;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mono-list li::before {
    content: "> ";
    color: var(--primary-accent);
}

/* Meeting Library Styles */
.meeting-library-container {
    grid-column: 1 / -1;
    background: rgba(15, 10, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.lib-dashboard {
    background: #111116;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex: 1;
    display: flex;
    overflow: hidden;
}

.lib-sidebar {
    width: 240px;
    background: rgba(20, 20, 25, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-title {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

.sidebar-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-nav li {
    font-size: 0.9rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.sidebar-nav li.active,
.sidebar-nav li:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.badge {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
}

.dot-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.color-blue {
    background: #3b82f6;
}

.color-green {
    background: #10b981;
}

.color-red {
    background: #ef4444;
}

.lib-content {
    flex: 1;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.05), transparent 40%);
}

.lib-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.search-bar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 400px;
    max-width: 100%;
}

.search-bar input {
    background: transparent;
    border: none;
    color: #fff;
    width: 100%;
    outline: none;
    font-family: var(--font-sans);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.meeting-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
}

.meeting-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.meeting-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(168, 85, 247, 0.3);
}

.meeting-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.meeting-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.meeting-time {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-family: var(--font-mono);
}

.meeting-summary {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.meeting-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 15px;
    align-items: center;
}

.tag {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

.tag-red {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.tag-green {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

.tag-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    display: flex;
    align-items: center;
    gap: 4px;
}

.text-red {
    color: #f87171;
}

/* Small mobile sidebar stays stacked vertically */
@media (max-width: 600px) {
    .lib-sidebar {
        flex-direction: column;
        gap: 20px;
    }
}

/* --- New Bento Cards (Row 2) --- */

/* Live Recording Card */
.live-recording-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    padding: 30px;
    /* Restored padding for standard card feel */
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 400px;
    gap: 20px;
}

.recording-interface {
    flex: 1;
    background: transparent;
    display: flex;
    flex-direction: column;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    border-radius: 12px;
    /* Slight roundness for the interface container */
    overflow: hidden;
    border: none;
}

.live-recording-card {
    display: flex;
    flex-direction: column;
}

/* Phone Header */
.rec-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(10, 5, 20, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 2;
}

.rec-status {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.rec-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-red 2s infinite;
}

.rec-title {
    font-weight: 600;
    color: #e5e5e5;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.rec-time {
    font-family: var(--font-mono);
    color: #ef4444;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Transcript Area */
.rec-transcript {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: transparent;
    margin-left: -20px;
}

.chat-bubble {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
    color: #e5e5e5;
    align-self: flex-start;
    /* Force all to left */
}

.chat-bubble.received {
    background: rgba(30, 20, 40, 0.5);
    backdrop-filter: blur(8px);
}

.chat-bubble.sent {
    background: rgba(40, 30, 50, 0.6);
    backdrop-filter: blur(8px);
    color: #fff;
    /* Removed align-self: flex-end */
}

.bubble-avatar {
    font-size: 0.75rem;
    color: #a3a3a3;
    margin-bottom: 6px;
    font-weight: 600;
}

/* Floating Buttons */
.chat-buttons {
    position: absolute;
    bottom: 20px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 5;
}

.rec-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(40, 40, 50, 0.9);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: transform 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rec-btn:hover {
    transform: scale(1.1);
}

.add-btn {
    background: #eab308;
    color: #000;
    font-weight: bold;
}

/* Live Sharing Card */
.live-sharing-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.sharing-visual {
    width: 100%;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-node {
    width: 12px;
    height: 12px;
    background: #3b82f6;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 10px #3b82f6;
}

.center-node {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.share-line {
    position: absolute;
    background: linear-gradient(90deg, #3b82f6, transparent);
    height: 1px;
    width: 80px;
    top: 50%;
    left: 50%;
    transform-origin: left center;
}

.share-line.top-right {
    transform: rotate(-45deg);
}

.share-line.bottom-right {
    transform: rotate(45deg);
}

.node-1 {
    top: 20%;
    right: 20%;
    animation: pulse-blue 2s infinite;
}

.node-2 {
    bottom: 20%;
    right: 20%;
    animation: pulse-blue 2s infinite 1s;
}

/* Animations */
@keyframes wave-anim {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.5);
    }
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

@keyframes pulse-blue {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(59, 130, 246, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

/* Share Session Card specific styles */
.live-sharing-card .share-session-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
}

.share-header {
    margin-bottom: 24px;
}

.share-icon-large {
    font-size: 3rem;
    margin-bottom: 16px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #a855f7;
}

.share-signal-icon {
    font-size: 2rem;
    opacity: 0.8;
    animation: pulse-opacity 2s infinite;
}

.share-header h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff;
}

.share-header p {
    font-size: 0.9rem;
    color: #a3a3a3;
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.4;
}

.share-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 280px;
}

.share-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #e5e5e5;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 1.1rem;
}

@keyframes pulse-opacity {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* 3D Share Container */
.share-3d-container {
    perspective: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    border: none;
    padding: 0;
}

.share-3d-container .cards-3d-wrapper {
    /* Inherits likely, but ensure it exists */
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Adjust floating card for share session */
.share-card {
    /* Previous distinct card style removed/unused now */
    display: none;
}

/* Individual Share Sub-Cards */
.share-sub-card {
    width: 260px;
    padding: 16px;
    background: rgba(30, 30, 45, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.27), border-color 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    /* 3D Properties inherited from .float-card */
}

.share-sub-card:hover {
    border-color: rgba(168, 85, 247, 0.5);
    /* Purple Highlight */
    transform: translateZ(20px);
}

/* Recap & AI Cards */
.recap-card {
    display: flex;
    flex-direction: column;
}

.sparkle-icon {
    margin-right: 8px;
    filter: drop-shadow(0 0 5px rgba(168, 85, 247, 0.5));
}

.recap-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 0.9rem;
    color: #d1d5db;
}

.recap-section h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.participant-list,
.bullet-list {
    list-style: none;
    padding-left: 0;
}

.participant-list li {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 99px;
    margin-right: 6px;
    margin-bottom: 6px;
    font-size: 0.8rem;
}

.bullet-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
    line-height: 1.5;
}

.bullet-list li::before {
    content: "•";
    color: var(--text-muted);
    position: absolute;
    left: 0;
}

/* AI Q&A Card */
.ai-qa-card {
    background: rgba(10, 5, 20, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
    align-items: flex-start;
    padding: 40px 32px;
    /* Balanced padding */
    gap: 32px;
    /* Consistent gap between elements */
}

.ai-qa-card h3 {
    font-size: 2.2rem;
    /* Larger title */
    line-height: 1.3;
    /* More breathing room in title */
    margin-bottom: 0;
    /* Let flex gap handle spacing */
    background: linear-gradient(to right, #fff, #e9d5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0;
    letter-spacing: -0.01em;
}

.ai-description {
    font-size: 1.1rem;
    /* Slightly larger reading text */
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
    /* Let flex gap handle spacing */
    padding-bottom: 0;
}

.ai-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 0;
}

.ai-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #e5e5e5;
    font-weight: 500;
}

.check-icon-blue {
    color: #60a5fa;
    font-weight: 800;
    /* Bolder */
    font-size: 1.2em;
    /* Larger */
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.4);
    /* Glow for visibility */
}

/* Built for Real Conversations - Use Case Cards */
.use-case-wide-card {
    grid-column: span 2;
    padding: 40px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.use-case-wide-card h3 {
    font-size: 1.8rem;
    margin: 0;
    background: linear-gradient(to right, #fff, #e9d5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.use-case-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.use-case-features {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--primary-accent);
    font-weight: 500;
    margin-top: 8px;
}

.use-case-features .separator {
    color: var(--text-muted);
    opacity: 0.5;
}

/* Use Cases Section with Speech Bubble Chips */
.use-cases-section {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.use-cases-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.use-cases-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.use-case-chip {
    position: relative;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
    font-weight: 500;
    color: #e5e5e5;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Speech bubble tail */
.use-case-chip::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 20px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transform: rotate(45deg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.use-case-chip:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}

.use-case-chip:hover::after {
    border-color: rgba(168, 85, 247, 0.4);
}

/* Share Sub Card fix */
.share-sub-card .share-features-list {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: none;
    gap: 8px;
}

.share-sub-card .share-features-list li {
    font-size: 0.85rem;
    color: #e5e5e5;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 8px;
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .cards-3d-wrapper {
        min-height: auto;
        padding-bottom: 40px;
    }
}

@media (max-width: 768px) {

    /* Navbar */
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 5, 16, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .desktop-only {
        display: none;
    }

    /* Mobile Menu Button */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .bar {
        width: 100%;
        height: 3px;
        background-color: #fff;
        border-radius: 3px;
        transition: 0.3s;
    }

    /* Hamburger Animation */
    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Hero */
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Bento Cards */
    .speaker-stats-grid {
        grid-template-columns: 1fr;
    }

    /* Fix 3D Cards Overflow */
    .cards-3d-wrapper {
        transform: none !important;
        height: auto;
        perspective: none;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .float-card {
        position: relative;
        transform: none !important;
        width: 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .float-card:hover {
        transform: translateY(-5px) !important;
    }

    /* Hide decorative/complex elements on mobile if needed */
    .recording-interface {
        overflow: scroll;
        /* Allow horizontal scroll for inner content if needed */
        scrollbar-width: none;
    }
}

/* Base styles for mobile button (hidden on desktop, shown via media query) */
.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
}

/* ===========================
   Why Conversely Section
   =========================== */

.why-conversely {
    padding: 120px 20px;
    text-align: center;
}

.why-conversely .section-header {
    margin-bottom: 70px;
}

.why-conversely .section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.why-conversely .section-header p {
    font-size: 1.2rem;
    color: rgba(148, 163, 184, 0.9);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 50px;
}

.comparison-card {
    padding: 45px 35px;
    border-radius: 24px;
    text-align: left;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.comparison-card:hover {
    transform: translateY(-8px);
}

.comparison-card .card-header {
    margin-bottom: 30px;
    padding-bottom: 0;
    border-bottom: none;
}

.timeline-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.during-badge {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    color: white;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.after-badge {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-card .card-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.card-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 8px;
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: 500;
}

.comparison-narrative {
    margin-bottom: 30px;
}

.comparison-narrative p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(229, 229, 229, 0.85);
    margin-bottom: 16px;
}

.key-differentiators {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.differentiator-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.differentiator-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(168, 85, 247, 0.2);
}

.diff-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary-accent);
    stroke: var(--primary-accent);
}

.differentiator-item span:last-child {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.conversely-card {
    border: 2px solid var(--primary-accent);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.3),
        0 12px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

.conversely-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.5;
    pointer-events: none;
}

.traditional-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-insight {
    font-size: 1.05rem;
    color: rgba(148, 163, 184, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-style: italic;
}

.comparison-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.check-icon {
    color: var(--accent-green);
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
}

.feature-status {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
}

.comparison-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.why-conversely .cta-button {
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.why-conversely .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-conversely .section-header h2 {
        font-size: 2.25rem;
    }

    .why-conversely .section-header p {
        font-size: 1.1rem;
    }

    .comparison-card {
        padding: 30px 20px;
    }
}

/* Pricing Section */
.pricing {
    padding: 100px 20px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    font-family: var(--font-sans);
}

.pricing-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.toggle-label {
    color: #fff;
    font-weight: 500;
}

.toggle-switch {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: 99px;
    display: flex;
    gap: 4px;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 6px 16px;
    border-radius: 99px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.toggle-btn.active {
    background: #3b82f6;
    color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    border-radius: 24px;
}

/* Most Popular Highlight */
.popular-card {
    border: 2px solid var(--secondary-accent);
    box-shadow: 0 0 30px rgba(217, 70, 239, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    background: var(--secondary-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 99px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #fff;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.savings-message {
    display: none;
    font-size: 0.75rem;
    color: #10b981;
    margin-top: -20px;
    margin-bottom: 20px;
    font-weight: 500;
}

.savings-message.show {
    display: block;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-bottom: 40px;
    text-align: left;
    padding-left: 20px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 1rem;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #22c55e;
    color: #000;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.full-width {
    width: 100%;
    padding: 16px;
    margin-left: 0;
    font-size: 1.1rem;
}

/* Responsive Design - Mobile First */

/* Tablet and below (768px) */
@media (max-width: 768px) {

    /* Hero Section */
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 90%;
    }

    .hero-logo {
        height: 80px;
    }

    /* Trust Signals */
    .trust-signals {
        padding: 80px 20px 60px;
        gap: 60px;
    }

    .trust-number {
        font-size: 4rem;
    }

    .trust-label {
        font-size: 1.1rem;
    }

    .integration-logo {
        padding: 14px 28px;
        font-size: 1.1rem;
    }

    .testimonial-card {
        padding: 40px 30px;
        max-width: 100%;
    }

    .testimonial-text {
        font-size: 1.15rem;
    }

    /* Features Section */
    .features {
        padding: 80px 20px;
    }

    .features-header h2,
.features-header h3 {
        font-size: 2.5rem;
    }

    .features-header p {
        font-size: 1.1rem;
    }

    /* Comparison Section */
    .why-conversely {
        padding: 80px 20px;
    }

    .why-conversely .section-header h2 {
        font-size: 2.5rem;
    }

    .why-conversely .section-header p {
        font-size: 1.1rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
        margin-bottom: 40px;
    }

    .comparison-card {
        padding: 35px 28px;
    }

    .comparison-card .card-header h3 {
        font-size: 1.75rem;
    }

    .comparison-narrative p {
        font-size: 1rem;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        margin-bottom: 20px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {

    /* Hero Section */
    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 95%;
    }

    .hero-logo {
        height: 60px;
        margin-bottom: 16px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions button {
        width: 100%;
        padding: 14px 24px;
    }

    /* Trust Signals */
    .trust-signals {
        padding: 60px 16px 40px;
        gap: 50px;
    }

    .trust-number {
        font-size: 3rem;
    }

    .trust-label {
        font-size: 1rem;
    }

    .integration-logos {
        gap: 12px;
    }

    .integration-logo {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .testimonial-card {
        padding: 30px 24px;
        border-radius: 20px;
    }

    .testimonial-text {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .author-avatar {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .author-name {
        font-size: 1rem;
    }

    .author-title {
        font-size: 0.9rem;
    }

    /* Features Section */
    .features {
        padding: 60px 16px;
    }

    .features-header {
        margin-bottom: 60px;
    }

    .features-header h2,
.features-header h3 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .features-header p {
        font-size: 1rem;
        max-width: 95%;
    }

    /* Comparison Section */
    .why-conversely {
        padding: 60px 16px;
    }

    .why-conversely .section-header {
        margin-bottom: 50px;
    }

    .why-conversely .section-header h2 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .why-conversely .section-header p {
        font-size: 1rem;
        max-width: 95%;
    }

    .comparison-grid {
        gap: 24px;
        margin-bottom: 30px;
    }

    .comparison-card {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .timeline-badge {
        padding: 5px 12px;
        font-size: 0.7rem;
        margin-bottom: 12px;
    }

    .comparison-card .card-header h3 {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }

    .card-subtitle {
        font-size: 0.9rem;
    }

    .comparison-narrative {
        margin-bottom: 24px;
    }

    .comparison-narrative p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .key-differentiators {
        gap: 10px;
    }

    .differentiator-item {
        padding: 10px 14px;
        gap: 10px;
    }

    .diff-icon {
        width: 18px;
        height: 18px;
    }

    .differentiator-item span:last-child {
        font-size: 0.9rem;
    }

    .comparison-insight {
        font-size: 0.95rem;
        max-width: 95%;
        margin-bottom: 30px;
    }

    /* Navbar */
    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .cta-button {
        width: 100%;
        padding: 14px 24px;
    }

    /* Pricing */
    .pricing {
        padding: 60px 16px;
    }

    .pricing-header h2 {
        font-size: 2rem;
    }

    .pricing-header p {
        font-size: 1rem;
    }
}

/* Pricing Responsiveness */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        margin-bottom: 20px;
    }
}

/* ===========================
   Footer
   =========================== */

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 20px 40px;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 300px;
}

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

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-nav-group h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.footer-nav-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-group a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-nav-group a:hover {
    color: #fff;
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: var(--primary-accent);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--secondary-accent);
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-brand {
        align-items: center;
        max-width: 100%;
    }

    .footer-nav {
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 40px 16px 30px;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .footer-nav-group {
        text-align: center;
    }
}

/* ===========================
   Accessibility: Reduced Motion
   =========================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ===========================
   Accessibility: Focus States
   =========================== */
a:focus-visible,
button:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.toggle-btn:focus-visible {
    outline: 2px solid var(--primary-accent);
    outline-offset: 3px;
}

.nav-links a:focus-visible {
    color: var(--text-main);
    outline: 2px solid var(--primary-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

.float-card:focus-visible,
.meeting-item:focus-visible,
.pricing-card:focus-visible {
    outline: 2px solid var(--primary-accent);
    outline-offset: 2px;
    border-radius: 16px;
}

/* Free trial messaging */
.hero-free-trial {
    font-size: 0.95rem;
    color: #10b981;
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}

.free-trial-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 4px 14px;
    border-radius: 99px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}