/* Basic reset and layout */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: radial-gradient(circle at top, #101528 0, #050710 45%, #020309 100%);
    color: #f5f7ff;
    line-height: 1.6;
}

/* Skip link for accessibility - hidden until focused */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: #5cb4ff;
    color: #050710;
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 4px 0;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: top 0.2s ease, opacity 0.2s ease;
}

.skip-link:focus {
    top: 0;
    opacity: 1;
    pointer-events: auto;
}

/* Layout helpers */
.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    background: rgba(5, 8, 20, 0.92);
    border-bottom: 1px solid rgba(121, 154, 255, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Logo */
.logo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(92, 178, 255, 0.1);
    border: 1px solid rgba(92, 178, 255, 0.3);
    border-radius: 999px;
    color: #d4ddff;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1rem;
    flex-shrink: 0;
}

.logo-btn:visited {
    color: #d4ddff;
}

.logo-btn:hover,
.logo-btn:focus {
    background: rgba(92, 178, 255, 0.2);
    border-color: rgba(92, 178, 255, 0.6);
    transform: translateY(-1px);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(92, 178, 255, 0.2);
    outline: none;
}

.logo-text {
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.home-icon {
    font-size: 1.1rem;
    display: inline-block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    flex-wrap: wrap; /* Allow controls to wrap on tiny screens */
    justify-content: flex-end;
}

/* Digital Clock */
.digital-clock-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    margin-right: 0.5rem;
}

.digital-clock {
    font-family: 'Courier New', 'Courier', 'Lucida Console', 'Monaco', 'Consolas', 'Liberation Mono', 'DejaVu Sans Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(5, 8, 20, 0.85);
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(92, 178, 255, 0.5);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.clock-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: flex-end;
}

/* Date Format Toggle Button */
.date-format-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
    background: rgba(5, 8, 20, 0.85);
    border: 1px solid rgba(92, 178, 255, 0.5);
    border-radius: 4px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    min-width: 60px;
}

.date-format-toggle:hover,
.date-format-toggle:focus {
    background: rgba(5, 8, 20, 0.95);
    border-color: rgba(92, 178, 255, 0.7);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(92, 178, 255, 0.3);
    outline: none;
}

.date-format-toggle:active {
    transform: translateY(0);
}

.format-icon {
    font-size: 0.85rem;
    line-height: 1;
    display: block;
}

.format-text {
    font-family: 'Courier New', 'Courier', 'Lucida Console', 'Monaco', 'Consolas', 'Liberation Mono', 'DejaVu Sans Mono', monospace;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

.timezone-selector {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    background: rgba(5, 8, 20, 0.85);
    border: 1px solid rgba(92, 178, 255, 0.5);
    border-radius: 4px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.timezone-selector:hover,
.timezone-selector:focus {
    background: rgba(5, 8, 20, 0.95);
    border-color: rgba(92, 178, 255, 0.7);
    outline: none;
}

/* Note: option styling is limited by browser, but we try */
.timezone-selector option {
    background: rgba(5, 8, 20, 0.98);
    color: #ffffff;
    padding: 0.5rem;
}

/* Light theme styles for clock */
body.light-theme .digital-clock {
    color: #050710;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(92, 178, 255, 0.5);
}

body.light-theme .date-format-toggle {
    color: #050710;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(92, 178, 255, 0.5);
}

body.light-theme .date-format-toggle:hover,
body.light-theme .date-format-toggle:focus {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(92, 178, 255, 0.7);
}

body.light-theme .timezone-selector {
    color: #050710;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(92, 178, 255, 0.5);
}

body.light-theme .timezone-selector:hover,
body.light-theme .timezone-selector:focus {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(92, 178, 255, 0.7);
}

body.light-theme .timezone-selector option {
    background: #ffffff;
    color: #050710;
}

/* Accessibility Controls */
/* Accessibility Controls - Removed */

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: auto;
    min-width: 44px;
    height: 44px;
    padding: 0.5rem 0.75rem;
    background: rgba(92, 178, 255, 0.15);
    border: 1px solid rgba(92, 178, 255, 0.4);
    border-radius: 22px;
    color: #d4ddff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.theme-toggle::after {
    content: "Theme \25BC";
    margin-left: 0.25rem;
}

.theme-toggle:hover,
.theme-toggle:focus {
    background: rgba(92, 178, 255, 0.25);
    border-color: rgba(92, 178, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(92, 178, 255, 0.3);
    outline: 2px solid rgba(92, 178, 255, 0.4);
    outline-offset: 2px;
}

.theme-toggle:active {
    transform: translateY(0);
}

.theme-icon {
    display: block;
    line-height: 1;
    font-size: 1.2rem;
}

/* Hide text on very small screens */
/* Hide text on smaller screens to prevent header wrapping/overflow */
@media (max-width: 1100px) {
    .theme-toggle::after {
        display: none;
    }
    
    .theme-toggle {
        min-width: 44px;
        padding: 0.5rem;
    }
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: rgba(92, 178, 255, 0.1);
    border: 1px solid rgba(92, 178, 255, 0.3);
    border-radius: 999px;
    color: #d4ddff;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-toggle:hover,
.lang-toggle:focus {
    background: rgba(92, 178, 255, 0.15);
    border-color: rgba(92, 178, 255, 0.5);
    outline: 2px solid rgba(92, 178, 255, 0.3);
    outline-offset: 2px;
}

.lang-current {
    font-weight: 600;
    min-width: 32px;
    text-align: center;
}

.lang-arrow {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.lang-toggle[aria-expanded="true"] .lang-arrow {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: rgba(5, 8, 20, 0.98);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(121, 154, 255, 0.3);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 140px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.lang-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease;
    color: #d4ddff;
    font-size: 0.9rem;
}

.lang-option:hover,
.lang-option:focus {
    background: rgba(92, 178, 255, 0.15);
    outline: none;
}

.lang-option.active {
    background: rgba(92, 178, 255, 0.2);
    color: #ffffff;
    font-weight: 600;
}

/* Sidebar Navigation - Desktop */
.main-nav {
    position: fixed;
    /* Fixed position relative to center so it is "pushed" by content margin */
    /* 1080px (content) / 2 = 540px. Nav width ~200px. Gap 20px. Total 760px */
    left: calc(50vw - 760px); 
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 1.1rem;
    z-index: 25;
    padding: 1.5rem 0;
    pointer-events: none;
}

.main-nav a {
    text-decoration: none;
    color: #d4ddff;
    padding: 0.85rem 1.4rem;
    border-radius: 10px;
    border: 1px solid rgba(121, 154, 255, 0.2);
    background: rgba(92, 178, 255, 0.05);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    display: block;
    text-align: left;
    line-height: 1.5;
    position: relative;
    pointer-events: auto;
    min-width: 180px;
    font-weight: 500;
}

.main-nav a:hover,
.main-nav a:focus {
    background: rgba(92, 178, 255, 0.15);
    border-color: rgba(92, 178, 255, 0.4);
    color: #ffffff;
    transform: translateX(4px);
    outline: none;
}

.main-nav a.active {
    background: rgba(92, 178, 255, 0.2);
    border-color: rgba(92, 178, 255, 0.6);
    color: #ffffff;
    font-weight: 600;
}

/* Scroll Indicator - Moving Light Effect */
.scroll-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(
        to bottom,
        rgba(92, 178, 255, 0.9),
        rgba(92, 178, 255, 0.5)
    );
    border-radius: 3px;
    box-shadow: 
        0 0 10px rgba(92, 178, 255, 0.7),
        0 0 20px rgba(92, 178, 255, 0.5);
    transition: none;
    will-change: top, height;
    pointer-events: none;
    z-index: 1;
}

/* Ensure main content doesn't overlap sidebar */
#main-content {
    position: relative;
}

/* Adjust main content to accommodate sidebar on desktop */
@media (min-width: 1200px) {
    #main-content {
        padding-left: 240px;
    }
    
    .main-nav {
        pointer-events: auto;
    }
}

/* Hide sidebar navigation on tablets and mobile, show mobile menu instead */
@media (max-width: 1199px) {
    .main-nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(5, 8, 20, 0.98);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(121, 154, 255, 0.2);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 40;
        pointer-events: auto;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav a {
        padding: 0.75rem 1rem;
        width: 100%;
        text-align: left;
        min-width: auto;
    }

    .scroll-indicator {
        display: none;
    }

    #main-content {
        padding-left: 0 !important;
    }
}

