/* 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", sans-serif;
    background: radial-gradient(circle at top, #101528 0, #050710 45%, #020309 100%);
    color: #f5f7ff;
    line-height: 1.6;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    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;
}

.skip-link:focus {
    top: 0;
}

/* 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;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 2px solid rgba(255, 180, 92, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    background: radial-gradient(circle at 30% 0%, #ffb45c, #ff6a3c 60%, #281520 100%);
    box-shadow: 0 0 18px rgba(255, 147, 74, 0.6);
}

.logo-text {
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    margin-right: 1rem;
}

/* Accessibility Controls */
.accessibility-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 0.5rem;
}

.theme-toggle,
.colorblind-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: rgba(92, 178, 255, 0.1);
    border: 1px solid rgba(92, 178, 255, 0.3);
    border-radius: 50%;
    color: #d4ddff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.theme-toggle:hover,
.theme-toggle:focus,
.colorblind-toggle:hover,
.colorblind-toggle:focus {
    background: rgba(92, 178, 255, 0.2);
    border-color: rgba(92, 178, 255, 0.5);
    transform: scale(1.1);
    outline: 2px solid rgba(92, 178, 255, 0.3);
    outline-offset: 2px;
}

.theme-icon,
.colorblind-icon {
    display: block;
    line-height: 1;
}

/* 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;
}

.main-nav {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.main-nav a {
    text-decoration: none;
    color: #d4ddff;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(121, 154, 255, 0.2);
    background: rgba(92, 178, 255, 0.05);
    transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease, border-color 0.15s ease;
    display: inline-block;
    text-align: center;
    line-height: 1.4;
}

.main-nav a:hover,
.main-nav a:focus {
    background: rgba(92, 178, 255, 0.2);
    border-color: rgba(92, 178, 255, 0.5);
    color: #ffffff;
    transform: translateY(-1px);
    outline: 2px solid rgba(92, 178, 255, 0.5);
    outline-offset: 2px;
}

/* 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: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 Links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    background: rgba(92, 178, 255, 0.08);
    border: 1px solid rgba(92, 178, 255, 0.2);
    color: #d4ddff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: rgba(92, 178, 255, 0.15);
    border-color: rgba(92, 178, 255, 0.4);
    transform: translateY(-1px);
}

.social-link.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.social-link.disabled:hover {
    transform: none;
    background: rgba(92, 178, 255, 0.08);
}

.coming-soon-badge {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 180, 92, 0.15);
    color: #ffb45c;
    margin-left: 0.3rem;
}

/* 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: 0.5rem;
    font-size: 0.85rem;
}

/* 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,
.mobile-colorblind-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,
.mobile-colorblind-toggle:last-child {
    margin-bottom: 0;
}

.mobile-theme-toggle:hover,
.mobile-colorblind-toggle:hover {
    background: rgba(92, 178, 255, 0.2);
    border-color: rgba(92, 178, 255, 0.5);
}

.mobile-theme-toggle .theme-icon,
.mobile-colorblind-toggle .colorblind-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;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: #aeb7e5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-section a {
    color: #aeb7e5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    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;
        align-items: center;
        justify-content: space-between;
    }

    .header-right {
        gap: 0.5rem;
    }

    .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,
    .colorblind-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);
    }

    .accessibility-controls {
        display: none;
    }
}

/* 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(255, 255, 255, 0.9);
    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.15);
    border-color: rgba(92, 178, 255, 0.5);
    color: #050710;
}

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 .support-link,
body.light-theme .social-link {
    color: #1a1f3a;
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(92, 178, 255, 0.4);
}

body.light-theme .support-link:hover,
body.light-theme .social-link:hover {
    background: rgba(92, 178, 255, 0.15);
    border-color: rgba(92, 178, 255, 0.6);
    color: #050710;
}

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;
}

/* Colorblind-Friendly Mode */
/* Use patterns, shapes, and high contrast instead of relying on color alone */
body.colorblind-mode .status-pill::before {
    background: #5cb4ff;
    box-shadow: 0 0 10px rgba(92, 180, 255, 0.9);
}

body.colorblind-mode .btn.primary {
    background: linear-gradient(120deg, #2563eb, #dc2626);
    position: relative;
}

body.colorblind-mode .btn.primary::after {
    content: "→";
    margin-left: 0.5rem;
}

body.colorblind-mode .badge {
    background: rgba(37, 99, 235, 0.2);
    color: #1e40af;
    border: 1px solid #2563eb;
}

body.colorblind-mode .coming-soon-badge {
    background: rgba(220, 38, 38, 0.2);
    color: #991b1b;
    border: 1px solid #dc2626;
}

body.colorblind-mode .example-claim {
    border-left: 4px solid #2563eb;
}

body.colorblind-mode .example-counter {
    border-left: 4px solid #dc2626;
}

body.colorblind-mode .feature-card h3::before {
    content: "■ ";
    margin-right: 0.3rem;
}

body.colorblind-mode .roadmap-item h3::before {
    content: "▸ ";
    margin-right: 0.3rem;
}

/* Combined Light + Colorblind */
body.light-theme.colorblind-mode {
    background: linear-gradient(circle at top, #ffffff 0, #f8f9fa 45%, #f1f3f5 100%);
}

body.light-theme.colorblind-mode .hero-card,
body.light-theme.colorblind-mode .feature-card,
body.light-theme.colorblind-mode .roadmap-item {
    border-width: 2px;
}

