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

:root {
    --primary-color: #4F46E5;
    --primary-hover: #4338CA;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --background: #FFFFFF;
    --background-alt: #F9FAFB;
    --border-color: #E5E7EB;
    --success: #10B981;
    --error: #EF4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 40px 20px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 0 0 50px 50px;
    margin-bottom: 20px;
    position: relative;
}

/* Hero Content Wrapper */
.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Navigation */
.header-nav {
    position: absolute;
    top: 0;
    right: 20px;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-link:hover {
    opacity: 0.9;
}

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

.coming-soon-badge {
    display: inline-block;
    background: #FCD34D;
    color: #78350F;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #FDE68A;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(252, 211, 77, 0.3);
}

.logo {
    margin-bottom: 30px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

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

.logo svg circle,
.logo svg path {
    stroke: white;
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.browser-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.browser-logo {
    width: 32px;
    height: 32px;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.browser-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle a {
    background: rgba(255, 255, 255, 0.9);
    color: #4F46E5;
    padding: 2px 8px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.subtitle a:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: var(--text-primary);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s ease-in-out infinite;
}

.cta-badge .pipe {
    display: inline-block;
    width: 4px;
    height: 16px;
    border-radius: 2px;
    transition: opacity 0.3s ease;
}

.pipe-1 { background: #10B981; }
.pipe-2 { background: #FCD34D; }
.pipe-3 { background: #F59E0B; }
.pipe-4 { background: #EF4444; }
.pipe-5 { background: #8B5CF6; }

.cta-explanation {
    margin-top: 15px;
    font-size: 0.875rem;
    color: white;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.percentage-wrapper {
    white-space: nowrap;
}

#ai-percentage {
    font-weight: 700;
}

.icon-human,
.icon-ai {
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
}

.icon-human {
    margin-right: 4px;
}

.icon-ai {
    margin-left: 4px;
}

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

/* Social Demo Section */
.social-demo {
    padding: 40px 20px;
    margin-bottom: 20px;
}

.social-demo-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Carousel */
.carousel-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Mobile Carousel */
.mobile-carousel {
    display: none;
    position: relative;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.mobile-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    position: relative;
}

.mobile-carousel-slide {
    min-width: 100%;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    flex-shrink: 0;
    display: none;
}

.mobile-carousel-slide.active {
    display: block;
}

.mobile-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 2;
    transition: all 0.2s ease;
}

.mobile-carousel-btn:hover {
    background: var(--background-alt);
    box-shadow: var(--shadow-lg);
}

.mobile-carousel-prev {
    left: 0;
}

.mobile-carousel-next {
    right: 0;
}

.mobile-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.mobile-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-carousel-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 5px;
}

.mobile-carousel-dot:hover {
    background: var(--text-secondary);
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    flex-basis: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 2;
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    background: var(--background-alt);
    box-shadow: var(--shadow-md);
}

.carousel-prev {
    left: -50px;
}

.carousel-next {
    right: -50px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 5px;
}

.carousel-dot:hover {
    background: var(--text-secondary);
}

.arrow-pointer {
    position: absolute;
    bottom: -140px;
    right: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    animation: bounce 2s ease-in-out infinite;
}

.arrow-pointer svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.arrow-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    font-family: 'Comic Sans MS', 'Marker Felt', cursive, sans-serif;
}

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

.platform-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--background-alt);
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.carousel-slide[data-platform="linkedin"] .platform-label {
    background: #0A66C2;
    color: white;
}

.carousel-slide[data-platform="reddit"] .platform-label {
    background: #FF4500;
    color: white;
}

.carousel-slide[data-platform="twitter"] .platform-label {
    background: #000000;
    color: white;
}

.social-post {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.post-header {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 16px;
}

.post-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.post-author-info {
    flex: 1;
}

.post-author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.post-time {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.post-content {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 16px;
    white-space: pre-wrap;
}

.post-stats {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.post-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.post-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: background 0.2s ease;
    font-size: 0.875rem;
}

.post-action-btn:hover {
    background: var(--background-alt);
}

.post-action-btn svg {
    width: 20px;
    height: 20px;
}

.innaitt-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--text-primary);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
}

.innaitt-indicator:hover {
    background: #111827;
}

.indicator-text {
    font-size: 0.875rem;
    font-weight: 600;
}

.indicator-bars {
    display: flex;
    gap: 2px;
}

.indicator-bar {
    width: 4px;
    height: 16px;
    border-radius: 2px;
}

.bar-1 { background: #10B981; }
.bar-2 { background: #FCD34D; }
.bar-3 { background: #F59E0B; }
.bar-4 { background: #EF4444; }
.bar-5 { background: #8B5CF6; }

/* Reddit Post Styles */
.reddit-layout {
    display: flex;
    gap: 12px;
    align-items: start;
}

.reddit-vote {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    background: var(--background-alt);
    border-radius: 8px;
}

.vote-btn {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
}

.vote-btn:hover {
    color: var(--primary-color);
}

.vote-count {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.reddit-content {
    flex: 1;
}

.reddit-post .post-header {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}

.subreddit {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.post-author {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.reddit-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.reddit-actions {
    gap: 16px;
}

/* Twitter/X Post Styles */
.twitter-post .post-header {
    margin-bottom: 12px;
}

.twitter-name-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified-badge {
    flex-shrink: 0;
}

.twitter-handle {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 400;
}

.twitter-actions {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
}

.twitter-actions .post-action-btn {
    flex: none;
    gap: 6px;
    color: var(--text-secondary);
}

.indicator-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    width: 280px;
    max-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 10;
    box-sizing: border-box;
}

.indicator-tooltip * {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.indicator-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border: 8px solid transparent;
    border-top-color: white;
}

.innaitt-indicator:hover .indicator-tooltip {
    opacity: 1;
    visibility: visible;
}

.tooltip-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.tooltip-title span:not(.tooltip-icon) {
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1;
    min-width: 0;
}

.tooltip-icon {
    font-size: 1.125rem;
    color: #F59E0B;
}

.tooltip-description {
    font-size: 0.8125rem;
    color: #64748B;
    line-height: 1.4;
    margin-bottom: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tooltip-confidence {
    margin-bottom: 12px;
}

.confidence-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.confidence-label {
    font-size: 0.8125rem;
    color: var(--text-primary);
    font-weight: 500;
}

.confidence-value {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
}

.confidence-bar {
    height: 6px;
    background: #E2E8F0;
    border-radius: 3px;
    overflow: hidden;
}

.confidence-fill {
    height: 100%;
    width: 94%;
    background: linear-gradient(90deg, #EF4444 0%, #F59E0B 50%, #FCD34D 100%);
    border-radius: 4px;
}

.tooltip-signals {
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.signals-header {
    font-size: 0.8125rem;
    color: #64748B;
    margin-bottom: 6px;
}

.signals-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.signals-list li {
    font-size: 0.8125rem;
    color: var(--text-primary);
    padding-left: 10px;
    position: relative;
    margin-bottom: 4px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.signals-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-primary);
}

/* Manifesto Section */
.manifesto {
    padding: 80px 40px;
    margin-bottom: 20px;
    width: 100%;
    background: #f9fafb;
    display: flex;
    justify-content: center;
    align-items: center;
}

.manifesto-letter {
    max-width: 750px;
    background: white;
    padding: 60px 80px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    font-family: Georgia, 'Times New Roman', serif;
}

.manifesto-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-primary);
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    letter-spacing: -0.5px;
}

.manifesto-letter p {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: justify;
    text-indent: 2em;
}

.manifesto-letter p:first-of-type {
    text-indent: 0;
}

.manifesto-letter p:nth-of-type(6) {
    text-indent: 0;
}

.manifesto-letter p strong {
    font-weight: 600;
    color: var(--text-primary);
}

/* Spectrum Labels */
.spectrum-labels {
    display: inline;
}

.spectrum-label {
    display: inline;
    font-weight: 600;
}

.spectrum-separator {
    color: var(--text-primary);
}

/* Black highlight */
.highlight-black {
    background-color: #000000;
    color: #ffffff !important;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600 !important;
    display: inline-block;
}

.spectrum-period {
    color: var(--text-primary);
}

.manifesto-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
    text-align: center !important;
    text-indent: 0 !important;
}

.manifesto-signature strong {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.coming-soon-text {
    background: #E5E7EB;
    color: var(--text-secondary);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-style: italic;
    display: inline-block;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 20px;
    margin-bottom: 60px;
    border-radius: 30px;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter .section-title {
    color: white;
    margin-bottom: 20px;
}

.newsletter-description {
    color: white;
    opacity: 0.95;
    font-size: 1.125rem;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.subscription-form {
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.email-input {
    flex: 1;
    padding: 16px 24px;
    font-size: 1rem;
    border: 2px solid transparent;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.email-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.email-input::placeholder {
    color: var(--text-secondary);
}

.submit-btn {
    padding: 16px 32px;
    background: var(--text-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    min-width: 140px;
}

.submit-btn:hover {
    background: #111827;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: inline;
}

.form-message {
    min-height: 24px;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-message.success {
    color: #D1FAE5;
}

.form-message.error {
    color: #FEE2E2;
}

.privacy-notice {
    color: white;
    opacity: 0.8;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .stakeholders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-nav {
        position: static;
        justify-content: center;
        gap: 25px;
        margin-bottom: 20px;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 5px 0;
    }

    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-group {
        flex-direction: column;
    }

    .submit-btn {
        width: 100%;
    }

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

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

@media (max-width: 768px) {
    .carousel-container {
        display: none;
    }

    .carousel-dots {
        display: none;
    }

    .social-demo {
        padding: 40px 0;
    }

    .mobile-carousel {
        display: block;
    }

    .indicator-text {
        display: none;
    }

    .post-actions {
        position: relative;
    }

    .indicator-tooltip {
        position: absolute;
        width: 90vw;
        max-width: 90vw;
        padding: 16px 16px 20px 16px;
        bottom: calc(100% + 12px);
        left: 50%;
        transform: translateX(-50%);
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }

    .indicator-tooltip::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 8px solid transparent;
        border-top-color: white;
    }

    .tooltip-title {
        font-size: 0.8125rem;
        margin-bottom: 6px;
        gap: 4px;
        line-height: 1.4;
    }

    .tooltip-title span:not(.tooltip-icon) {
        word-break: break-word;
        hyphens: auto;
    }

    .tooltip-icon {
        font-size: 0.9375rem;
        flex-shrink: 0;
    }

    .tooltip-description {
        font-size: 0.75rem;
        margin-bottom: 8px;
        line-height: 1.4;
        word-break: break-word;
        hyphens: auto;
    }

    .confidence-label-row {
        margin-bottom: 4px;
    }

    .confidence-label {
        font-size: 0.75rem;
    }

    .confidence-value {
        font-size: 0.75rem;
    }

    .confidence-bar {
        height: 5px;
        margin-bottom: 8px;
    }

    .tooltip-learn-more {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .tooltip-signals {
        padding-top: 8px;
    }

    .signals-header {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }

    .signals-list {
        margin-bottom: 0;
    }

    .signals-list li {
        font-size: 0.75rem;
        padding-left: 8px;
        margin-bottom: 3px;
    }

    .signals-list li:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .manifesto {
        padding: 40px 20px;
    }

    .manifesto-letter {
        padding: 40px 30px;
    }

    .manifesto-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .manifesto-letter p {
        font-size: 1rem;
        text-align: left;
        text-indent: 0;
    }

    .manifesto-signature {
        margin-top: 30px;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px 40px;
        margin-bottom: 20px;
    }

    .header-nav {
        gap: 20px;
        align-items: center;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 5px 0;
    }

    .title {
        font-size: 2rem;
    }

    .manifesto {
        padding: 40px 15px;
        margin-bottom: 60px;
    }

    .manifesto-letter {
        padding: 30px 20px;
    }

    .manifesto-title {
        font-size: 1.75rem;
        margin-bottom: 25px;
    }

    .manifesto-letter p {
        font-size: 0.9375rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .manifesto-signature {
        margin-top: 25px;
        padding-top: 20px;
    }

    .manifesto-signature strong {
        font-size: 1rem;
    }

    .newsletter {
        padding: 60px 20px;
    }

    .post-action-btn span {
        display: none;
    }

    .arrow-pointer {
        display: none;
    }
}

/* Scroll Arrow */
.scroll-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    animation: bounce-arrow 2s ease-in-out infinite;
}

.scroll-arrow svg {
    color: var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(79, 70, 229, 0.3));
}

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

@media (max-width: 768px) {
    .scroll-arrow {
        margin-top: 20px;
    }

    .scroll-arrow svg {
        width: 32px;
        height: 32px;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
}

.cookie-consent.hidden {
    transform: translateY(100%);
}

.cookie-consent-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-text {
    flex: 1;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
}

.cookie-policy-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.cookie-policy-link:hover {
    color: var(--primary-hover);
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn-accept:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.cookie-btn-reject {
    background: var(--background-alt);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.cookie-btn-reject:hover {
    background: var(--border-color);
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 16px;
    }

    .cookie-consent-content {
        flex-direction: column;
        gap: 16px;
    }

    .cookie-consent-text {
        font-size: 0.875rem;
    }

    .cookie-consent-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        padding: 12px 20px;
    }
}