/* Honeypot field - hidden from users */
.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 60;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #d4ddff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-toggle:focus {
    outline: 2px solid rgba(92, 178, 255, 0.5);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Hero */
.hero {
    padding: 3.5rem 0 2.5rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
    gap: 2rem;
    align-items: center;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: rgba(92, 178, 255, 0.18);
    color: #d4e9ff;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.status-pill::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #5cf08d;
    box-shadow: 0 0 10px rgba(92, 240, 141, 0.9);
}

.hero h1 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    margin: 1rem 0 0.75rem;
}

.hero-subtitle {
    color: #c0cbff;
    max-width: 32rem;
}

.hero-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    font-size: 0.92rem;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease,
        border-color 0.12s ease, color 0.12s ease;
    white-space: nowrap;
}

.btn.primary {
    background: linear-gradient(120deg, #5cb4ff, #ffb45c);
    color: #050710;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(2, 12, 36, 0.6);
}

.btn.primary::after {
    content: " \2192"; /* Arrow */
    margin-left: 0.5rem;
    font-weight: 700;
}

.btn.primary:hover,
.btn.primary:focus {
    transform: translateY(-1px);
    box-shadow: 0 9px 26px rgba(2, 12, 36, 0.8);
    outline: 2px solid rgba(92, 178, 255, 0.5);
    outline-offset: 2px;
}

/* Enhanced Primary CTA */
.btn.primary.cta-primary {
    font-size: 1rem;
    padding: 0.75rem 2rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    animation: cta-pulse 3s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(2, 12, 36, 0.6), 0 0 0 0 rgba(92, 180, 255, 0.7);
    }
    50% {
        box-shadow: 0 6px 20px rgba(2, 12, 36, 0.6), 0 0 0 8px rgba(92, 180, 255, 0);
    }
}

.btn.primary.cta-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn.primary.cta-primary:hover::before {
    left: 100%;
}

.hero-actions .btn.primary.cta-primary {
    font-size: 1.1rem;
    padding: 0.85rem 2.5rem;
    margin-right: 1rem;
}

.btn.ghost {
    background: transparent;
    border-color: rgba(92, 178, 255, 0.6);
    color: #d4ddff;
}

.btn.ghost:hover,
.btn.ghost:focus {
    background: rgba(92, 178, 255, 0.12);
    outline: 2px solid rgba(92, 178, 255, 0.5);
    outline-offset: 2px;
}

.btn.disabled,
.btn[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.55;
}

/* Hero card */
.hero-card {
    background: radial-gradient(circle at top left, #1d2644, #0b1022 60%, #050712 100%);
    border-radius: 20px;
    padding: 1.4rem 1.5rem;
    border: 1px solid rgba(117, 155, 255, 0.25);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    font-size: 0.95rem;
}

.hero-card h2 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.hero-card ul {
    margin-top: 0.75rem;
    padding-left: 1.1rem;
    color: #bec8ff;
}

/* Sections */
.section {
    padding: 2.5rem 0;
}

.section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.9rem;
}

.section p {
    color: #d4ddff;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mission-highlight {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: rgba(92, 178, 255, 0.08);
    border-left: 3px solid rgba(92, 178, 255, 0.4);
    border-radius: 6px;
}

.mission-highlight h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.flexibility-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 180, 92, 0.08);
    border-left: 3px solid rgba(255, 180, 92, 0.4);
    border-radius: 6px;
    font-size: 0.95rem;
    color: #d4ddff;
}

.roadmap-note {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: rgba(92, 240, 141, 0.08);
    border-left: 3px solid rgba(92, 240, 141, 0.4);
    border-radius: 6px;
    font-size: 0.9rem;
    color: #d4ddff;
}

.section.muted {
    background: radial-gradient(circle at top, #0b0f1f 0, #050712 60%, #03040a 100%);
}

.feature-list {
    margin-top: 0.7rem;
    padding-left: 1.2rem;
    color: #cfd7ff;
}

.feature-list li + li {
    margin-top: 0.25rem;
}

.feature-intro {
    margin-top: 1.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-card {
    background: rgba(9, 14, 34, 0.95);
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(96, 130, 255, 0.25);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: rgba(96, 130, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.feature-card p {
    color: #c2cbff;
    font-size: 0.93rem;
    line-height: 1.6;
}

/* Updates CTA */
.updates-cta {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(92, 178, 255, 0.15), rgba(255, 180, 92, 0.15));
    border-radius: 16px;
    border: 1px solid rgba(92, 178, 255, 0.3);
    text-align: center;
}

.updates-cta-text {
    font-size: 1.1rem;
    color: #d4ddff;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Sticky Footer CTA */
.footer-cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(5, 8, 20, 0.98);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(121, 154, 255, 0.3);
    padding: 1rem 0;
    z-index: 90;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.footer-cta-sticky.visible {
    transform: translateY(0);
}

.footer-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-cta-text strong {
    font-size: 1.1rem;
    color: #ffffff;
}

.footer-cta-text span {
    font-size: 0.9rem;
    color: #c0cbff;
}

/* Example Card Mockup - Enhanced Visualization */
.example-card-mockup {
    margin-top: 1.5rem;
    background: rgba(9, 14, 34, 0.95);
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(96, 130, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(92, 178, 255, 0.1), rgba(255, 180, 92, 0.1));
    border-bottom: 1px solid rgba(96, 130, 255, 0.2);
}

.mockup-topic h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.mockup-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mockup-stats {
    font-size: 0.85rem;
    color: #aeb7e5;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.mockup-content {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: start;
}

.mockup-claim-section,
.mockup-counter-section {
    padding: 1.25rem;
    background: rgba(5, 8, 20, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(96, 130, 255, 0.15);
}

.mockup-claim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(96, 130, 255, 0.1);
}

.mockup-claim-header h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #aeb7e5;
    margin: 0;
}

.mockup-strength-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.strength-bar {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: rgba(96, 130, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.strength-bar.high::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 85%;
    background: linear-gradient(90deg, #5cf08d, #5cb4ff);
    border-radius: 2px;
}

.strength-bar.medium::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg, #ffb45c, #ff6a3c);
    border-radius: 2px;
}

.strength-label {
    font-size: 0.75rem;
    color: #aeb7e5;
}

.mockup-claim-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 500;
}

.mockup-evidence {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.evidence-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(92, 178, 255, 0.08);
    border-radius: 8px;
    border-left: 3px solid rgba(92, 178, 255, 0.4);
    transition: background 0.2s ease;
}

.evidence-item:hover {
    background: rgba(92, 178, 255, 0.12);
}

.evidence-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.evidence-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.evidence-details strong {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
}

.evidence-details span {
    font-size: 0.8rem;
    color: #aeb7e5;
}

/* Strong Points Display */
.mockup-strong-points {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.strong-point-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem;
    background: rgba(92, 178, 255, 0.08);
    border-radius: 8px;
    border-left: 3px solid rgba(92, 178, 255, 0.5);
    transition: all 0.2s ease;
    position: relative;
}

/* High Impact - Points majeurs */
.strong-point-item[data-impact="high"] {
    padding: 1.25rem;
    background: rgba(92, 178, 255, 0.12);
    border-left: 4px solid rgba(92, 178, 255, 0.8);
    box-shadow: 0 2px 8px rgba(92, 178, 255, 0.15);
    transform: scale(1.02);
}

.strong-point-item[data-impact="high"]:hover {
    background: rgba(92, 178, 255, 0.2);
    border-left-color: rgba(92, 178, 255, 1);
    transform: translateX(4px) scale(1.02);
    box-shadow: 0 6px 16px rgba(92, 178, 255, 0.25);
}

.strong-point-item[data-impact="high"] .point-icon {
    font-size: 1.5rem;
}

.strong-point-item[data-impact="high"] .point-details strong {
    font-size: 1.05rem;
    font-weight: 700;
}

/* Medium Impact - Points moyens */
.strong-point-item[data-impact="medium"] {
    padding: 1rem;
    background: rgba(92, 178, 255, 0.08);
    border-left: 3px solid rgba(92, 178, 255, 0.5);
}

.strong-point-item[data-impact="medium"]:hover {
    background: rgba(92, 178, 255, 0.15);
    border-left-color: rgba(92, 178, 255, 0.7);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Low Impact - Points mineurs (pour usage futur) */
.strong-point-item[data-impact="low"] {
    padding: 0.85rem;
    background: rgba(92, 178, 255, 0.06);
    border-left: 2px solid rgba(92, 178, 255, 0.3);
    opacity: 0.85;
}

.strong-point-item[data-impact="low"]:hover {
    background: rgba(92, 178, 255, 0.1);
    border-left-color: rgba(92, 178, 255, 0.5);
    opacity: 1;
    transform: translateX(2px);
}

.strong-point-item[data-impact="low"] .point-details strong {
    font-size: 0.9rem;
}

.strong-point-item:hover {
    background: rgba(92, 178, 255, 0.15);
    border-left-color: rgba(92, 178, 255, 0.7);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.point-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.point-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.point-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.point-header strong {
    flex: 1;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    display: block;
}

.point-details strong {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    display: block;
}

.point-desc {
    color: #aeb7e5;
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.9;
    display: block;
}

.point-context {
    color: #8b9aff;
    font-size: 0.75rem;
    line-height: 1.4;
    font-style: italic;
    opacity: 0.8;
    display: block;
    margin-top: 0.15rem;
    padding-left: 0.5rem;
    border-left: 2px solid rgba(139, 154, 255, 0.3);
}

.point-details span:not(.point-disputable):not(.point-desc):not(.point-context) {
    color: #aeb7e5;
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Impact Badges */
.impact-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    flex-shrink: 0;
}

.impact-badge.impact-high {
    background: rgba(255, 92, 92, 0.2);
    border: 1px solid rgba(255, 92, 92, 0.4);
    color: #ff8a8a;
}

.impact-badge.impact-medium {
    background: rgba(255, 186, 92, 0.2);
    border: 1px solid rgba(255, 186, 92, 0.4);
    color: #ffb45c;
}

.impact-badge.impact-low {
    background: rgba(139, 154, 255, 0.2);
    border: 1px solid rgba(139, 154, 255, 0.4);
    color: #8b9aff;
}

.point-disputable {
    display: inline-block;
    margin-top: 0.25rem;
    padding: 0.2rem 0.5rem;
    background: rgba(255, 186, 92, 0.15);
    border: 1px solid rgba(255, 186, 92, 0.3);
    border-radius: 4px;
    color: #ffb45c;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

.mockup-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mockup-divider::before,
.mockup-divider::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(96, 130, 255, 0.4), transparent);
}

.divider-text {
    background: rgba(9, 14, 34, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 50%;
    border: 2px solid rgba(96, 130, 255, 0.4);
    color: #5cb4ff;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 1;
}

.mockup-actions {
    padding: 1.5rem;
    background: rgba(5, 8, 20, 0.4);
    border-top: 1px solid rgba(96, 130, 255, 0.2);
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.mockup-btn {
    padding: 0.6rem 1.5rem;
    background: rgba(92, 178, 255, 0.15);
    border: 1px solid rgba(92, 178, 255, 0.4);
    border-radius: 8px;
    color: #d4ddff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mockup-btn:hover {
    background: rgba(92, 178, 255, 0.25);
    border-color: rgba(92, 178, 255, 0.6);
    transform: translateY(-1px);
}

.mockup-btn.secondary {
    background: transparent;
    border-color: rgba(255, 180, 92, 0.4);
    color: #ffb45c;
}

.mockup-btn.secondary:hover {
    background: rgba(255, 180, 92, 0.1);
    border-color: rgba(255, 180, 92, 0.6);
}

/* Legacy Example Card (keep for fallback) */
.example-card {
    margin-top: 1.5rem;
    background: rgba(9, 14, 34, 0.95);
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(96, 130, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.example-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(96, 130, 255, 0.2);
}

.example-header h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0;
}

.example-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(92, 240, 141, 0.18);
    color: #c9ffdc;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.example-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.example-claim,
.example-counter {
    padding: 1rem;
    background: rgba(5, 8, 20, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(96, 130, 255, 0.15);
}

.example-claim h4,
.example-counter h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #aeb7e5;
    margin-bottom: 0.5rem;
}

.example-claim p,
.example-counter p {
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.example-sources {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #aeb7e5;
}

.example-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(96, 130, 255, 0.2);
    text-align: center;
    color: #aeb7e5;
    font-size: 0.9rem;
    font-style: italic;
}

.example-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.7;
    font-style: italic;
    text-align: center;
}

/* Roadmap */
.roadmap {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.roadmap-item {
    border-radius: 18px;
    padding: 1rem;
    background: rgba(9, 14, 34, 0.95);
    border: 1px solid rgba(96, 130, 255, 0.25);
    font-size: 0.93rem;
}

.roadmap-item h3 {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
    background: rgba(92, 240, 141, 0.18);
    color: #c9ffdc;
}

.roadmap-item ul {
    padding-left: 1.05rem;
    color: #c2cbff;
}

/* Support & Social Grid */
.support-social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.support-section h3,
.social-section h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.support-note,
.social-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    color: #d4ddff;
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    background: rgba(92, 178, 255, 0.12);
    border: 1px solid rgba(92, 178, 255, 0.3);
    color: #d4ddff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.support-link:hover {
    background: rgba(92, 178, 255, 0.2);
    border-color: rgba(92, 178, 255, 0.5);
    transform: translateY(-1px);
}

.support-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.support-link.disabled:hover {
    transform: none;
    background: rgba(92, 178, 255, 0.12);
}

/* Social Media Cards */
.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 1.5rem;
}

/* Base button */
.social-link {
    --brand: currentColor;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--brand) 18%, rgba(128,128,128,.35));
    text-decoration: none;

    background: color-mix(in srgb, rgba(255,255,255,.06) 60%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease;
}

/* Icon badge */
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;

    color: var(--brand);
    background: color-mix(in srgb, var(--brand) 14%, transparent);
    flex-shrink: 0;
}

/* Text */
.social-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.social-name {
    font-weight: 650;
    letter-spacing: .1px;
    color: #e2e8ff;
}

.social-sub {
    font-size: .85rem;
    opacity: .75;
    color: #b0b8d8;
}

/* Hover + focus */
.social-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(0,0,0,.18);
    background: color-mix(in srgb, var(--brand) 6%, rgba(255,255,255,.08));
    border-color: color-mix(in srgb, var(--brand) 40%, rgba(128,128,128,.3));
}

.social-link:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--brand) 55%, white);
    outline-offset: 3px;
}

/* External link hint */
.social-link[target="_blank"]::after {
    content: "↗";
    margin-left: auto;
    opacity: .55;
    font-size: .95rem;
    color: #b0b8d8;
}

/* Brand accents */
.social-x { --brand: #ffffff; }          /* X - White on dark */
.social-linkedin { --brand: #0A66C2; }   /* LinkedIn */
.social-discord { --brand: #5865F2; }    /* Discord */

/* Disabled state */
.social-link.disabled {
    opacity: .55;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(0.2);
    box-shadow: none;
    transform: none;
}

.coming-soon-badge-card {
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(255, 180, 92, 0.2);
    color: #ffb45c;
    border: 1px solid rgba(255, 180, 92, 0.4);
    margin-left: auto;
}

/* Newsletter */
.newsletter-form {
    margin-top: 0.8rem;
    max-width: 480px;
}

.newsletter-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: #d4ddff;
}

.newsletter-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.newsletter-row input[type="email"] {
    flex: 1;
    min-width: 0;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(121, 154, 255, 0.6);
    background: rgba(5, 8, 20, 0.9);
    color: #f5f7ff;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-row input[type="email"]:focus {
    border-color: #5cb4ff;
    box-shadow: 0 0 0 2px rgba(92, 180, 255, 0.3);
    outline: none;
}

.newsletter-row input[type="email"]:invalid:not(:placeholder-shown) {
    border-color: #ff6a3c;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.7;
    color: #d4ddff;
}

.form-message {
    margin-top: 1.5rem; /* Increased separation */
    font-size: 1.6rem; /* 2x-3x larger (was 0.85rem) */
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2); /* Slight background to make it pop */
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Ensure footer isn't hidden by sticky CTA */
body {
    padding-bottom: 100px; /* Space for the sticky footer CTA */
}

@media (max-width: 768px) {
    body {
        padding-bottom: 160px; /* More space on mobile where CTA stacks vertically */
    }
}

/* Make Sticky CTA sit at bottom but allow scrolling past it visually if needed, 
   though 'fixed' means it overlays. To fix the issue of "hiding footer", 
   we added padding-bottom to body above. 
   BUT user asked for "banner adds up and stay once reaching the end".
   Actually, the sticky behavior is typically overlay. The padding-bottom on body 
   ensures content (like the real footer) can be scrolled into view *above* the sticky banner
   or the sticky banner doesn't cover the last bit of content. 
*/

/* Consent Checkbox */
.consent-checkbox-container {
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.consent-checkbox-container input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #5cb4ff;
    flex-shrink: 0;
}

.consent-label {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #d4ddff;
    cursor: pointer;
    flex: 1;
    min-width: 0;
}

.consent-link-wrapper {
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.consent-link {
    color: #5cb4ff;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: 0.9rem;
}

.consent-link:hover {
    color: #7cc4ff;
}

.consent-description {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #a8b5ff;
    font-style: italic;
}

/* Unsubscribe link on main page */
.unsubscribe-link-wrapper {
    margin-top: 0.75rem;
    text-align: center;
}

.unsubscribe-link {
    color: #a8b5ff;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.unsubscribe-link:hover {
    color: #5cb4ff;
}

/* Legal Pages */
.privacy-content,
.terms-content,
.unsubscribe-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.privacy-content h2,
.terms-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #5cb4ff;
    font-size: 1.3rem;
}

.privacy-content h2:first-of-type,
.terms-content h2:first-of-type {
    margin-top: 1.5rem;
}

.privacy-content p,
.terms-content p,
.unsubscribe-content p {
    margin-bottom: 1rem;
    color: #d4ddff;
}

.privacy-content ul,
.terms-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-content li,
.terms-content li {
    margin-bottom: 0.5rem;
    color: #d4ddff;
}

.privacy-content a,
.terms-content a {
    color: #5cb4ff;
    text-decoration: underline;
}

.privacy-content a:hover,
.terms-content a:hover {
    color: #7cc4ff;
}

.privacy-actions,
.terms-actions,
.unsubscribe-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.unsubscribe-method {
    background: rgba(92, 178, 255, 0.1);
    border: 1px solid rgba(92, 178, 255, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.unsubscribe-method h2 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #5cb4ff;
    font-size: 1.2rem;
}

.unsubscribe-divider {
    text-align: center;
    margin: 1.5rem 0;
    color: #a8b5ff;
    font-weight: 600;
    position: relative;
}

.unsubscribe-divider::before,
.unsubscribe-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(92, 178, 255, 0.3);
}

.unsubscribe-divider::before {
    left: 0;
}

.unsubscribe-divider::after {
    right: 0;
}

.unsubscribe-form {
    margin-top: 1rem;
}

.unsubscribe-form .form-group {
    margin-bottom: 1rem;
}

.unsubscribe-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #d4ddff;
    font-size: 0.9rem;
}

.unsubscribe-form input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(5, 8, 20, 0.8);
    border: 1px solid rgba(92, 178, 255, 0.3);
    border-radius: 6px;
    color: #f5f7ff;
    font-size: 1rem;
}

.unsubscribe-form input:focus {
    outline: none;
    border-color: #5cb4ff;
    box-shadow: 0 0 0 3px rgba(92, 180, 255, 0.2);
}

.unsubscribe-note {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(92, 178, 255, 0.1);
    border-left: 3px solid #5cb4ff;
    border-radius: 4px;
}

.unsubscribe-note p {
    margin: 0;
    color: #d4ddff;
    font-size: 0.9rem;
}

/* Light theme adjustments for legal pages */
body.light-theme .consent-label {
    color: #1a1f3a;
}

body.light-theme .consent-link {
    color: #2563eb;
}

body.light-theme .consent-link:hover {
    color: #1e40af;
}

body.light-theme .consent-description {
    color: #4a5568;
}

body.light-theme .unsubscribe-link {
    color: #4a5568;
}

body.light-theme .unsubscribe-link:hover {
    color: #2563eb;
}

body.light-theme .privacy-content p,
body.light-theme .terms-content p,
body.light-theme .unsubscribe-content p,
body.light-theme .privacy-content li,
body.light-theme .terms-content li {
    color: #2d3555;
}

body.light-theme .privacy-content h2,
body.light-theme .terms-content h2,
body.light-theme .unsubscribe-method h2 {
    color: #2563eb;
}

body.light-theme .unsubscribe-method {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

body.light-theme .unsubscribe-form input {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(37, 99, 235, 0.3);
    color: #1a1f3a;
}

body.light-theme .unsubscribe-note {
    background: rgba(37, 99, 235, 0.1);
    border-left-color: #2563eb;
}

body.light-theme .unsubscribe-note p {
    color: #2d3555;
}

/* Updates Section */
.updates-subtitle {
    color: #c0cbff;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.updates-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
}

.update-item {
    background: rgba(9, 14, 34, 0.95);
    border: 1px solid rgba(96, 130, 255, 0.25);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.update-item:hover {
    transform: translateY(-2px);
    border-color: rgba(96, 130, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.update-date {
    font-size: 0.85rem;
    color: #5cb4ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.update-title {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.update-content {
    color: #c2cbff;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Mobile Accessibility Menu */
.mobile-accessibility-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(5, 8, 20, 0.98);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(121, 154, 255, 0.3);
    padding: 1rem;
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.mobile-accessibility-menu.active {
    display: block;
}

.mobile-theme-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(92, 178, 255, 0.1);
    border: 1px solid rgba(92, 178, 255, 0.3);
    border-radius: 12px;
    color: #d4ddff;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
}

.mobile-theme-toggle:last-child {
    margin-bottom: 0;
}

.mobile-theme-toggle:hover {
    background: rgba(92, 178, 255, 0.2);
    border-color: rgba(92, 178, 255, 0.5);
}

.mobile-theme-toggle .theme-icon {
    font-size: 1.3rem;
}

/* Roadmap User-Friendly Timeline */
.roadmap-user-friendly {
    margin-top: 2rem;
}

.roadmap-timeline {
    position: relative;
    padding-left: 2rem;
    max-width: 700px;
}

.roadmap-timeline::before {
    content: "";
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #5cb4ff, rgba(92, 180, 255, 0.3));
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -1.75rem;
    top: 0.3rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(92, 180, 255, 0.3);
    border: 3px solid #5cb4ff;
    box-shadow: 0 0 12px rgba(92, 180, 255, 0.6);
}

.timeline-item.current .timeline-marker {
    background: #5cb4ff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 12px rgba(92, 180, 255, 0.6);
    }
    50% {
        box-shadow: 0 0 20px rgba(92, 180, 255, 0.9);
    }
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.timeline-item.current .timeline-content h3 {
    color: #5cb4ff;
}

.timeline-content p {
    color: #c2cbff;
    font-size: 0.95rem;
    line-height: 1.6;
}

.roadmap-technical {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(96, 130, 255, 0.2);
}

.roadmap-technical-toggle {
    padding: 0.75rem 1rem;
    background: rgba(92, 178, 255, 0.1);
    border: 1px solid rgba(92, 178, 255, 0.3);
    border-radius: 8px;
    color: #d4ddff;
    font-size: 0.9rem;
    cursor: pointer;
    list-style: none;
    -webkit-user-select: none;
    user-select: none;
    transition: all 0.2s ease;
}

.roadmap-technical-toggle::-webkit-details-marker {
    display: none;
}

.roadmap-technical-toggle::after {
    content: "▼";
    float: right;
    transition: transform 0.3s ease;
}

.roadmap-technical[open] .roadmap-technical-toggle::after {
    transform: rotate(180deg);
}

.roadmap-technical-toggle:hover {
    background: rgba(92, 178, 255, 0.15);
    border-color: rgba(92, 178, 255, 0.5);
}

.roadmap-technical .roadmap {
    margin-top: 1.5rem;
}

/* FAQ Section */
.faq-list {
    margin-top: 1.5rem;
    max-width: 800px;
}

.faq-item {
    margin-bottom: 1rem;
    background: rgba(9, 14, 34, 0.95);
    border: 1px solid rgba(96, 130, 255, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(96, 130, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    cursor: pointer;
    list-style: none;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: #5cb4ff;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: "−";
    transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: #c2cbff;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(121, 154, 255, 0.25);
    padding: 2.5rem 0 1.5rem;
    background: rgba(2, 4, 12, 0.98);
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.footer-tagline {
    color: #aeb7e5;
    font-size: 0.9rem;
    line-height: 1.6;
    cursor: default;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: #aeb7e5;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(92, 178, 255, 0.3);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.footer-nav a:hover {
    color: #ffffff;
    text-decoration-color: #5cb4ff;
}

.footer-section a {
    color: #aeb7e5;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(92, 178, 255, 0.3);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.footer-section a:hover {
    color: #5cb4ff;
    text-decoration-color: #5cb4ff;
}

.footer-bottom {
    border-top: 1px solid rgba(121, 154, 255, 0.15);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright {
    font-size: 0.82rem;
    color: #aeb7e5;
    opacity: 0.9;
}

.contact-alternative {
    margin-top: 1.5rem;
    text-align: center;
    color: #d4ddff;
    font-size: 0.9rem;
}

.contact-email {
    text-align: center;
    margin: 0.5rem 0;
}

.contact-email a {
    color: #5cb4ff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-email a:hover {
    color: #ffb45c;
    text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(120deg, #5cb4ff, #ffb45c);
    border: none;
    border-radius: 50%;
    color: #050710;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 6px 20px rgba(2, 12, 36, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus {
    transform: translateY(-3px);
    box-shadow: 0 9px 26px rgba(2, 12, 36, 0.8);
    outline: 2px solid rgba(92, 178, 255, 0.5);
    outline-offset: 2px;
}

.back-to-top:active {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        row-gap: 1rem; /* Space between wrapped rows */
    }

    .header-right {
        gap: 0.5rem;
        justify-content: flex-end; /* Align right on mobile */
    }

    .digital-clock-container {
        display: none;
    }

    .lang-toggle {
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
    }

    .lang-menu {
        right: 0;
        left: auto;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(5, 8, 20, 0.98);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(121, 154, 255, 0.2);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 40;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav a {
        padding: 0.75rem 1rem;
        width: 100%;
        text-align: left;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .example-content {
        grid-template-columns: 1fr;
    }

    .support-social-grid {
        grid-template-columns: 1fr;
    }

    .support-options,
    .social-links {
        flex-direction: column;
    }

    .support-link,
    .social-link {
        width: 100%;
        justify-content: center;
    }

    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .accessibility-controls {
        gap: 0.4rem;
    }

    .theme-toggle {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1.25rem 1rem;
        font-size: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn.primary.cta-primary {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.75rem;
    }

    .footer-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-cta-text {
        align-items: center;
    }

    .footer-cta-sticky .btn {
        width: 100%;
    }

    .mockup-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mockup-divider {
        padding: 1rem 0;
    }

    .mockup-divider::before,
    .mockup-divider::after {
        width: 100%;
        height: 1px;
        left: 0;
    }

    .divider-text {
        padding: 0.4rem 0.8rem;
    }

    .mockup-actions {
        flex-direction: column;
    }

    .mockup-btn {
        width: 100%;
    }

    .roadmap-timeline {
        padding-left: 1.5rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    .timeline-marker {
        left: -1.25rem;
    }

    .mobile-accessibility-menu {
        display: block;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .mobile-accessibility-menu.active {
        transform: translateY(0);
    }

}

/* Light Theme */
body.light-theme {
    background: #ffffff;
    color: #1a1f3a;
}

body.light-theme .section {
    background: #ffffff;
}

body.light-theme .section.muted {
    background: #f8f9fa;
}

body.light-theme .site-header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(92, 178, 255, 0.3);
}

body.light-theme .hero h1 {
    color: #050710;
}

body.light-theme .section p,
body.light-theme .hero-subtitle {
    color: #2d3555;
}

body.light-theme .section h2 {
    color: #050710;
    font-weight: 700;
}

body.light-theme .lead-text {
    color: #1a1f3a;
}

body.light-theme .feature-list {
    color: #1a1f3a;
}

body.light-theme .feature-list li {
    color: #2d3555;
}

body.light-theme .hero-card,
body.light-theme .feature-card,
body.light-theme .roadmap-item,
body.light-theme .example-card {
    background: #ffffff;
    border-color: rgba(92, 178, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

body.light-theme .example-header h3 {
    color: #050710;
}

body.light-theme .example-claim,
body.light-theme .example-counter {
    background: #f8f9fa;
    border-color: rgba(92, 178, 255, 0.3);
}

body.light-theme .example-claim h4,
body.light-theme .example-counter h4 {
    color: #4a5568;
}

body.light-theme .example-claim p,
body.light-theme .example-counter p {
    color: #050710;
}

body.light-theme .example-sources {
    color: #4a5568;
}

body.light-theme .example-footer {
    color: #4a5568;
    border-top-color: rgba(92, 178, 255, 0.3);
}

body.light-theme .hero-card h2 {
    color: #050710;
}

body.light-theme .hero-card p {
    color: #1a1f3a;
}

body.light-theme .hero-card ul {
    color: #2d3555;
}

body.light-theme .feature-card h3 {
    color: #050710;
}

body.light-theme .feature-card p {
    color: #1a1f3a;
}

body.light-theme .roadmap-item h3 {
    color: #050710;
}

body.light-theme .roadmap-item ul {
    color: #1a1f3a;
}

body.light-theme .mission-highlight {
    background: rgba(92, 178, 255, 0.1);
    border-left-color: rgba(37, 99, 235, 0.6);
}

body.light-theme .mission-highlight h3 {
    color: #050710;
    font-weight: 700;
}

body.light-theme .mission-highlight p {
    color: #1a1f3a;
}

body.light-theme .mission-highlight strong {
    color: #050710;
}

body.light-theme .flexibility-note,
body.light-theme .roadmap-note {
    background: rgba(255, 180, 92, 0.12);
    border-left-color: rgba(255, 180, 92, 0.6);
    color: #1a1f3a;
}

body.light-theme .flexibility-note strong,
body.light-theme .roadmap-note strong {
    color: #050710;
}

body.light-theme .status-pill {
    background: rgba(37, 99, 235, 0.15);
    color: #1e40af;
}

body.light-theme .status-pill::before {
    background: #2563eb;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.6);
}

body.light-theme .badge {
    background: rgba(92, 240, 141, 0.2);
    color: #059669;
    border: 1px solid rgba(92, 240, 141, 0.4);
}

body.light-theme .coming-soon-badge {
    background: rgba(255, 180, 92, 0.2);
    color: #d97706;
    border: 1px solid rgba(255, 180, 92, 0.4);
}

body.light-theme .example-badge {
    background: rgba(92, 240, 141, 0.2);
    color: #059669;
    border: 1px solid rgba(92, 240, 141, 0.4);
}

body.light-theme .main-nav a {
    color: #1a1f3a;
    background: rgba(92, 178, 255, 0.08);
    border-color: rgba(92, 178, 255, 0.3);
}

body.light-theme .main-nav a:hover,
body.light-theme .main-nav a:focus {
    background: rgba(92, 178, 255, 0.2);
    border-color: rgba(92, 178, 255, 0.5);
    color: #050710;
}

body.light-theme .main-nav a.active {
    background: rgba(92, 178, 255, 0.25);
    color: #050710;
}

body.light-theme .scroll-indicator {
    background: linear-gradient(
        to bottom,
        rgba(92, 178, 255, 0.9),
        rgba(92, 178, 255, 0.5)
    );
    box-shadow: 
        0 0 8px rgba(92, 178, 255, 0.7),
        0 0 16px rgba(92, 178, 255, 0.5);
}

body.light-theme .lang-toggle,
body.light-theme .theme-toggle,
body.light-theme .colorblind-toggle {
    color: #1a1f3a;
}

body.light-theme .btn.ghost {
    border-color: rgba(37, 99, 235, 0.4);
    color: #1a1f3a;
}

body.light-theme .btn.ghost:hover,
body.light-theme .btn.ghost:focus {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.6);
    color: #050710;
}

body.light-theme .newsletter-row input[type="email"] {
    background: #ffffff;
    color: #1a1f3a;
    border-color: rgba(92, 178, 255, 0.4);
}

body.light-theme .newsletter-form label {
    color: #1a1f3a;
}

body.light-theme .support-section h3,
body.light-theme .social-section h3 {
    color: #050710;
    font-weight: 700;
}

body.light-theme #support h2,
body.light-theme #contact h2,
body.light-theme #faq h2,
body.light-theme #updates h2 {
    color: #050710;
    font-weight: 700;
}

body.light-theme #support p,
body.light-theme #contact p {
    color: #1a1f3a;
}

body.light-theme .support-note,
body.light-theme .social-note {
    color: #4a5568;
}

body.light-theme .social-link {
    background: color-mix(in srgb, rgba(0,0,0,.04) 60%, transparent);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .social-link:hover {
    background: color-mix(in srgb, var(--brand) 8%, rgba(0,0,0,.02));
    border-color: color-mix(in srgb, var(--brand) 40%, rgba(0,0,0,.1));
    box-shadow: 0 10px 26px rgba(0,0,0,.08);
}

body.light-theme .social-name {
    color: #1a1f3a;
}

body.light-theme .social-sub {
    color: #555d7a;
}

body.light-theme .social-x {
    --brand: #111111;
}

body.light-theme .contact-alternative {
    color: #2d3555;
}

body.light-theme .contact-email a {
    color: #2563eb;
}

body.light-theme .contact-email a:hover {
    color: #1e40af;
}

body.light-theme .form-note {
    color: #4a5568;
}

body.light-theme .form-message {
    color: #1a1f3a;
}

body.light-theme .site-footer {
    background: rgba(255, 255, 255, 0.98);
    border-top-color: rgba(92, 178, 255, 0.3);
}

body.light-theme .faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(92, 178, 255, 0.4);
}

body.light-theme .faq-question {
    color: #1a1f3a;
}

body.light-theme .faq-answer {
    color: #2d3555;
}

body.light-theme .footer-section h3 {
    color: #1a1f3a;
}

body.light-theme .footer-tagline,
body.light-theme .footer-nav a,
body.light-theme .footer-section a {
    color: #4a5568;
}

body.light-theme .footer-nav a:hover,
body.light-theme .footer-section a:hover {
    color: #1a1f3a;
}

body.light-theme .update-item {
    background: #ffffff;
    border-color: rgba(92, 178, 255, 0.4);
}

body.light-theme .update-title {
    color: #050710;
}

body.light-theme .update-content {
    color: #1a1f3a;
}

body.light-theme .update-date {
    color: #2563eb;
}

body.light-theme .updates-subtitle {
    color: #4a5568;
}

body.light-theme .timeline-content h3 {
    color: #1a1f3a;
}

body.light-theme .timeline-item.current .timeline-content h3 {
    color: #2563eb;
}

body.light-theme .timeline-content p {
    color: #4a5568;
}

body.light-theme .roadmap-timeline::before {
    background: linear-gradient(to bottom, #2563eb, rgba(37, 99, 235, 0.3));
}

body.light-theme .timeline-marker {
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.2);
}

body.light-theme .timeline-item.current .timeline-marker {
    background: #2563eb;
}

body.light-theme .roadmap-technical {
    border-top-color: rgba(92, 178, 255, 0.3);
}

body.light-theme .roadmap-technical-toggle {
    background: rgba(92, 178, 255, 0.1);
    border-color: rgba(92, 178, 255, 0.3);
    color: #1a1f3a;
}

body.light-theme .roadmap-technical-toggle:hover {
    background: rgba(92, 178, 255, 0.15);
    border-color: rgba(92, 178, 255, 0.5);
    color: #050710;
}

body.light-theme .footer-cta-sticky {
    background: rgba(255, 255, 255, 0.98);
    border-top-color: rgba(92, 178, 255, 0.3);
}

body.light-theme .footer-cta-text strong {
    color: #1a1f3a;
}

body.light-theme .footer-cta-text span {
    color: #4a5568;
}

body.light-theme .updates-cta {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 180, 92, 0.1));
    border-color: rgba(37, 99, 235, 0.3);
}

body.light-theme .updates-cta-text {
    color: #2d3555;
}

body.light-theme .example-card-mockup {
    background: #ffffff;
    border-color: rgba(92, 178, 255, 0.4);
}

body.light-theme .mockup-header {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(255, 180, 92, 0.08));
    border-bottom-color: rgba(92, 178, 255, 0.3);
}

body.light-theme .mockup-topic h3 {
    color: #050710;
}

body.light-theme .mockup-stats {
    color: #4a5568;
}

body.light-theme .mockup-claim-section,
body.light-theme .mockup-counter-section {
    background: #f8f9fa;
    border-color: rgba(37, 99, 235, 0.3);
}

body.light-theme .mockup-claim-header h4 {
    color: #4a5568;
}

body.light-theme .strength-label {
    color: #4a5568;
}

body.light-theme .mockup-claim-text {
    color: #050710;
}

body.light-theme .evidence-item {
    background: rgba(37, 99, 235, 0.08);
    border-left-color: rgba(37, 99, 235, 0.5);
}

body.light-theme .evidence-details strong {
    color: #050710;
}

body.light-theme .evidence-details span {
    color: #4a5568;
}

body.light-theme .strong-point-item {
    background: rgba(37, 99, 235, 0.08);
    border-left-color: rgba(37, 99, 235, 0.5);
}

body.light-theme .strong-point-item:hover {
    background: rgba(37, 99, 235, 0.12);
    border-left-color: rgba(37, 99, 235, 0.7);
}

body.light-theme .point-details strong {
    color: #050710;
}

body.light-theme .point-details span:not(.point-disputable) {
    color: #4a5568;
}

body.light-theme .point-disputable {
    background: rgba(217, 119, 6, 0.15);
    border-color: rgba(217, 119, 6, 0.3);
    color: #d97706;
}

body.light-theme .strong-point-item[data-impact="high"] {
    background: rgba(37, 99, 235, 0.12);
    border-left-color: rgba(37, 99, 235, 0.8);
}

body.light-theme .strong-point-item[data-impact="high"]:hover {
    background: rgba(37, 99, 235, 0.18);
    border-left-color: rgba(37, 99, 235, 1);
}

body.light-theme .strong-point-item[data-impact="medium"] {
    background: rgba(37, 99, 235, 0.08);
    border-left-color: rgba(37, 99, 235, 0.5);
}

body.light-theme .strong-point-item[data-impact="low"] {
    background: rgba(37, 99, 235, 0.06);
    border-left-color: rgba(37, 99, 235, 0.3);
}

body.light-theme .point-header strong,
body.light-theme .point-details strong {
    color: #050710;
}

body.light-theme .point-desc {
    color: #4a5568;
}

body.light-theme .point-context {
    color: #6366f1;
    border-left-color: rgba(99, 102, 241, 0.3);
}

body.light-theme .impact-badge.impact-high {
    background: rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.4);
    color: #dc2626;
}

body.light-theme .impact-badge.impact-medium {
    background: rgba(217, 119, 6, 0.15);
    border-color: rgba(217, 119, 6, 0.4);
    color: #d97706;
}

body.light-theme .impact-badge.impact-low {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.4);
    color: #6366f1;
}

body.light-theme .mockup-actions {
    background: #f8f9fa;
    border-top-color: rgba(92, 178, 255, 0.3);
}

body.light-theme .mockup-btn {
    color: #1a1f3a;
    border-color: rgba(92, 178, 255, 0.4);
}

body.light-theme .mockup-btn.secondary {
    color: #dc2626;
    border-color: rgba(220, 38, 38, 0.4);
}

body.light-theme .divider-text {
    background: #ffffff;
    border-color: rgba(37, 99, 235, 0.5);
    color: #2563eb;
}

body.light-theme .mockup-divider::before,
body.light-theme .mockup-divider::after {
    background: linear-gradient(to bottom, transparent, rgba(37, 99, 235, 0.3), transparent);
}

body.light-theme .example-note {
    color: #4a5568;
}

body.light-theme .example-intro {
    color: #2d3555;
}

/* Combined Light + Colorblind - Removed */

body.light-theme .logo-btn {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.3);
    color: #1a1f3a;
}

body.light-theme .logo-btn:hover {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.6);
    color: #050710;
}



body.light-theme .logo-btn:visited {
    color: #1a1f3a;
}

/* Fixes for Mobile Layout and Responsive Navigation */

/* 1. Language Menu Z-Index Fix */
.lang-menu {
    z-index: 105 !important;
}

/* 2. Light Theme Toggle Fix */
body.light-theme .theme-toggle {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

/* 3. Responsive Navigation - Mobile Drawer trigger earlier (1500px) */
@media (max-width: 1500px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(5, 8, 20, 0.98);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(121, 154, 255, 0.2);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 40;
        width: auto;
        pointer-events: auto;
        margin: 0; /* Reset desktop margins/clamps if any leaking */
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav a {
        padding: 0.75rem 1rem;
        width: 100%;
        text-align: left;
        transform: none;
        border-radius: 10px;
        min-width: 0;
    }
    
    .header-right {
        gap: 0.5rem;
    }
}

/* Mobile Menu Light Theme Fix */
@media (max-width: 1500px) {
    body.light-theme .main-nav {
        background: rgba(255, 255, 255, 0.98);
        border-bottom-color: rgba(92, 178, 255, 0.3);
    }

    body.light-theme .main-nav a {
        background: rgba(92, 178, 255, 0.05);
        color: #1a1f3a;
        border-color: rgba(92, 178, 255, 0.2);
    }

    body.light-theme .main-nav a:hover,
    body.light-theme .main-nav a:focus,
    body.light-theme .main-nav a.active {
        background: rgba(92, 178, 255, 0.15);
        color: #050710;
        border-color: rgba(92, 178, 255, 0.5);
    }
}
