/* Waiting List Overlay */
.waiting-list-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: var(--app-vh, 100vh);
    height: var(--app-vh, 100vh);
    background: var(--waitlist-overlay-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(12px, var(--safe-area-top)) max(12px, var(--safe-area-right)) max(12px, var(--safe-area-bottom)) max(12px, var(--safe-area-left));
    z-index: 9999;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    isolation: isolate;
}

.waiting-list-backdrop {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.waiting-list-backdrop-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
    filter: saturate(1.35) contrast(1.12) brightness(0.94);
    opacity: 0;
    transition: opacity 900ms linear;
    will-change: opacity, transform;
}

.waiting-list-backdrop-video.is-visible {
    opacity: 1;
}

.waiting-list-backdrop-scrim {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(880px 500px at 18% -10%, rgba(32, 143, 255, 0.56), transparent 70%),
        radial-gradient(960px 580px at 90% 110%, rgba(13, 103, 255, 0.48), transparent 72%),
        linear-gradient(135deg, rgba(5, 18, 43, 0.48), rgba(2, 14, 39, 0.58));
}

.waiting-list-container {
    width: 100%;
    max-width: 560px;
    padding: clamp(0.75rem, 2.2vh, 2rem);
    margin: auto;
    position: relative;
    z-index: 2;
}

.waiting-list-content {
    background: var(--waitlist-surface);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-2);
    text-align: center;
    animation: slideUp 0.6s ease-out;
    position: relative;
}

.waiting-list-controls {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-section {
    margin-bottom: 2.5rem;
}

.logo-large {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 102, 204, 0.2));
}

.logo-section h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.28ch;
    line-height: 1.15;
}

.logo-section h1 > span:empty {
    display: none;
}

.brand-glow {
    display: inline-block;
    margin: 0;
    color: var(--primary-blue);
    text-shadow: 0 0 10px rgba(0, 102, 204, 0.28), 0 0 24px rgba(0, 204, 136, 0.2);
}

html[data-theme="dark"] .brand-glow {
    color: rgb(var(--accent) / 1);
    text-shadow: 0 0 12px rgba(123, 196, 255, 0.34), 0 0 28px rgba(0, 204, 136, 0.25);
}

.hacker-word {
    display: inline-block;
    white-space: nowrap;
    letter-spacing: 0.04em;
    font-variant-ligatures: none;
}

.hacker-word.is-scrambling {
    text-shadow: 0 0 14px rgba(0, 102, 204, 0.35);
}

.logo-section p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.email-form {
    margin-bottom: 2rem;
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.input-group .field-floating {
    position: relative;
    flex: 1;
    min-width: 280px;
}

.input-group input {
    flex: 1;
    min-width: 280px;
    padding: 1rem 1.5rem;
    border: 2px solid var(--input-border);
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--input-bg);
    color: var(--text-dark);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.field-floating {
    position: relative;
}

.field-floating .floating-control {
    width: 100%;
    transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease, padding 220ms ease;
}

.field-floating .floating-control::placeholder {
    opacity: 0;
}

.field-floating .floating-label {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
    pointer-events: none;
    font-size: 0.94rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--text-light);
    background: var(--input-bg);
    padding: 0 0.34rem;
    transition: transform 220ms ease, font-size 220ms ease, letter-spacing 220ms ease, color 220ms ease, opacity 220ms ease;
}

.field-floating.is-focused .floating-label,
.field-floating.has-value .floating-label {
    transform: translateY(calc(-50% - 1.02rem)) scale(0.92);
    font-size: 0.73rem;
    letter-spacing: 0.07em;
    color: color-mix(in srgb, rgb(var(--accent) / 1) 62%, rgb(var(--text) / 1) 38%);
    opacity: 0.96;
}

.field-floating.is-focused .floating-control,
.field-floating.has-value .floating-control {
    padding-top: 1.3rem;
    padding-bottom: 0.7rem;
}

.form-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.form-error {
    color: color-mix(in srgb, rgb(var(--accent) / 1) 30%, rgb(var(--text) / 1) 70%);
    font-size: 0.9rem;
    margin: 0 0 0.75rem;
}

.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin: 0 0 0.95rem;
    text-align: left;
    color: var(--text-light);
    font-size: 0.86rem;
    line-height: 1.45;
}

.consent-row input[type="checkbox"] {
    margin-top: 0.22rem;
    accent-color: var(--primary-blue);
    inline-size: 1rem;
    block-size: 1rem;
    flex: 0 0 auto;
}

.success-state {
    animation: fadeIn 0.6s ease-out;
}

.success-icon {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    animation: scaleIn 0.6s ease-out;
}

.success-state h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.rank-display {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.rank-display::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.rank-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.rank-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.referral-section {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--radius-sm);
    margin-bottom: 2rem;
}

.referral-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.referral-section p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.referral-actions {
    margin-bottom: 1.5rem;
}

.referral-link {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.referral-link input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--input-border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background: var(--input-bg);
    color: var(--text-dark);
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.share-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
    font-size: 1.2rem;
}

.share-btn.linkedin {
    background: color-mix(in srgb, rgb(var(--accent) / 1) 68%, rgb(var(--bg) / 1) 32%);
}

.share-btn.email {
    background: var(--primary-blue);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-1);
}

.referral-stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.leaderboard-preview {
    background: var(--light-gray);
    border: 1px solid var(--border-soft);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}

.leaderboard-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.leaderboard-eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.35rem;
}

.leaderboard-preview h3 {
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

.leaderboard-subtitle {
    color: var(--text-light);
    margin-bottom: 0;
}

.leaderboard-link-btn {
    white-space: nowrap;
    align-self: center;
}

.leaderboard-referral {
    margin-bottom: 1rem;
}

.leaderboard-referral-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.45rem;
}

.leaderboard-referral-field {
    display: flex;
    gap: 0.5rem;
}

.leaderboard-referral-field input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--input-border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background: var(--input-bg);
    color: var(--text-dark);
}

.leaderboard-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    background: var(--bg-surface);
}

.leaderboard-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
}

.leaderboard-table th,
.leaderboard-table td {
    padding: 0.75rem 0.9rem;
    text-align: left;
}

.leaderboard-table th {
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-light);
    background: rgb(var(--surface-3) / 0.28);
}

.leaderboard-table tbody tr + tr {
    border-top: 1px solid var(--border-soft);
}

.leaderboard-table td:first-child {
    font-weight: 700;
    color: var(--primary-blue);
}

.waitlist-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--surface-soft-bg);
    border-radius: var(--radius-sm);
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.info-item i {
    color: var(--primary-blue);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Responsive Design for Waiting List */
@media (max-width: 768px) {
    .waiting-list-overlay {
        align-items: flex-start;
    }

    .waiting-list-container {
        padding: 0.7rem;
    }
    
    .waiting-list-content {
        padding: 1.5rem 1.1rem;
        margin: 0;
        border-radius: 20px;
    }

    .waiting-list-controls {
        top: 0.75rem;
        right: 0.75rem;
    }
    
    .logo-section h1 {
        font-size: 1.5rem;
    }
    
    .input-group {
        flex-direction: column;
    }

    .input-group input {
        min-width: 0;
    }

    .input-group .field-floating {
        min-width: 0;
    }
    
    .rank-number {
        font-size: 2.5rem;
    }
    
    .referral-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .leaderboard-preview {
        padding: 1.1rem;
    }

    .leaderboard-preview-header {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 0.9rem;
    }

    .leaderboard-link-btn {
        width: 100%;
        justify-content: center;
    }

    .leaderboard-referral-field {
        flex-direction: column;
    }
    
    .waitlist-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
        margin-top: 1.25rem;
    }

    .logo-large {
        height: 48px;
        margin-bottom: 1rem;
    }

    .logo-section {
        margin-bottom: 1.6rem;
    }
}

@media (max-width: 520px) {
    .trust-strip-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-height: 780px) {
    .waiting-list-overlay {
        align-items: flex-start;
    }

    .waiting-list-container {
        padding: 0.5rem;
    }

    .waiting-list-content {
        padding: 1.2rem 0.95rem;
    }

    .logo-section {
        margin-bottom: 1.3rem;
    }

    .logo-large {
        height: 42px;
        margin-bottom: 0.8rem;
    }

    .logo-section h1 {
        font-size: 1.3rem;
        line-height: 1.12;
    }

    .logo-section p {
        font-size: 0.94rem;
    }

    .rank-display,
    .referral-section {
        padding: 1.1rem;
    }

    .waitlist-info {
        padding: 0.9rem;
        margin-top: 1rem;
    }

}

@media (prefers-reduced-motion: reduce) {
    .waiting-list-backdrop-video {
        filter: saturate(1.1) contrast(1.04) brightness(0.9);
    }

    .hero-gradient-bg,
    .hero-scroll-indicator,
    .hero-scroll-arrow::before,
    .hero-layer,
    .grain-overlay,
    .why-now-orb,
    .why-now-pulse-bar,
    .confidence-meter-fill,
    .learn-orb,
    .signal-blend-viz::before,
    .signal-blend-humans,
    .signal-blend-human-stream,
    .signal-blend-human-dot,
    .signal-blend-ai-layer,
    .signal-blend-merge-line::before,
    .signal-blend-output-core::before,
    .signal-blend-output-core::after,
    .why-now-live-value .counter,
    .investor-orb {
        animation: none !important;
    }

    .hero-reveal,
    .why-now-page .reveal-on-scroll,
    .learn-topic-card,
    .investor-opportunity-card,
    .fade-in,
    .fade-up,
    .slide-right,
    .slide-left {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .feature-card-flip {
        transition: none !important;
    }

    .btn-ripple {
        animation: none !important;
        opacity: 0 !important;
    }

    .btn,
    .waitlist-status-fab,
    .field-floating .floating-control,
    .field-floating .floating-label {
        transition: none !important;
    }

    .grain-overlay {
        display: none !important;
    }

    .confidence-meter-fill {
        transform: scaleX(1) !important;
    }

    .section-processing::before {
        animation: none !important;
        transform: none !important;
        opacity: 0 !important;
    }

    .section-processing.is-section-pending > :not(.section-processing-loader) {
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .section-processing.is-content-visible > :not(.section-processing-loader) {
        animation: none !important;
        opacity: 1 !important;
    }

    .supporters-logo-grid.logo-reveal-ready > .supporter-logo-card {
        transform: none !important;
        filter: none !important;
        transition-property: opacity, box-shadow, border-color !important;
    }

    .supporters-logo-grid.logo-reveal-ready.is-logo-live > .supporter-logo-card:hover {
        transform: scale(1.02) !important;
        filter: none !important;
    }
}

html[data-animations="off"] {
    scroll-behavior: auto;
}

html[data-animations="off"] .hero-gradient-bg,
html[data-animations="off"] .hero-scroll-indicator,
html[data-animations="off"] .hero-scroll-arrow::before,
html[data-animations="off"] .hero-layer,
html[data-animations="off"] .grain-overlay,
html[data-animations="off"] .card,
html[data-animations="off"] .why-now-orb,
html[data-animations="off"] .why-now-pulse-bar,
html[data-animations="off"] .confidence-meter-fill,
html[data-animations="off"] .learn-orb,
html[data-animations="off"] .signal-blend-viz::before,
html[data-animations="off"] .signal-blend-humans,
html[data-animations="off"] .signal-blend-human-stream,
html[data-animations="off"] .signal-blend-human-dot,
html[data-animations="off"] .signal-blend-ai-layer,
html[data-animations="off"] .signal-blend-merge-line::before,
html[data-animations="off"] .signal-blend-output-core::before,
html[data-animations="off"] .signal-blend-output-core::after,
html[data-animations="off"] .why-now-live-value .counter,
html[data-animations="off"] .investor-orb {
    animation: none !important;
}

html[data-animations="off"] .confidence-meter-fill {
    transform: scaleX(1) !important;
}

html[data-animations="off"] .grain-overlay {
    display: none !important;
}

html[data-animations="off"] .section-processing::before {
    animation: none !important;
    transform: none !important;
    opacity: 0 !important;
}

html[data-animations="off"] .section-processing.is-section-pending > :not(.section-processing-loader) {
    opacity: 1 !important;
    pointer-events: auto !important;
}

html[data-animations="off"] .section-processing.is-content-visible > :not(.section-processing-loader) {
    animation: none !important;
    opacity: 1 !important;
}

html[data-animations="off"] .supporters-logo-grid.logo-reveal-ready > .supporter-logo-card {
    transform: none !important;
    filter: none !important;
    transition-property: opacity, box-shadow, border-color !important;
}

html[data-animations="off"] .supporters-logo-grid.logo-reveal-ready.is-logo-live > .supporter-logo-card:hover {
    transform: scale(1.02) !important;
    filter: none !important;
}

html[data-animations="off"] .hero-reveal,
html[data-animations="off"] .fade-in,
html[data-animations="off"] .fade-up,
html[data-animations="off"] .slide-right,
html[data-animations="off"] .slide-left {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

html[data-animations="off"] .feature-card-flip {
    transition: none !important;
}

html[data-animations="off"] .btn-ripple {
    animation: none !important;
    opacity: 0 !important;
}

html[data-animations="off"] .btn:hover,
html[data-animations="off"] .btn:active,
html[data-animations="off"] .waitlist-status-fab:hover,
html[data-animations="off"] .waitlist-status-fab:active {
    transform: none !important;
}

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

:root {
    /* Color Tokens */
    --bg: 244 248 253;
    --surface-1: 255 255 255;
    --surface-2: 232 242 253;
    --surface-3: 208 225 244;
    --stroke: 162 184 212;
    --muted: 86 100 118;
    --text: 34 48 67;
    --accent: 16 122 228;
    /* Spacing Tokens */
    --space-4: 4px;
    --space-8: 8px;
    --space-12: 12px;
    --space-16: 16px;
    --space-24: 24px;
    --space-32: 32px;
    --space-48: 48px;
    --space-64: 64px;
    /* Radius Tokens */
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    /* Shadow Tokens */
    --shadow-1: 0 8px 20px rgb(var(--bg) / 0.22);
    --shadow-2: 0 16px 34px rgb(var(--bg) / 0.3);

    /* Compatibility Aliases */
    --primary-blue: rgb(var(--accent) / 1);
    --primary-green: color-mix(in srgb, rgb(var(--accent) / 1) 58%, rgb(var(--surface-3) / 1) 42%);
    --dark-blue: color-mix(in srgb, rgb(var(--accent) / 1) 72%, rgb(var(--bg) / 1) 28%);
    --light-blue: rgb(var(--surface-2) / 1);
    --light-green: color-mix(in srgb, rgb(var(--surface-2) / 1) 70%, rgb(var(--surface-3) / 1) 30%);
    --dark-gray: rgb(var(--bg) / 1);
    --light-gray: color-mix(in srgb, rgb(var(--surface-2) / 1) 66%, rgb(var(--surface-1) / 1) 34%);
    --text-dark: rgb(var(--text) / 1);
    --text-light: rgb(var(--muted) / 1);
    --white: rgb(var(--surface-1) / 1);
    --ink-deep: color-mix(in srgb, rgb(var(--text) / 1) 86%, rgb(var(--bg) / 1) 14%);
    --ink-mid: color-mix(in srgb, rgb(var(--text) / 1) 74%, rgb(var(--bg) / 1) 26%);
    --bg-page: rgb(var(--bg) / 1);
    --bg-surface: rgb(var(--surface-1) / 1);
    --waitlist-overlay-bg: linear-gradient(
        135deg,
        rgb(var(--accent) / 1) 0%,
        color-mix(in srgb, rgb(var(--accent) / 1) 58%, rgb(var(--surface-3) / 1) 42%) 100%
    );
    --waitlist-surface: rgb(var(--surface-1) / 0.95);
    --input-border: rgb(var(--stroke) / 0.58);
    --input-bg: rgb(var(--surface-1) / 1);
    --border-soft: rgb(var(--stroke) / 0.3);
    --surface-soft-bg: rgb(var(--surface-3) / 0.28);
    --glass-blue: rgb(var(--surface-2) / 0.72);
    --navbar-bg: rgb(var(--surface-1) / 0.95);
    --navbar-bg-scrolled: rgb(var(--surface-1) / 0.98);
    --hero-bg: linear-gradient(135deg, rgb(var(--surface-2) / 1) 0%, rgb(var(--surface-3) / 0.68) 100%);
    --how-bg: linear-gradient(135deg, rgb(var(--surface-3) / 0.42) 0%, rgb(var(--surface-2) / 1) 100%);
    --chart-grid: rgb(var(--stroke) / 0.52);
    --chart-line: rgb(var(--accent) / 1);
    --chart-fill-top: rgb(var(--accent) / 0.28);
    --chart-fill-bottom: rgb(var(--surface-3) / 0.36);
    --chart-point-inner: rgb(var(--surface-1) / 1);
    --scrollbar-track: rgb(var(--surface-2) / 1);
    --type-h1: clamp(2.2rem, 4.4vw, 3.4rem);
    --type-h2: clamp(1.7rem, 3.1vw, 2.4rem);
    --type-h3: clamp(1.2rem, 2.1vw, 1.45rem);
    --type-body: 1rem;
    --type-small: 0.875rem;
    --lh-h1: 1.12;
    --lh-h2: 1.2;
    --lh-h3: 1.32;
    --lh-body: 1.6;
    --lh-small: 1.45;
    --rhythm-unit: var(--space-8);
    --app-vh: 100svh;
    --safe-area-top: env(safe-area-inset-top, 0px);
    --safe-area-right: env(safe-area-inset-right, 0px);
    --safe-area-bottom: env(safe-area-inset-bottom, 0px);
    --safe-area-left: env(safe-area-inset-left, 0px);
    --anchor-scroll-offset: 96px;
    --gradient-primary: linear-gradient(
        135deg,
        rgb(var(--accent) / 1),
        color-mix(in srgb, rgb(var(--accent) / 1) 58%, rgb(var(--surface-3) / 1) 42%)
    );
    --gradient-secondary: linear-gradient(
        135deg,
        color-mix(in srgb, rgb(var(--accent) / 1) 52%, rgb(var(--surface-3) / 1) 48%),
        rgb(var(--accent) / 1)
    );
    --scroll-reveal-duration: 360ms;
    --scroll-reveal-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html[data-theme="light"] {
    color-scheme: light;
}

html[data-theme="dark"] {
    color-scheme: dark;
    --bg: 10 19 33;
    --surface-1: 16 28 46;
    --surface-2: 20 37 60;
    --surface-3: 30 53 83;
    --stroke: 119 152 194;
    --muted: 162 184 213;
    --text: 229 237 246;
    --accent: 102 181 255;

    --primary-blue: rgb(var(--accent) / 1);
    --primary-green: color-mix(in srgb, rgb(var(--accent) / 1) 58%, rgb(var(--surface-3) / 1) 42%);
    --dark-blue: color-mix(in srgb, rgb(var(--accent) / 1) 70%, rgb(var(--bg) / 1) 30%);
    --light-blue: rgb(var(--surface-2) / 1);
    --light-green: color-mix(in srgb, rgb(var(--surface-2) / 1) 72%, rgb(var(--surface-3) / 1) 28%);
    --light-gray: rgb(var(--surface-2) / 0.8);
    --dark-gray: rgb(var(--bg) / 1);
    --text-dark: rgb(var(--text) / 1);
    --text-light: rgb(var(--muted) / 1);
    --bg-page: rgb(var(--bg) / 1);
    --bg-surface: rgb(var(--surface-1) / 1);
    --waitlist-overlay-bg: linear-gradient(
        135deg,
        color-mix(in srgb, rgb(var(--accent) / 1) 42%, rgb(var(--bg) / 1) 58%) 0%,
        color-mix(in srgb, rgb(var(--accent) / 1) 24%, rgb(var(--surface-3) / 1) 76%) 100%
    );
    --waitlist-surface: rgb(var(--surface-1) / 0.92);
    --input-border: rgb(var(--stroke) / 0.42);
    --input-bg: rgb(var(--surface-1) / 1);
    --border-soft: rgb(var(--stroke) / 0.34);
    --surface-soft-bg: rgb(var(--surface-2) / 0.72);
    --navbar-bg: rgb(var(--bg) / 0.86);
    --navbar-bg-scrolled: rgb(var(--bg) / 0.97);
    --chart-grid: rgb(var(--stroke) / 0.25);
    --chart-line: rgb(var(--accent) / 1);
    --chart-fill-top: rgb(var(--accent) / 0.24);
    --chart-fill-bottom: rgb(var(--surface-3) / 0.26);
    --chart-point-inner: rgb(var(--surface-1) / 1);
    --scrollbar-track: rgb(var(--surface-1) / 1);
}

body {
    font-family: 'Inter', sans-serif;
    font-size: var(--type-body);
    line-height: var(--lh-body);
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-page);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    background-repeat: repeat;
    mix-blend-mode: soft-light;
    animation: grainDrift 14s steps(10) infinite;
    will-change: background-position;
}

@keyframes grainDrift {
    0% {
        background-position: 0 0;
    }
    25% {
        background-position: 18px -14px;
    }
    50% {
        background-position: -24px 20px;
    }
    75% {
        background-position: 14px 12px;
    }
    100% {
        background-position: 0 0;
    }
}

html.is-low-performance-device .grain-overlay {
    display: none;
}

@media (update: slow) {
    .grain-overlay {
        display: none;
    }
}

#mainWebsite {
    min-height: var(--app-vh, 100vh);
}

input::placeholder {
    color: var(--text-light);
}

[data-i18n] {
    transition: opacity 0.22s ease, transform 0.22s ease;
}

body.is-language-switching [data-i18n] {
    opacity: 0;
    transform: translateY(4px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-24);
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--space-24);
}

.section-grid > * {
    grid-column: 1 / -1;
}

h1, .type-h1, .hero-title {
    font-size: var(--type-h1);
    line-height: var(--lh-h1);
}

h2, .type-h2, .section-title, .problem-title, .technology-title, .market-size-title, .team-title, .vision-headline, .investor-access-title {
    font-size: var(--type-h2);
    line-height: var(--lh-h2);
}

h3, .type-h3, .feature-card h3, .step-content h3, .vision-product-card h3, .problem-card h3, .technology-bullets h3 {
    font-size: var(--type-h3);
    line-height: var(--lh-h3);
}

p, .type-body {
    font-size: var(--type-body);
    line-height: var(--lh-body);
}

small, .type-small {
    font-size: var(--type-small);
    line-height: var(--lh-small);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--navbar-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-soft);
    transition: var(--transition);
}

.navbar.navbar-scrolled {
    background: var(--navbar-bg-scrolled);
    box-shadow: var(--shadow-1);
}

.nav-container {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    min-width: 0;
    flex-wrap: nowrap;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex: 0 0 auto;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.nav-logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-menu,
.navbar-menu {
    display: flex;
    list-style: none;
    gap: 18px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex: 1 1 auto;
    min-width: 0;
}

.nav-item {
    flex: 0 0 auto;
    min-width: 0;
}

.nav-link {
    display: block;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    border-radius: 8px;
}

.nav-desktop-link.nav-link--quant-lab {
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgb(var(--accent) / 0.34);
    background: linear-gradient(135deg, rgb(var(--accent) / 0.2), rgb(var(--primary) / 0.22));
    color: rgb(var(--text) / 1);
    box-shadow: 0 0 0 1px rgb(var(--accent) / 0.16), 0 0 18px rgb(var(--primary) / 0.24);
    animation: navQuantLabGlow 2.4s ease-in-out infinite;
}

.nav-desktop-link.nav-link--quant-lab::after {
    display: none;
}

.nav-desktop-link.nav-link--quant-lab:hover,
.nav-desktop-link.nav-link--quant-lab.is-active {
    color: rgb(var(--text) / 1);
    border-color: rgb(var(--accent) / 0.48);
    box-shadow: 0 0 0 1px rgb(var(--accent) / 0.24), 0 0 22px rgb(var(--primary) / 0.34);
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link.is-active {
    color: var(--primary-blue);
}

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

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

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

@keyframes navQuantLabGlow {
    0%,
    100% {
        box-shadow: 0 0 0 1px rgb(var(--accent) / 0.16), 0 0 18px rgb(var(--primary) / 0.24);
    }
    50% {
        box-shadow: 0 0 0 1px rgb(var(--accent) / 0.3), 0 0 28px rgb(var(--primary) / 0.46);
    }
}

.nav-more {
    position: relative;
    flex: 0 0 auto;
}

.nav-more-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid var(--border-soft);
    background: var(--bg-surface);
    color: var(--text-dark);
    border-radius: 999px;
    padding: 0.48rem 0.82rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.nav-more-toggle:hover,
.nav-more-toggle.is-active,
.nav-more.has-active .nav-more-toggle {
    color: var(--primary-blue);
    box-shadow: var(--shadow-1);
}

.nav-more-toggle:focus-visible {
    outline: 3px solid rgba(0, 102, 204, 0.28);
    outline-offset: 2px;
}

.nav-more.is-open .nav-more-toggle i {
    transform: rotate(180deg);
}

.nav-more-toggle i {
    transition: transform 0.2s ease;
}

.nav-more-menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    min-width: max(200px, 16vw);
    max-width: min(340px, 70vw);
    max-height: min(64vh, 420px);
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 0.46rem;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    background: var(--navbar-bg-scrolled);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-2);
    z-index: 1006;
}

.nav-more-menu .nav-item {
    width: 100%;
}

.nav-more-menu .nav-link {
    display: block;
    width: 100%;
    padding: 0.58rem 0.7rem;
    border-radius: 10px;
    white-space: normal;
    line-height: 1.3;
}

.nav-more-menu .nav-link::after {
    display: none;
}

.nav-more-menu .nav-link:hover,
.nav-more-menu .nav-link.is-active {
    background: var(--glass-blue);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 0 0 auto;
    min-width: 0;
}

.nav-cta > .btn {
    white-space: nowrap;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border-soft);
    background: var(--bg-surface);
    border-radius: 999px;
    padding: 0.2rem;
    box-shadow: var(--shadow-1);
    overflow: hidden;
}

.language-option {
    border: none;
    background: transparent;
    color: var(--text-light);
    padding: 0;
    margin-inline: 0;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    max-width: 0;
    pointer-events: none;
    transform: translateX(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, max-width 0.24s ease, padding 0.24s ease, margin 0.24s ease;
}

.language-option.is-active,
.language-switcher.is-open .language-option,
.language-switcher:hover .language-option,
.language-switcher:focus-within .language-option {
    opacity: 1;
    visibility: visible;
    max-width: 3.4rem;
    margin-inline: 0.1rem;
    padding: 0.35rem 0.55rem;
    pointer-events: auto;
    transform: translateX(0);
}

.language-option:hover {
    color: var(--text-dark);
}

.language-option.is-active {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-1);
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border-soft);
    background: var(--bg-surface);
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-1);
}

.theme-toggle:focus-visible {
    outline: 3px solid rgba(0, 102, 204, 0.28);
    outline-offset: 2px;
}

.theme-toggle i {
    pointer-events: none;
}

.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    background: var(--bg-surface);
    padding: 0;
    flex: 0 0 auto;
    transition: var(--transition);
}

.hamburger:hover {
    box-shadow: var(--shadow-1);
}

.hamburger:focus-visible {
    outline: 3px solid rgba(0, 102, 204, 0.28);
    outline-offset: 2px;
}

.hamburger span {
    width: 18px;
    height: 2px;
    background: var(--primary-blue);
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 999px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-drawer-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--navbar-height, 76px);
    bottom: 0;
    background: rgb(var(--bg) / 0.42);
    opacity: 0;
    transition: opacity 0.18s ease;
    z-index: 1002;
}

.nav-drawer-backdrop.is-visible {
    opacity: 1;
}

.nav-drawer {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--navbar-height, 76px);
    bottom: 0;
    background: var(--navbar-bg-scrolled);
    border-top: 1px solid var(--border-soft);
    backdrop-filter: blur(14px);
    padding: 0.9rem 1rem 1.25rem;
    overflow-y: auto;
    z-index: 1003;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-drawer.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-drawer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.34rem;
}

.nav-drawer-item {
    margin: 0;
}

.nav-drawer-link {
    display: block;
    padding: 0.72rem 0.82rem;
    border-radius: 11px;
    white-space: normal;
    line-height: 1.35;
}

.nav-drawer-link::after {
    display: none;
}

.nav-drawer-link:hover,
.nav-drawer-link.is-active {
    background: var(--glass-blue);
}

body.nav-drawer-open {
    overflow: hidden;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transform: translateY(0);
    transition: transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 220ms cubic-bezier(0.22, 0.61, 0.36, 1), border-color 220ms ease, background-color 220ms ease, color 220ms ease, filter 180ms ease;
}

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

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(1px);
    transition-duration: 120ms;
}

.btn:focus-visible {
    outline: 2px solid rgb(var(--accent) / 0.85);
    outline-offset: 3px;
    box-shadow: 0 0 0 3px rgb(var(--surface-1) / 0.84), 0 0 0 6px rgb(var(--accent) / 0.28);
}

.btn-ripple {
    position: absolute;
    pointer-events: none;
    width: var(--ripple-size, 120px);
    height: var(--ripple-size, 120px);
    border-radius: 999px;
    background: radial-gradient(circle, rgb(255 255 255 / 0.52) 0%, rgb(255 255 255 / 0.2) 36%, rgb(255 255 255 / 0) 72%);
    transform: scale(0);
    opacity: 0.5;
    z-index: 0;
    animation: btnRipple 280ms ease-out forwards;
}

@keyframes btnRipple {
    0% {
        transform: scale(0);
        opacity: 0.52;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-1);
}

.btn-primary:hover {
    box-shadow: var(--shadow-2);
}

.btn-primary:active {
    filter: brightness(0.92) saturate(0.94);
    box-shadow: 0 6px 18px rgb(var(--accent) / 0.34);
}

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

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-secondary:active {
    background: color-mix(in srgb, var(--primary-blue) 84%, rgb(var(--bg) / 1) 16%);
    border-color: color-mix(in srgb, var(--primary-blue) 88%, rgb(var(--bg) / 1) 12%);
    color: var(--white);
    box-shadow: 0 6px 16px rgb(var(--accent) / 0.22);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-emerald {
    background: linear-gradient(140deg, #1eb981 0%, #14a06f 100%);
    color: #f4fff9;
    border: 1px solid rgba(141, 255, 210, 0.55);
    box-shadow: 0 10px 24px rgba(5, 57, 40, 0.35);
}

.btn-emerald:hover {
    background: linear-gradient(140deg, #23cb8d 0%, #179f70 100%);
    box-shadow: 0 14px 30px rgba(5, 57, 40, 0.42);
}

.btn-emerald:active {
    filter: brightness(0.92);
    box-shadow: 0 6px 18px rgba(4, 52, 36, 0.38);
}

.btn-emerald-line {
    background: rgba(15, 50, 39, 0.28);
    color: #7ff3c2;
    border: 1px solid rgba(91, 241, 186, 0.7);
    box-shadow: inset 0 0 0 1px rgba(21, 112, 80, 0.32);
}

.btn-emerald-line:hover {
    background: rgba(20, 73, 56, 0.42);
    color: #a6ffd9;
}

.btn-emerald-line:active {
    background: rgba(22, 82, 62, 0.58);
    color: #cfffe9;
    border-color: rgba(106, 248, 194, 0.84);
}

.waitlist-status-fab {
    position: fixed;
    right: max(clamp(14px, 2vw, 24px), calc(var(--safe-area-right) + 10px));
    bottom: max(clamp(14px, 2vw, 24px), calc(var(--safe-area-bottom) + 10px));
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.82rem 1rem;
    border-radius: 999px;
    border: 1px solid rgb(var(--accent) / 0.56);
    background: linear-gradient(145deg, rgb(var(--surface-2) / 0.92), rgb(var(--surface-1) / 0.94));
    color: rgb(var(--text) / 1);
    box-shadow: 0 12px 30px rgb(var(--bg) / 0.45);
    backdrop-filter: blur(8px);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    isolation: isolate;
    overflow: hidden;
}

.waitlist-status-fab i {
    color: rgb(var(--accent) / 1);
}

.waitlist-status-fab:hover {
    transform: translateY(-2px);
    border-color: rgb(var(--accent) / 0.8);
    box-shadow: 0 16px 34px rgb(var(--bg) / 0.55);
}

.waitlist-status-fab:active {
    transform: translateY(1px);
    box-shadow: 0 8px 20px rgb(var(--bg) / 0.52);
}

.waitlist-status-fab:focus-visible {
    outline: 2px solid rgb(var(--accent) / 0.9);
    outline-offset: 2px;
}

/* Hero Section */
.hero {
    padding: 6.8rem 0 3.4rem;
    position: relative;
    overflow: clip;
    background: #071633;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><defs><pattern id="hero-grain" width="120" height="120" patternUnits="userSpaceOnUse"><circle cx="14" cy="18" r="1.2" fill="%23ffffff" opacity="0.11"/><circle cx="74" cy="32" r="1" fill="%23d9ebff" opacity="0.12"/><circle cx="98" cy="90" r="1.5" fill="%23b8d8ff" opacity="0.1"/></pattern></defs><rect width="120" height="120" fill="url(%23hero-grain)"/></svg>');
    opacity: 0.38;
    z-index: 1;
    pointer-events: none;
}

.hero-gradient-bg {
    position: absolute;
    inset: -12% -12% -8%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 18%, rgb(67 171 255 / 0.48), transparent 44%),
        radial-gradient(circle at 78% 12%, rgb(140 115 255 / 0.42), transparent 47%),
        radial-gradient(circle at 54% 92%, rgb(57 226 188 / 0.24), transparent 42%),
        linear-gradient(125deg, #04142f 0%, #0c2f6f 34%, #283d80 62%, #4b2e90 100%);
    background-size: 180% 180%;
    animation: heroGradientShift 20s ease-in-out infinite;
}

.hero-parallax-layers {
    position: absolute;
    inset: -8% 0 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-layer {
    position: absolute;
    opacity: 0.56;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.hero-layer svg {
    width: 100%;
    height: auto;
    display: block;
}

.hero-layer--orb-a {
    width: clamp(180px, 25vw, 340px);
    top: 8%;
    left: -4%;
}

.hero-layer--orb-b {
    width: clamp(220px, 28vw, 360px);
    top: 18%;
    right: -7%;
    opacity: 0.5;
}

.hero-layer--wave {
    left: 0;
    right: 0;
    bottom: -3.8rem;
    opacity: 0.52;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-24);
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--space-24);
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    grid-column: span 7;
}

.hero-visual {
    grid-column: span 5;
}

.deferred-section {
    content-visibility: auto;
    contain-intrinsic-size: 980px;
}

.hero-title {
    font-weight: 800;
    margin-bottom: var(--space-24);
    color: rgb(237 246 255 / 0.98);
}

.gradient-text {
    color: rgb(186 226 255 / 0.98);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .gradient-text {
        background-image: linear-gradient(
            105deg,
            #63e8de 0%,
            #62c7ff 28%,
            #f4fbff 50%,
            #89a7ff 72%,
            #63e8de 100%
        );
        background-size: 240% 100%;
        background-position: 0% 50%;
        background-repeat: no-repeat;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }
}

@keyframes heroHeadlineScan {
    from {
        background-position: 0% 50%;
    }
    to {
        background-position: 100% 50%;
    }
}

@supports (animation-timeline: --page-scroll) and ((-webkit-background-clip: text) or (background-clip: text)) {
    .hero .gradient-text {
        animation-name: heroHeadlineScan;
        animation-duration: 1ms;
        animation-timing-function: linear;
        animation-fill-mode: both;
        animation-timeline: --page-scroll;
        animation-range: 0 120vh;
        will-change: background-position;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero .gradient-text {
        animation: none !important;
        background-position: 52% 50%;
    }
}

html[data-animations="off"] .hero .gradient-text {
    animation: none !important;
    background-position: 52% 50%;
}

.hero-subtitle {
    color: rgb(222 234 253 / 0.9);
    margin-bottom: var(--space-24);
}

.hero-actions {
    display: flex;
    gap: var(--space-16);
    margin-bottom: var(--space-32);
}

.hero-green-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: -0.35rem 0 0.95rem;
}

.hero-green-lines {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    margin-bottom: var(--space-24);
}

.hero-green-lines span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(56, 236, 170, 0.92), rgba(56, 236, 170, 0.08));
}

.hero-green-lines span:first-child {
    width: clamp(100px, 18vw, 180px);
}

.hero-green-lines span:last-child {
    width: clamp(52px, 9vw, 96px);
    opacity: 0.72;
}

.hero-stats {
    display: flex;
    gap: var(--space-24);
}

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

.stat-number {
    display: block;
    font-size: clamp(1.15rem, 2.2vw, 1.9rem);
    font-weight: 700;
    color: rgb(116 197 255 / 0.98);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: rgb(213 228 249 / 0.88);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    --hero-parallax-x: 0px;
    --hero-parallax-y: 0px;
    min-height: 400px;
}

.hero-reveal {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.75, 0.24, 1);
    will-change: opacity, transform;
}

.hero-reveal-delay-0 {
    transition-delay: 0ms;
}

.hero-reveal-delay-1 {
    transition-delay: 140ms;
}

.hero-reveal-delay-2 {
    transition-delay: 240ms;
}

.hero-reveal-delay-3 {
    transition-delay: 330ms;
}

.hero-reveal-delay-4 {
    transition-delay: 420ms;
}

.hero.is-visible .hero-reveal {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.hero-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 1.1rem;
    transform: translateX(-50%);
    z-index: 4;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    color: rgb(230 241 255 / 0.82);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    animation: heroScrollBounce 1.85s ease-in-out infinite;
}

.hero-scroll-indicator:hover {
    color: rgb(244 250 255 / 0.98);
}

.hero-scroll-indicator:focus-visible {
    outline: 2px solid rgb(136 196 255 / 0.95);
    outline-offset: 4px;
    border-radius: 999px;
}

.hero-scroll-arrow {
    position: relative;
    width: 19px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgb(222 236 255 / 0.58);
}

.hero-scroll-arrow::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    width: 3.5px;
    height: 8px;
    border-radius: 999px;
    background: rgb(237 246 255 / 0.88);
    transform: translateX(-50%);
    animation: heroScrollPulse 1.35s ease-in-out infinite;
}

.hero-media-shell {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-media-picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-media-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.34;
    transform: translate3d(calc(var(--hero-parallax-x) * -0.45), calc(var(--hero-parallax-y) * -0.45), 0) scale(1.05);
    transition: transform 200ms ease-out;
}

.chart-container {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-2);
    height: 400px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform-style: preserve-3d;
}

#heroChart {
    width: 100%;
    height: 100%;
    display: block;
    transform-origin: 50% 55%;
    transition: transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1), filter 280ms ease;
}

.test-plotly-hero-chart {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    transform-origin: 50% 55%;
    transition: transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1), filter 280ms ease;
}

.chart-container.is-test-3d-chart {
    perspective: 1600px;
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 30%, rgb(var(--stroke) / 1) 70%);
    background:
        radial-gradient(circle at 18% 14%, rgb(126 199 255 / 0.2), transparent 46%),
        radial-gradient(circle at 84% 9%, rgb(130 192 255 / 0.24), transparent 44%),
        radial-gradient(circle at 14% 90%, rgb(92 176 255 / 0.18), transparent 50%),
        linear-gradient(158deg, rgb(var(--surface-1) / 0.98), rgb(var(--surface-2) / 0.86));
    backdrop-filter: saturate(1.16) contrast(1.06);
    box-shadow:
        var(--shadow-2),
        0 26px 54px rgb(7 22 54 / 0.36),
        inset 0 0 0 1px rgb(130 182 255 / 0.1),
        inset 0 -36px 64px rgb(70 140 220 / 0.16);
}

.chart-container.is-test-3d-chart::before {
    content: '';
    position: absolute;
    inset: auto 8% 4% 8%;
    height: 30%;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgb(75 164 255 / 0.5), rgb(75 164 255 / 0));
    filter: blur(18px);
    pointer-events: none;
    z-index: 0;
}

.chart-container.is-test-3d-chart::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, rgb(255 255 255 / 0.08), rgb(255 255 255 / 0) 48%),
        linear-gradient(320deg, rgb(64 129 221 / 0.1), rgb(64 129 221 / 0) 45%),
        radial-gradient(circle at 88% 16%, rgb(176 225 255 / 0.16), transparent 36%);
    pointer-events: none;
    z-index: 2;
}

.chart-container.is-test-3d-chart #heroChart {
    transform: perspective(1500px) rotateX(15deg) rotateY(-12deg) translate3d(8px, -9px, 0) scale(1.03);
    filter: drop-shadow(0 16px 34px rgb(8 27 63 / 0.4));
    will-change: transform, filter;
}

.chart-container.is-test-3d-chart .test-plotly-hero-chart {
    transform: perspective(1400px) rotateX(10deg) rotateY(-7deg) translate3d(1px, -2px, 0) scale(0.98);
    filter: drop-shadow(0 16px 34px rgb(8 27 63 / 0.4));
    will-change: transform, filter;
}

.chart-container.is-test-3d-chart .test-plotly-hero-chart .js-plotly-plot,
.chart-container.is-test-3d-chart .test-plotly-hero-chart .plot-container,
.chart-container.is-test-3d-chart .test-plotly-hero-chart .svg-container {
    width: 100% !important;
    height: 100% !important;
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
    transform: translate3d(calc(var(--hero-parallax-x) * 0.45), calc(var(--hero-parallax-y) * 0.45), 0);
    transition: transform 200ms ease-out;
}

.card {
    position: absolute;
    background: var(--bg-surface);
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    right: -10%;
    background: var(--gradient-primary);
    color: var(--white);
    animation-delay: 0s;
}

.card-1.is-positive {
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    color: var(--white);
}

.card-1.is-negative {
    background: linear-gradient(135deg, #f87171 0%, #fb7185 100%);
    color: var(--white);
}

.card-1.is-neutral {
    background: linear-gradient(135deg, #475569 0%, #64748b 100%);
    color: var(--white);
}

.card-2 {
    top: 60%;
    left: -15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    right: -5%;
    background: var(--gradient-secondary);
    color: var(--white);
    animation-delay: 2s;
}

.card i {
    font-size: 1.2rem;
}

.main-website.hero-static-only #heroChart {
    display: none;
}

.main-website.hero-static-only .chart-container {
    background: linear-gradient(145deg, rgb(var(--surface-1) / 0.72), rgb(var(--surface-2) / 0.46));
}

/* Signal Blend Visualization */
.hero-signal-blend {
    position: absolute;
    left: clamp(0.85rem, 1.9vw, 1.25rem);
    right: clamp(0.85rem, 1.9vw, 1.25rem);
    bottom: clamp(0.8rem, 1.7vw, 1.12rem);
    z-index: 2;
    pointer-events: none;
    transform: translate3d(calc(var(--hero-parallax-x) * 0.22), calc(var(--hero-parallax-y) * 0.22), 0);
    transition: transform 200ms ease-out;
}

.signal-blend-viz {
    --signal-cycle: 4.6s;
    --signal-neon-a: rgb(0 220 170 / 0.96);
    --signal-neon-b: rgb(84 194 255 / 0.98);
    --signal-neon-c: rgb(125 122 255 / 0.92);
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.36fr) minmax(0, 0.72fr) minmax(0, 0.46fr) minmax(0, 1fr);
    align-items: center;
    gap: 0.55rem;
    min-height: 102px;
    border-radius: 15px;
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 36%, rgb(var(--stroke) / 1) 64%);
    background:
        radial-gradient(circle at 8% 14%, rgb(0 208 164 / 0.2), transparent 44%),
        radial-gradient(circle at 88% 12%, rgb(var(--accent) / 0.2), transparent 50%),
        linear-gradient(155deg, rgb(6 19 43 / 0.95), rgb(5 14 34 / 0.92));
    box-shadow:
        0 15px 28px rgb(2 9 25 / 0.5),
        inset 0 0 0 1px rgb(129 160 255 / 0.08);
    padding: 0.65rem 0.72rem;
    overflow: hidden;
    isolation: isolate;
}

.signal-blend-viz::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(95deg, rgb(63 191 255 / 0.08), transparent 38%),
        linear-gradient(270deg, rgb(96 248 205 / 0.08), transparent 45%);
    mix-blend-mode: screen;
    animation: signalBlendScanner var(--signal-cycle) linear infinite;
}

.signal-blend-humans {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 0.22rem;
    min-height: 70px;
    border-radius: 11px;
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 26%, rgb(16 48 88 / 1) 74%);
    background:
        linear-gradient(180deg, rgb(7 26 52 / 0.92), rgb(4 16 38 / 0.94)),
        linear-gradient(90deg, rgb(0 173 135 / 0.14), rgb(89 168 255 / 0.14));
    padding: 0.5rem 0.42rem 0.4rem;
    transform-origin: left center;
    animation: signalBlendHumansMorph var(--signal-cycle) cubic-bezier(0.24, 0.74, 0.28, 1) infinite;
}

.signal-blend-human-stream {
    width: 0.32rem;
    border-radius: 999px;
    height: calc(18px + var(--human-level, 0.5) * 34px);
    transform-origin: center bottom;
    background: linear-gradient(180deg, var(--signal-neon-b), var(--signal-neon-a));
    box-shadow:
        0 0 10px rgb(78 189 255 / 0.42),
        0 0 22px rgb(0 220 170 / 0.24);
    opacity: 0.94;
    animation: signalBlendBarPulse 1.8s ease-in-out infinite;
    animation-delay: calc(var(--human-index, 0) * 120ms);
}

.signal-blend-human-dot {
    position: absolute;
    width: 0.34rem;
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    left: calc(var(--dot-x, 10) * 1%);
    top: calc(var(--dot-y, 20) * 1%);
    background: linear-gradient(145deg, rgb(174 241 255 / 0.95), rgb(96 203 255 / 0.96));
    box-shadow: 0 0 10px rgb(103 211 255 / 0.5);
    animation: signalBlendDotFlow var(--signal-cycle) ease-in-out infinite;
    animation-delay: calc(var(--dot-index, 0) * 120ms);
    pointer-events: none;
}

.signal-blend-ai-layer {
    position: relative;
    height: 100%;
    min-height: 60px;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 46%, rgb(var(--stroke) / 1) 54%);
    background:
        radial-gradient(circle at 22% 18%, rgb(120 206 255 / 0.46), transparent 55%),
        linear-gradient(170deg, rgb(20 53 103 / 0.76), rgb(9 24 59 / 0.78));
    color: rgb(200 238 255 / 0.94);
    display: grid;
    place-items: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.58rem;
    font-weight: 700;
    opacity: 0;
    transform: scale(0.94);
    animation: signalBlendAiAppear var(--signal-cycle) ease-in-out infinite;
}

.signal-blend-ai-layer::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 8px;
    border: 1px dashed rgb(150 214 255 / 0.46);
}

.signal-blend-merge-line {
    height: 2px;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgb(113 199 255 / 0.22), rgb(101 231 194 / 0.52), rgb(132 124 255 / 0.26));
}

.signal-blend-merge-line::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, rgb(184 242 255 / 0.94), transparent);
    transform: translateX(-115%);
    animation: signalBlendMergeFlow var(--signal-cycle) linear infinite;
}

.signal-blend-output {
    display: grid;
    gap: 0.36rem;
    align-content: center;
}

.signal-blend-output-label {
    margin: 0;
    font-size: 0.54rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgb(170 220 248 / 0.84);
}

.signal-blend-output-core {
    position: relative;
    height: 10px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 34%, rgb(var(--stroke) / 1) 66%);
    background: rgb(8 24 54 / 0.75);
    overflow: hidden;
}

.signal-blend-output-core::before {
    content: '';
    position: absolute;
    inset: 0;
    transform-origin: left center;
    transform: scaleX(0.14);
    background: linear-gradient(90deg, var(--signal-neon-a), var(--signal-neon-b), var(--signal-neon-c));
    box-shadow: 0 0 14px rgb(90 189 255 / 0.52);
    animation: signalBlendConfidence var(--signal-cycle) cubic-bezier(0.32, 0.76, 0.3, 1) infinite;
}

.signal-blend-output-core::after {
    content: '';
    position: absolute;
    inset: -8px -4px;
    border-radius: 999px;
    background: radial-gradient(circle at 12% 50%, rgb(146 244 218 / 0.4), transparent 58%);
    opacity: 0;
    animation: signalBlendConfidenceGlow var(--signal-cycle) ease-in-out infinite;
}

.signal-blend-output-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 3.85rem;
    border-radius: 999px;
    padding: 0.18rem 0.44rem;
    font-size: 0.58rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgb(211 245 255 / 0.92);
    border: 1px solid rgb(122 201 255 / 0.38);
    background: linear-gradient(95deg, rgb(10 40 78 / 0.86), rgb(12 31 67 / 0.92));
}

.signal-blend-viz--hero {
    min-height: 96px;
}

.learn-signal-visual {
    display: grid;
    align-items: stretch;
}

.learn-signal-visual .signal-blend-viz {
    min-height: 154px;
    border-radius: var(--radius-md);
    padding: 0.95rem 0.92rem;
}

.learn-signal-visual .signal-blend-viz--learn .signal-blend-humans {
    min-height: 104px;
}

.signal-blend-divider-wrap {
    padding: 0.25rem 0;
}

.signal-blend-divider {
    grid-column: 1 / -1;
}

.signal-blend-divider .signal-blend-viz {
    --signal-cycle: 5.2s;
    min-height: 76px;
    border-radius: 999px;
    padding: 0.52rem 0.8rem;
}

.signal-blend-viz--divider .signal-blend-ai-layer {
    min-height: 46px;
    font-size: 0.52rem;
}

.signal-blend-viz--divider .signal-blend-humans {
    min-height: 52px;
}

.signal-blend-divider-wrap--learn {
    margin: 0.5rem 0 1.35rem;
}

.section-processing-loader {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    opacity: 0;
    transition: opacity 220ms ease;
}

.section-processing-loader .signal-blend-viz {
    --signal-cycle: 3.2s;
    width: min(520px, 100%);
    min-height: 92px;
}

.section-processing-loader .signal-blend-viz--loading .signal-blend-output-label {
    color: rgb(168 226 252 / 0.78);
}

@keyframes signalBlendScanner {
    0%,
    100% {
        transform: translateX(-1%);
        opacity: 0.34;
    }
    50% {
        transform: translateX(1%);
        opacity: 0.56;
    }
}

@keyframes signalBlendHumansMorph {
    0%,
    44% {
        transform: translateX(0) scaleX(1);
        opacity: 1;
    }
    63% {
        transform: translateX(16%) scaleX(0.84);
        opacity: 0.9;
    }
    82%,
    100% {
        transform: translateX(42%) scaleX(0.42);
        opacity: 0.28;
    }
}

@keyframes signalBlendBarPulse {
    0%,
    100% {
        transform: scaleY(0.72);
    }
    48% {
        transform: scaleY(1.06);
    }
}

@keyframes signalBlendDotFlow {
    0%,
    32% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.72;
    }
    54% {
        transform: translate3d(-1px, -1px, 0) scale(1.15);
        opacity: 1;
    }
    76% {
        transform: translate3d(19px, -4px, 0) scale(0.88);
        opacity: 0.8;
    }
    100% {
        transform: translate3d(46px, -2px, 0) scale(0.56);
        opacity: 0.2;
    }
}

@keyframes signalBlendAiAppear {
    0%,
    26% {
        opacity: 0;
        transform: scale(0.92);
    }
    40%,
    70% {
        opacity: 1;
        transform: scale(1);
    }
    88%,
    100% {
        opacity: 0.26;
        transform: scale(0.95);
    }
}

@keyframes signalBlendMergeFlow {
    0%,
    18% {
        transform: translateX(-120%);
        opacity: 0;
    }
    30%,
    72% {
        opacity: 1;
    }
    100% {
        transform: translateX(120%);
        opacity: 0;
    }
}

@keyframes signalBlendConfidence {
    0%,
    44% {
        transform: scaleX(0.14);
        opacity: 0.58;
    }
    62% {
        transform: scaleX(0.58);
        opacity: 0.86;
    }
    82%,
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes signalBlendConfidenceGlow {
    0%,
    52% {
        opacity: 0;
    }
    72% {
        opacity: 0.7;
    }
    100% {
        opacity: 0;
    }
}

/* Features Section */
.features {
    padding: var(--space-64) 0;
    background: var(--bg-surface);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-32);
}

.section-title {
    font-weight: 700;
    margin-bottom: var(--space-16);
    color: var(--text-dark);
}

.section-subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--space-24);
}

.feature-card {
    grid-column: span 4;
    position: relative;
    min-height: 320px;
    perspective: 1000px;
}

.feature-card-flip {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.feature-card.is-flipped .feature-card-flip,
.feature-card:focus-within .feature-card-flip {
    transform: rotateY(180deg);
}

@media (hover: hover) and (pointer: fine) {
    .feature-card:hover .feature-card-flip {
        transform: rotateY(180deg);
    }
}

.feature-card-face {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    background: linear-gradient(145deg, rgb(var(--surface-1) / 0.98), rgb(var(--surface-2) / 0.82));
    box-shadow: var(--shadow-1), 0 12px 24px rgb(var(--bg) / 0.16);
    padding: var(--space-32);
    display: flex;
    flex-direction: column;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
}

.feature-card-front::before,
.feature-card-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(150deg, rgb(var(--surface-1) / 0.96), rgb(var(--surface-3) / 0.44));
}

.feature-card-toggle {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgb(var(--accent) / 0.32);
    background: rgb(var(--surface-1) / 0.92);
    color: rgb(var(--accent) / 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 8px 14px rgb(var(--bg) / 0.2);
}

.feature-card-toggle:hover {
    filter: brightness(1.05);
}

.feature-card-toggle:focus-visible {
    outline: 3px solid rgb(var(--accent) / 0.26);
    outline-offset: 2px;
}

.feature-card-toggle--back {
    border-color: rgb(0 186 136 / 0.36);
    color: rgb(0 144 106 / 1);
}

.feature-card-face h3 {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 var(--space-12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-16);
    transition: var(--transition);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card-front h3 {
    margin-top: auto;
    margin-bottom: 0;
}

.feature-card-back h3 {
    margin-top: 0.25rem;
}

.feature-card-back p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 var(--space-16);
}

.feature-learn-link {
    margin-top: auto;
    width: fit-content;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--white);
    border: 1px solid rgb(var(--accent) / 0.3);
    background: var(--gradient-primary);
    border-radius: 999px;
    padding: 0.44rem 0.82rem;
    box-shadow: var(--shadow-1);
}

.feature-learn-link:hover {
    filter: brightness(1.05);
}

@media (hover: hover) and (pointer: fine) {
    .feature-card:hover .feature-card-face {
        box-shadow: var(--shadow-2), 0 20px 36px rgb(var(--bg) / 0.2);
    }
}

/* Anti-Herding Highlight Section */
.anti-herding-highlight {
    padding: var(--space-64) 0;
    background:
        radial-gradient(circle at 10% 16%, rgb(0 186 136 / 0.14), transparent 40%),
        radial-gradient(circle at 92% 82%, rgb(var(--accent) / 0.18), transparent 42%),
        linear-gradient(162deg, rgb(var(--surface-2) / 0.34), rgb(var(--surface-1) / 0.96));
}

.anti-herding-layout {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--space-24);
    align-items: stretch;
}

.anti-herding-visual {
    grid-column: span 7;
    position: relative;
    border-radius: var(--radius-md);
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 28%, rgb(var(--stroke) / 1) 72%);
    padding: clamp(1rem, 2vw, 1.35rem);
    background: linear-gradient(145deg, rgb(var(--surface-1) / 0.95), rgb(var(--surface-2) / 0.84));
    box-shadow: var(--shadow-2);
    overflow: hidden;
}

.anti-herding-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 8%, rgb(0 186 136 / 0.12), transparent 50%);
    pointer-events: none;
}

.anti-herding-timeline {
    position: relative;
    min-height: 324px;
    padding: 0.25rem 0;
}

.anti-herding-track {
    position: absolute;
    top: 0.6rem;
    bottom: 0.6rem;
    left: clamp(1rem, 2.2vw, 1.45rem);
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgb(var(--accent) / 0.2), rgb(var(--accent) / 0.95), rgb(0 186 136 / 0.56));
    box-shadow: 0 0 0 1px rgb(var(--accent) / 0.14), 0 0 16px rgb(var(--accent) / 0.24);
}

.anti-herding-flow {
    position: absolute;
    left: clamp(0.7rem, 1.95vw, 1.15rem);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(243 252 255 / 0.96) 0 36%, rgb(0 186 136 / 1) 37% 100%);
    box-shadow: 0 0 0 4px rgb(0 186 136 / 0.18), 0 0 18px rgb(var(--accent) / 0.42);
    animation: antiHerdingFlowTraverse 4.6s linear infinite;
}

.anti-herding-flow--a {
    animation-delay: 0s;
}

.anti-herding-flow--b {
    animation-delay: 2.3s;
}

.anti-herding-window-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
    position: relative;
}

.anti-herding-window {
    width: min(100%, 360px);
    margin-inline-start: clamp(2.5rem, 6vw, 3.4rem);
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 24%, rgb(var(--stroke) / 1) 76%);
    background: linear-gradient(145deg, rgb(var(--surface-1) / 0.96), rgb(var(--surface-2) / 0.86));
    box-shadow: 0 10px 20px rgb(var(--bg) / 0.2);
    padding: 0.5rem 0.64rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    animation: antiHerdingWindowDrift 5.8s ease-in-out infinite;
}

.anti-herding-window:nth-child(2) {
    margin-inline-start: clamp(3.8rem, 10vw, 5rem);
    animation-delay: 0.7s;
}

.anti-herding-window:nth-child(3) {
    margin-inline-start: clamp(2.2rem, 7vw, 3.8rem);
    animation-delay: 1.3s;
}

.anti-herding-window:nth-child(4) {
    margin-inline-start: clamp(4.4rem, 11vw, 5.8rem);
    animation-delay: 1.9s;
}

.anti-herding-window:nth-child(5) {
    margin-inline-start: clamp(2.9rem, 8vw, 4.2rem);
    animation-delay: 2.5s;
}

.anti-herding-window-user {
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: color-mix(in srgb, rgb(var(--text) / 1) 82%, rgb(var(--accent) / 1) 18%);
}

.anti-herding-window-time {
    font-variant-numeric: tabular-nums;
    font-size: 0.8rem;
    color: var(--text-light);
}

.anti-herding-copy {
    grid-column: span 5;
    border-radius: var(--radius-md);
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 24%, rgb(var(--stroke) / 1) 76%);
    background: linear-gradient(152deg, rgb(var(--surface-1) / 0.98), rgb(var(--surface-2) / 0.86));
    box-shadow: var(--shadow-2);
    padding: clamp(1.2rem, 2.4vw, 1.8rem);
    display: grid;
    align-content: center;
    gap: 0.78rem;
}

.anti-herding-badge {
    margin: 0;
    width: fit-content;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 58%, rgb(var(--stroke) / 1) 42%);
    background: linear-gradient(140deg, rgb(0 186 136 / 0.22), rgb(var(--accent) / 0.28));
    color: color-mix(in srgb, rgb(var(--text) / 1) 88%, rgb(var(--accent) / 1) 12%);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.32rem 0.66rem;
}

.anti-herding-title {
    margin: 0;
}

.anti-herding-body {
    margin: 0;
    color: var(--text-light);
    line-height: 1.65;
}

@keyframes antiHerdingFlowTraverse {
    0% {
        top: 0.7rem;
        opacity: 0.2;
    }
    16% {
        opacity: 1;
    }
    100% {
        top: calc(100% - 1.35rem);
        opacity: 0.18;
    }
}

@keyframes antiHerdingWindowDrift {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(4px);
    }
}

@media (hover: hover) and (pointer: fine) {
    .anti-herding-window:hover {
        border-color: color-mix(in srgb, rgb(var(--accent) / 1) 42%, rgb(var(--stroke) / 1) 58%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .anti-herding-flow,
    .anti-herding-window {
        animation: none !important;
    }
}

html[data-animations="off"] .anti-herding-flow,
html[data-animations="off"] .anti-herding-window {
    animation: none !important;
}

/* Fees & Rewards Section */
.fees-rewards-section {
    padding: var(--space-64) 0;
    background: transparent;
}

.fees-rewards-card {
    grid-column: 1 / -1;
    border-radius: var(--radius-md);
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 24%, rgb(var(--stroke) / 1) 76%);
    background: linear-gradient(156deg, rgb(var(--surface-1) / 0.72), rgb(var(--surface-2) / 0.5));
    box-shadow: 0 16px 34px rgb(var(--bg) / 0.18);
    padding: clamp(1.15rem, 2.5vw, 1.9rem);
}

.fees-rewards-header {
    text-align: left;
    margin-bottom: clamp(0.95rem, 2vw, 1.4rem);
}

.fees-rewards-header .section-subtitle {
    margin: 0;
    max-width: 720px;
}

.value-atmosphere {
    --ring-tilt-x: 58deg;
    --ring-tilt-y: 10deg;
    --ring-tilt-z: 0deg;
    --ring-hue: 196;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
    gap: clamp(1.3rem, 3vw, 2.6rem);
    align-items: center;
    margin-top: clamp(0.35rem, 1.4vw, 0.9rem);
}

.value-atmosphere-content {
    display: grid;
    gap: 0;
}

.value-atmosphere-item {
    appearance: none;
    border: 0;
    border-top: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 16%, rgb(var(--stroke) / 1) 84%);
    background: transparent;
    color: inherit;
    width: 100%;
    text-align: left;
    padding: clamp(0.8rem, 1.7vw, 1.04rem) 0;
    cursor: pointer;
    transition: border-color 260ms ease, color 260ms ease, opacity 260ms ease;
}

.value-atmosphere-item:last-child {
    border-bottom: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 16%, rgb(var(--stroke) / 1) 84%);
}

.value-atmosphere-item:not(.is-active) {
    opacity: 0.7;
}

.value-atmosphere-item.is-active {
    opacity: 1;
    border-top-color: color-mix(in srgb, rgb(var(--accent) / 1) 44%, rgb(var(--stroke) / 1) 56%);
}

.value-atmosphere-item:focus-visible {
    outline: 2px solid rgb(var(--accent) / 0.8);
    outline-offset: -2px;
}

.value-atmosphere-label {
    display: inline-block;
    margin-bottom: 0.3rem;
    font-size: 0.64rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: color-mix(in srgb, rgb(var(--text-light) / 1) 78%, rgb(var(--accent) / 1) 22%);
}

.value-atmosphere-title {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.22rem);
    color: color-mix(in srgb, rgb(var(--text) / 1) 92%, rgb(var(--accent) / 1) 8%);
    font-weight: 620;
}

.value-atmosphere-copy {
    margin: 0.4rem 0 0;
    color: color-mix(in srgb, rgb(var(--text-light) / 1) 90%, rgb(var(--accent) / 1) 10%);
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 56ch;
}

.value-atmosphere-visual {
    position: relative;
    min-height: clamp(280px, 34vw, 380px);
    display: grid;
    place-items: center;
    pointer-events: none;
}

.value-atmosphere-stage {
    position: relative;
    width: clamp(220px, 31vw, 340px);
    aspect-ratio: 1 / 1;
    transform-style: preserve-3d;
    perspective: 980px;
}

.value-atmosphere-glow {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background:
        radial-gradient(circle, hsl(var(--ring-hue) 78% 66% / 0.16), transparent 62%),
        radial-gradient(circle at 30% 30%, hsl(var(--ring-hue) 80% 70% / 0.11), transparent 65%);
    filter: blur(26px);
    transition: background 700ms ease;
}

.value-atmosphere-orbit {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    transform: rotateX(var(--ring-tilt-x)) rotateY(var(--ring-tilt-y)) rotateZ(var(--ring-tilt-z));
    transition: transform 680ms cubic-bezier(0.2, 0.65, 0.2, 1), filter 680ms ease;
    filter: drop-shadow(0 0 14px hsl(var(--ring-hue) 80% 66% / 0.15));
}

.value-atmosphere-ring {
    position: absolute;
    inset: 16%;
    border-radius: 50%;
    border: 1px solid hsl(var(--ring-hue) 84% 72% / 0.42);
    animation: valueAtmosphereRingSpin 28s linear infinite;
}

.value-atmosphere-ring::before {
    content: '';
    position: absolute;
    inset: 14%;
    border-radius: 50%;
    border: 1px solid hsl(var(--ring-hue) 68% 78% / 0.28);
    transform: rotateY(72deg);
}

.value-atmosphere-ring::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        from 104deg,
        transparent 0 54%,
        hsl(var(--ring-hue) 90% 80% / 0.68) 69%,
        transparent 84% 100%
    );
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1px), #000 calc(100% - 1px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 1px), #000 calc(100% - 1px));
    animation: valueAtmosphereRingSweep 10.5s linear infinite;
}

.value-atmosphere-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0.46rem;
    height: 0.46rem;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: hsl(var(--ring-hue) 88% 82% / 0.74);
    box-shadow:
        0 0 0 4px hsl(var(--ring-hue) 72% 66% / 0.1),
        0 0 16px hsl(var(--ring-hue) 86% 72% / 0.3);
    animation: valueAtmosphereCorePulse 5.4s ease-in-out infinite;
}

@media (hover: hover) and (pointer: fine) {
    .value-atmosphere-item:hover {
        opacity: 1;
        border-top-color: color-mix(in srgb, rgb(var(--accent) / 1) 34%, rgb(var(--stroke) / 1) 66%);
    }
}

.signal-terminal {
    --signal-strength: 0.74;
    position: relative;
    margin-top: clamp(0.2rem, 1.1vw, 0.6rem);
    min-height: clamp(390px, 54vw, 525px);
    border-radius: 16px;
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 38%, rgb(var(--stroke) / 1) 62%);
    background:
        radial-gradient(circle at 14% 14%, rgb(6 182 212 / 0.24), transparent 38%),
        radial-gradient(circle at 84% 22%, rgb(132 95 255 / 0.18), transparent 35%),
        radial-gradient(circle at 56% 82%, rgb(16 185 129 / 0.14), transparent 42%),
        linear-gradient(154deg, rgb(3 13 31 / 0.97), rgb(5 19 46 / 0.95));
    box-shadow:
        0 22px 44px rgb(1 8 23 / 0.54),
        inset 0 0 0 1px rgb(157 188 255 / 0.08);
    padding: clamp(0.95rem, 2.2vw, 1.45rem);
    overflow: hidden;
    isolation: isolate;
}

.signal-terminal::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(95deg, rgb(89 202 255 / 0.13), transparent 30%),
        linear-gradient(265deg, rgb(76 247 204 / 0.1), transparent 34%);
    mix-blend-mode: screen;
    animation: signalTerminalScanner 7s linear infinite;
}

.signal-terminal-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.34;
    background-image:
        linear-gradient(rgb(95 190 255 / 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgb(95 190 255 / 0.16) 1px, transparent 1px);
    background-size: 44px 44px;
}

.signal-terminal-points {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.signal-terminal-point {
    position: absolute;
    left: var(--point-x, 50%);
    top: var(--point-y, 50%);
    width: 0.36rem;
    height: 0.36rem;
    border-radius: 999px;
    background: linear-gradient(155deg, rgb(172 236 255 / 0.98), rgb(95 189 255 / 0.94));
    box-shadow:
        0 0 10px rgb(95 189 255 / 0.56),
        0 0 22px rgb(0 220 174 / 0.26);
    animation: signalTerminalPointBlink 2.2s ease-in-out infinite;
    animation-delay: var(--point-delay, 0s);
}

.signal-terminal-wave {
    position: absolute;
    left: clamp(0.74rem, 1.7vw, 1.2rem);
    right: clamp(0.74rem, 1.7vw, 1.2rem);
    height: clamp(58px, 9vw, 86px);
    display: grid;
    grid-template-columns: repeat(14, minmax(0, 1fr));
    align-items: end;
    gap: clamp(0.18rem, 0.4vw, 0.3rem);
    pointer-events: none;
    z-index: 2;
}

.signal-terminal-wave--upper {
    top: 10%;
}

.signal-terminal-wave--lower {
    bottom: 18%;
    transform: scaleY(-1);
    opacity: 0.8;
}

.signal-terminal-wave span {
    width: 100%;
    height: calc(12px + var(--wave-level, 0.5) * 58px);
    border-radius: 999px;
    background: linear-gradient(180deg, rgb(118 220 255 / 0.95), rgb(20 192 160 / 0.9));
    box-shadow: 0 0 12px rgb(76 189 255 / 0.28);
    animation: signalTerminalWaveFlow 1.8s ease-in-out infinite;
    animation-delay: calc(var(--wave-index, 0) * 90ms);
}

.signal-terminal-links {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.signal-terminal-link {
    position: absolute;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgb(93 208 255 / 0.04), rgb(93 208 255 / 0.9), rgb(93 208 255 / 0.04));
    background-size: 200% 100%;
    opacity: 0.62;
    animation: signalTerminalLinkFlow 2.9s linear infinite;
}

.signal-terminal-link--collective {
    width: 30%;
    left: 22.5%;
    top: 49%;
    transform: rotate(-34deg);
    transform-origin: left center;
}

.signal-terminal-link--analytics {
    width: 30%;
    right: 22.5%;
    top: 49%;
    transform: rotate(34deg);
    transform-origin: right center;
}

.signal-terminal-link--risk {
    width: 22%;
    left: 50%;
    top: 58%;
    transform: rotate(90deg);
    transform-origin: left center;
}

.signal-terminal-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: clamp(132px, 16vw, 176px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 54%, rgb(55 122 205 / 1) 46%);
    background:
        radial-gradient(circle at 35% 30%, rgb(118 224 255 / 0.34), transparent 54%),
        radial-gradient(circle at 65% 70%, rgb(60 188 255 / 0.18), transparent 62%),
        linear-gradient(165deg, rgb(7 30 63 / 0.93), rgb(4 17 43 / 0.94));
    box-shadow:
        0 0 calc(14px + (var(--signal-strength) * 24px)) rgb(53 195 255 / 0.54),
        inset 0 0 0 1px rgb(165 207 255 / 0.12);
    z-index: 4;
}

.signal-terminal-center::before,
.signal-terminal-center::after {
    content: '';
    position: absolute;
    inset: -14%;
    border-radius: 50%;
    border: 1px solid rgb(87 200 255 / 0.34);
    pointer-events: none;
    animation: signalTerminalPulseRing 2.8s ease-out infinite;
}

.signal-terminal-center::after {
    animation-delay: 1.2s;
}

.signal-terminal-center-core {
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    border: 1px solid rgb(113 188 255 / 0.26);
    background: linear-gradient(180deg, rgb(10 38 72 / 0.78), rgb(7 27 58 / 0.9));
    display: grid;
    place-items: center;
    text-align: center;
    padding: 0.55rem;
}

.signal-terminal-meter-label {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgb(124 209 255 / 0.92);
}

.signal-terminal-meter-value {
    display: block;
    font-size: clamp(1.42rem, 2.7vw, 2.1rem);
    line-height: 1;
    font-weight: 700;
    color: rgb(220 245 255 / 0.98);
}

.signal-terminal-meter-status {
    display: block;
    margin-top: 0.24rem;
    font-size: 0.53rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgb(116 203 255 / 0.9);
}

.signal-terminal[data-signal-tier='high'] .signal-terminal-meter-value {
    color: rgb(202 255 233 / 0.98);
}

.signal-terminal[data-signal-tier='watch'] .signal-terminal-meter-value {
    color: rgb(255 223 175 / 0.98);
}

.signal-terminal-node {
    --node-color: rgb(90 201 255 / 1);
    position: absolute;
    z-index: 5;
}

.signal-terminal-node--collective {
    --node-color: rgb(34 211 238 / 1);
    top: 18%;
    left: clamp(0.7rem, 1.6vw, 1.2rem);
}

.signal-terminal-node--analytics {
    --node-color: rgb(167 139 250 / 1);
    top: 18%;
    right: clamp(0.7rem, 1.6vw, 1.2rem);
}

.signal-terminal-node--risk {
    --node-color: rgb(52 211 153 / 1);
    left: 50%;
    bottom: 22%;
    transform: translateX(-50%);
}

.signal-terminal-node-trigger {
    border: 1px solid color-mix(in srgb, var(--node-color) 58%, rgb(49 90 150 / 1) 42%);
    border-radius: 12px;
    background:
        linear-gradient(150deg, rgb(11 35 69 / 0.9), rgb(8 24 48 / 0.88));
    color: rgb(223 241 255 / 0.96);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.52rem 0.66rem;
    cursor: pointer;
    font-size: 0.79rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 22px rgb(2 14 33 / 0.4);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.signal-terminal-node-trigger:focus-visible {
    outline: 2px solid rgb(119 214 255 / 0.92);
    outline-offset: 2px;
}

.signal-terminal-node-dot {
    width: 0.54rem;
    height: 0.54rem;
    border-radius: 999px;
    background: var(--node-color);
    box-shadow:
        0 0 10px color-mix(in srgb, var(--node-color) 84%, white 16%),
        0 0 18px color-mix(in srgb, var(--node-color) 58%, transparent 42%);
    animation: signalTerminalPointBlink 1.8s ease-in-out infinite;
}

.signal-terminal-node-title {
    white-space: nowrap;
}

.signal-terminal-node-panel {
    --panel-shift-x: 0;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    width: min(290px, 72vw);
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--node-color) 52%, rgb(44 95 154 / 1) 48%);
    background:
        linear-gradient(150deg, rgb(7 30 63 / 0.96), rgb(6 22 48 / 0.95));
    box-shadow:
        0 16px 30px rgb(2 11 27 / 0.48),
        inset 0 0 0 1px rgb(151 196 255 / 0.08);
    padding: 0.66rem 0.72rem;
    color: rgb(206 229 251 / 0.96);
    font-size: 0.82rem;
    line-height: 1.48;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(var(--panel-shift-x), 10px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    z-index: 7;
}

.signal-terminal-node--analytics .signal-terminal-node-panel {
    left: auto;
    right: 0;
}

.signal-terminal-node--risk .signal-terminal-node-panel {
    left: 50%;
    --panel-shift-x: -50%;
}

.signal-terminal-node.is-active .signal-terminal-node-trigger,
.signal-terminal-node:focus-within .signal-terminal-node-trigger {
    border-color: color-mix(in srgb, var(--node-color) 80%, white 20%);
    box-shadow:
        0 12px 26px rgb(4 19 42 / 0.5),
        0 0 0 1px color-mix(in srgb, var(--node-color) 48%, transparent 52%);
    transform: translateY(-1px);
}

.signal-terminal-node.is-active .signal-terminal-node-panel,
.signal-terminal-node:focus-within .signal-terminal-node-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(var(--panel-shift-x), 0);
}

@media (hover: hover) and (pointer: fine) {
    .signal-terminal-node:hover .signal-terminal-node-trigger {
        border-color: color-mix(in srgb, var(--node-color) 80%, white 20%);
        box-shadow:
            0 12px 26px rgb(4 19 42 / 0.5),
            0 0 0 1px color-mix(in srgb, var(--node-color) 48%, transparent 52%);
        transform: translateY(-1px);
    }

    .signal-terminal-node:hover .signal-terminal-node-panel {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(var(--panel-shift-x), 0);
    }
}

.signal-terminal-ticker {
    position: absolute;
    left: clamp(0.6rem, 1.5vw, 1.1rem);
    right: clamp(0.6rem, 1.5vw, 1.1rem);
    bottom: clamp(0.5rem, 1.3vw, 0.95rem);
    height: 40px;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 35%, rgb(var(--stroke) / 1) 65%);
    background: linear-gradient(152deg, rgb(3 15 37 / 0.95), rgb(4 19 45 / 0.9));
    box-shadow: inset 0 0 0 1px rgb(121 181 255 / 0.08);
    overflow: hidden;
    z-index: 6;
}

.signal-terminal-ticker-track {
    display: flex;
    align-items: center;
    gap: 2.3rem;
    white-space: nowrap;
    width: max-content;
    min-height: 100%;
    padding-left: 1rem;
    animation: signalTerminalTickerDrift 19s linear infinite;
}

.signal-terminal-ticker-track span {
    font-family: 'IBM Plex Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    color: rgb(113 212 255 / 0.95);
    text-transform: uppercase;
}

.signal-terminal[data-active-node='collective'] .signal-terminal-link--collective,
.signal-terminal[data-active-node='analytics'] .signal-terminal-link--analytics,
.signal-terminal[data-active-node='risk'] .signal-terminal-link--risk {
    opacity: 0.98;
    box-shadow: 0 0 12px rgb(77 212 255 / 0.5);
}

.fees-rewards-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.62rem 0.82rem;
}

.fees-rewards-item {
    display: flex;
    align-items: flex-start;
    gap: 0.54rem;
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 18%, rgb(var(--stroke) / 1) 82%);
    border-radius: 12px;
    background: linear-gradient(150deg, rgb(var(--surface-1) / 0.66), rgb(var(--surface-2) / 0.4));
    padding: 0.58rem 0.66rem;
    color: color-mix(in srgb, rgb(var(--text) / 1) 88%, rgb(var(--accent) / 1) 12%);
    line-height: 1.55;
}

.fees-rewards-dot {
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 50%;
    margin-top: 0.4rem;
    flex-shrink: 0;
    background: linear-gradient(145deg, rgb(var(--accent) / 1), rgb(0 186 136 / 1));
    box-shadow: 0 0 0 3px rgb(var(--accent) / 0.18);
}

.fees-rewards-cta {
    margin-top: clamp(0.9rem, 1.9vw, 1.25rem);
}

.fees-rewards-cta .btn {
    width: fit-content;
}

@keyframes signalTerminalScanner {
    0% {
        transform: translateX(-30%);
        opacity: 0.22;
    }
    45% {
        opacity: 0.44;
    }
    100% {
        transform: translateX(30%);
        opacity: 0.2;
    }
}

@keyframes signalTerminalPointBlink {
    0%,
    100% {
        opacity: 0.38;
        transform: scale(0.9);
    }
    45% {
        opacity: 0.98;
        transform: scale(1.12);
    }
}

@keyframes signalTerminalWaveFlow {
    0%,
    100% {
        transform: scaleY(0.62);
        opacity: 0.5;
    }
    45% {
        transform: scaleY(1);
        opacity: 1;
    }
}

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

@keyframes signalTerminalPulseRing {
    0% {
        transform: scale(0.82);
        opacity: 0.64;
    }
    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

@keyframes signalTerminalTickerDrift {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes valueAtmosphereRingSpin {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

@keyframes valueAtmosphereRingSweep {
    0% {
        transform: rotateZ(0deg);
        opacity: 0.32;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        transform: rotateZ(360deg);
        opacity: 0.32;
    }
}

@keyframes valueAtmosphereCorePulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.42;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.24);
        opacity: 0.88;
    }
}

@media (prefers-reduced-motion: reduce) {
    .value-atmosphere-ring,
    .value-atmosphere-ring::after,
    .value-atmosphere-core,
    .signal-terminal::before,
    .signal-terminal-point,
    .signal-terminal-wave span,
    .signal-terminal-link,
    .signal-terminal-center::before,
    .signal-terminal-center::after,
    .signal-terminal-ticker-track,
    .signal-terminal-node-dot {
        animation: none !important;
    }
}

html[data-animations='off'] .value-atmosphere-ring,
html[data-animations='off'] .value-atmosphere-ring::after,
html[data-animations='off'] .value-atmosphere-core,
html[data-animations='off'] .signal-terminal::before,
html[data-animations='off'] .signal-terminal-point,
html[data-animations='off'] .signal-terminal-wave span,
html[data-animations='off'] .signal-terminal-link,
html[data-animations='off'] .signal-terminal-center::before,
html[data-animations='off'] .signal-terminal-center::after,
html[data-animations='off'] .signal-terminal-ticker-track,
html[data-animations='off'] .signal-terminal-node-dot {
    animation: none !important;
}

/* Trust Strip Section */
.trust-strip-section {
    padding: 0 0 var(--space-48);
    background: transparent;
}

.trust-strip-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.72rem;
}

.trust-strip-item {
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 22%, rgb(var(--stroke) / 1) 78%);
    border-radius: 14px;
    background: linear-gradient(155deg, rgb(var(--surface-1) / 0.66), rgb(var(--surface-2) / 0.42));
    box-shadow: 0 12px 24px rgb(var(--bg) / 0.14);
    padding: 0.72rem 0.78rem;
    display: grid;
    gap: 0.52rem;
    align-content: start;
}

.trust-strip-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 34%, rgb(var(--stroke) / 1) 66%);
    background: linear-gradient(140deg, rgb(var(--accent) / 0.18), rgb(0 186 136 / 0.2));
    color: rgb(var(--accent) / 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.trust-strip-icon i {
    font-size: 0.94rem;
}

.trust-strip-item p {
    margin: 0;
    color: color-mix(in srgb, rgb(var(--text) / 1) 88%, rgb(var(--accent) / 1) 12%);
    font-size: 0.88rem;
    line-height: 1.42;
    font-weight: 600;
}

@media (hover: hover) and (pointer: fine) {
    .trust-strip-item:hover .trust-strip-icon {
        transform: translateY(-1px);
        border-color: color-mix(in srgb, rgb(var(--accent) / 1) 52%, rgb(var(--stroke) / 1) 48%);
        box-shadow: 0 0 0 3px rgb(var(--accent) / 0.18), 0 0 18px rgb(var(--accent) / 0.28);
    }
}

/* How It Works Section */
.how-it-works {
    padding: var(--space-64) 0;
    background: var(--how-bg);
}

.how-it-works .section-header {
    margin-bottom: clamp(1.2rem, 2.8vw, 2rem);
}

.how-it-works .section-subtitle {
    max-width: 760px;
}

.steps-container {
    --pipeline-edge: clamp(0.9rem, 2vw, 1.5rem);
    --pipeline-top: clamp(1.05rem, 2.4vw, 1.3rem);
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(0.65rem, 1.15vw, 1rem);
    position: relative;
    align-items: stretch;
    padding-top: clamp(2rem, 3vw, 2.5rem);
}

.steps-container::before {
    content: '';
    position: absolute;
    top: var(--pipeline-top);
    left: var(--pipeline-edge);
    right: var(--pipeline-edge);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgb(var(--accent) / 0.18),
        rgb(var(--accent) / 0.95),
        rgb(0 196 138 / 0.92)
    );
    box-shadow: 0 0 0 1px rgb(var(--accent) / 0.14), 0 0 18px rgb(var(--accent) / 0.22);
    pointer-events: none;
}

.steps-container::after {
    content: '';
    position: absolute;
    top: calc(var(--pipeline-top) - 5px);
    left: var(--pipeline-edge);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(244 253 255 / 0.96) 0 34%, rgb(0 196 138 / 1) 35% 100%);
    box-shadow: 0 0 0 4px rgb(0 196 138 / 0.2), 0 0 20px rgb(var(--accent) / 0.45);
    pointer-events: none;
    z-index: 1;
    animation: signalFlowTraverse 3.9s linear infinite;
}

.step {
    grid-column: span 1;
    display: grid;
    grid-template-rows: auto auto 1fr;
    align-content: start;
    gap: 0.62rem;
    position: relative;
    z-index: 2;
    min-height: 220px;
    padding: clamp(0.85rem, 1.35vw, 1.1rem);
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 28%, rgb(var(--stroke) / 1) 72%);
    border-radius: 16px;
    background: linear-gradient(145deg, rgb(var(--surface-1) / 0.98), rgb(var(--surface-2) / 0.82));
    box-shadow: 0 14px 26px rgb(var(--bg) / 0.18);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    isolation: isolate;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 8%, rgb(0 196 138 / 0.14), transparent 52%);
    opacity: 0.78;
    pointer-events: none;
    z-index: -1;
}

.step-number {
    width: 34px;
    height: 34px;
    margin-top: -1.45rem;
    background: linear-gradient(145deg, rgb(var(--accent) / 1), rgb(0 186 136 / 1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 0.86rem;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgb(var(--surface-1) / 1), 0 8px 16px rgb(var(--accent) / 0.35);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.step-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgb(var(--accent) / 0.34);
    background: linear-gradient(135deg, rgb(var(--accent) / 0.2), rgb(var(--primary) / 0.24));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--accent) / 1);
    box-shadow: 0 8px 16px rgb(var(--bg) / 0.18);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.step-icon i {
    font-size: 0.95rem;
}

.step-content {
    display: grid;
    gap: 0.45rem;
}

.step-content h3 {
    font-weight: 600;
    margin: 0;
    font-size: clamp(0.94rem, 1.15vw, 1.06rem);
    line-height: 1.34;
    color: var(--text-dark);
}

.step-content p {
    margin: 0;
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.5;
}

@media (hover: hover) and (pointer: fine) {
    .step:hover {
        transform: translateY(-5px);
        border-color: color-mix(in srgb, rgb(var(--accent) / 1) 46%, rgb(var(--stroke) / 1) 54%);
        box-shadow: 0 18px 32px rgb(var(--accent) / 0.22), 0 0 28px rgb(var(--accent) / 0.14);
    }

    .step:hover .step-number,
    .step:hover .step-icon {
        transform: translateY(-1px) scale(1.04);
        box-shadow: 0 0 0 3px rgb(var(--surface-1) / 1), 0 10px 20px rgb(var(--accent) / 0.36);
    }
}

.step:focus-within {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 42%, rgb(var(--stroke) / 1) 58%);
}

@keyframes signalFlowTraverse {
    0% {
        left: var(--pipeline-edge);
        opacity: 0.25;
    }
    12% {
        opacity: 1;
    }
    100% {
        left: calc(100% - var(--pipeline-edge) - 12px);
        opacity: 0.94;
    }
}

@supports (animation-timeline: view()) {
    .steps-container::after {
        animation-name: signalFlowTraverse;
        animation-duration: 1ms;
        animation-timing-function: linear;
        animation-fill-mode: both;
        animation-timeline: view(block);
        animation-range: entry 10% cover 75%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .steps-container::after {
        animation: none !important;
        left: calc(100% - var(--pipeline-edge) - 12px);
    }

    .step,
    .step-number,
    .step-icon {
        transition: none !important;
    }
}

html[data-animations="off"] .steps-container::after {
    animation: none !important;
    left: calc(100% - var(--pipeline-edge) - 12px);
}

html[data-animations="off"] .step,
html[data-animations="off"] .step-number,
html[data-animations="off"] .step-icon {
    transition: none !important;
}

/* Global Community Section */
.global-community {
    padding: var(--space-64) 0;
    background:
        radial-gradient(circle at 10% 14%, rgb(0 186 136 / 0.12), transparent 38%),
        radial-gradient(circle at 86% 10%, rgb(var(--accent) / 0.16), transparent 44%),
        linear-gradient(160deg, rgb(var(--surface-2) / 0.32), rgb(var(--surface-1) / 0.96));
}

.global-community-layout {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--space-24);
    align-items: stretch;
}

.global-globe-stage {
    grid-column: span 8;
    position: relative;
    min-height: 420px;
    border-radius: var(--radius-md);
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 28%, rgb(var(--stroke) / 1) 72%);
    overflow: hidden;
    background: linear-gradient(165deg, rgb(8 28 55 / 0.98), rgb(10 44 80 / 0.94));
    box-shadow: var(--shadow-2);
}

.global-globe-canvas-host {
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.global-globe-tooltip {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate3d(14px, 14px, 0);
    border-radius: 10px;
    padding: 0.34rem 0.56rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgb(234 246 255 / 0.98);
    background: rgb(4 18 36 / 0.92);
    border: 1px solid rgb(var(--accent) / 0.38);
    box-shadow: 0 10px 18px rgb(0 0 0 / 0.36);
    pointer-events: none;
    z-index: 2;
}

.global-map-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 0.7rem;
}

.global-map-fallback svg {
    width: 100%;
    height: 100%;
    max-height: 420px;
    display: block;
    border-radius: calc(var(--radius-md) - 4px);
}

.global-community-panel {
    grid-column: span 4;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    background: linear-gradient(145deg, rgb(var(--surface-1) / 0.94), rgb(var(--surface-2) / 0.82));
    box-shadow: var(--shadow-1);
    padding: var(--space-24);
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.global-community-panel h3 {
    margin: 0;
    color: var(--text-dark);
    font-weight: 700;
}

.global-community-panel p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.55;
}

.global-community-hotspots {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.48rem;
}

.global-community-hotspot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    background: linear-gradient(150deg, rgb(var(--surface-1) / 0.9), rgb(var(--surface-2) / 0.7));
    padding: 0.45rem 0.62rem;
    font-size: 0.84rem;
}

.global-community-hotspot strong {
    color: var(--text-dark);
    font-weight: 600;
}

.global-community-hotspot span {
    color: color-mix(in srgb, rgb(var(--accent) / 1) 68%, rgb(0 186 136 / 1) 32%);
    font-weight: 700;
}

.global-community-controls {
    margin-top: auto;
}

.global-community-controls .btn {
    width: 100%;
}

.global-community-invite {
    font-size: 0.92rem;
}

/* Progress Section */
.progress {
    padding: var(--space-64) 0;
    background: var(--how-bg);
}

.progress-tags {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-12);
}

.milestone-progress-block {
    grid-column: 1 / -1;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    box-shadow: var(--shadow-1);
    padding: var(--space-20, 20px) var(--space-16);
    display: grid;
    gap: var(--space-12);
}

.milestone-progress-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-12);
}

.milestone-progress-header h3 {
    color: var(--text-dark);
    font-weight: 600;
}

.milestone-progress-caption {
    color: var(--text-light);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.milestone-progress-list {
    display: grid;
    gap: var(--space-12);
}

.milestone-progress-item {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    background: linear-gradient(150deg, rgb(var(--surface-1) / 0.94), rgb(var(--surface-2) / 0.8));
    padding: 0.95rem 1rem;
    display: grid;
    gap: 0.55rem;
}

.milestone-progress-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-12);
}

.milestone-progress-name {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
}

.milestone-progress-percent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    padding: 0.22rem 0.62rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: color-mix(in srgb, rgb(var(--accent) / 1) 64%, rgb(var(--text) / 1) 36%);
    background: rgb(var(--surface-1) / 0.74);
}

.milestone-progress-description {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.45;
}

.milestone-progress-track {
    position: relative;
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: rgb(var(--surface-3) / 0.46);
    overflow: hidden;
}

.milestone-progress-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        color-mix(in srgb, rgb(var(--accent) / 1) 56%, rgb(0 186 136 / 1) 44%),
        rgb(var(--accent) / 1)
    );
    box-shadow: 0 0 10px rgb(var(--accent) / 0.26);
}

.milestone-progress-link {
    width: fit-content;
    color: rgb(var(--accent) / 1);
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgb(var(--accent) / 0.35);
}

.milestone-progress-link:hover {
    border-bottom-color: rgb(var(--accent) / 1);
}

.milestone-progress-empty {
    color: var(--text-light);
    font-size: 0.9rem;
}

.progress-tag-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    padding: 0.35rem 0.78rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    background: linear-gradient(135deg, rgb(var(--surface-1) / 0.95), rgb(var(--surface-2) / 0.74));
    box-shadow: var(--shadow-1);
}

.milestone-timeline {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--space-16);
}

.milestone-column {
    grid-column: span 4;
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-1);
    padding: var(--space-20, 20px) var(--space-16);
}

.milestone-phase {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: var(--space-12);
}

.milestone-list {
    list-style: none;
    display: grid;
    gap: var(--space-12);
}

.milestone-item h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: var(--space-8);
}

.milestone-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.45;
}

.milestone-empty {
    color: var(--text-light);
    font-size: 0.9rem;
}

.build-log-card {
    grid-column: 1 / -1;
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-1);
    padding: var(--space-20, 20px) var(--space-16);
}

.build-log-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.build-log-header h3 {
    color: var(--text-dark);
    font-weight: 600;
}

.build-log-limit {
    color: var(--text-light);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.build-log-list {
    list-style: none;
    display: grid;
    gap: var(--space-12);
}

.build-log-item {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    background: linear-gradient(140deg, rgb(var(--surface-2) / 0.48), rgb(var(--surface-1) / 0.96));
    padding: var(--space-12) var(--space-16);
}

.build-log-item.is-empty {
    color: var(--text-light);
}

.build-log-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-12);
    margin-bottom: var(--space-8);
}

.build-log-item-date {
    color: var(--text-light);
    font-size: 0.82rem;
}

.build-log-item-title {
    color: var(--text-dark);
    font-size: 0.94rem;
    line-height: 1.45;
}

.build-log-item-tags {
    margin-top: var(--space-8);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-8);
}

.build-log-item-tags .progress-tag-chip {
    font-size: 0.72rem;
    padding: 0.2rem 0.54rem;
}

/* Design Partners & Supporters */
.design-partners-page {
    --bg: 10 19 33;
    --surface-1: 16 28 46;
    --surface-2: 20 37 60;
    --surface-3: 30 53 83;
    --stroke: 119 152 194;
    --muted: 162 184 213;
    --text: 229 237 246;
    --accent: 102 181 255;
    --text-dark: rgb(var(--text) / 1);
    --text-light: rgb(var(--muted) / 1);
    --bg-page: rgb(var(--bg) / 1);
    --bg-surface: rgb(var(--surface-1) / 1);
    --border-soft: rgb(var(--stroke) / 0.34);
    --navbar-bg: rgb(var(--bg) / 0.86);
    --navbar-bg-scrolled: rgb(var(--bg) / 0.97);
    background:
        radial-gradient(circle at 12% 14%, rgb(0 201 144 / 0.22), transparent 44%),
        radial-gradient(circle at 86% 10%, rgb(var(--accent) / 0.24), transparent 50%),
        linear-gradient(170deg, rgb(var(--bg) / 1), color-mix(in srgb, rgb(var(--surface-3) / 1) 44%, rgb(var(--bg) / 1) 56%));
}

.design-partners-page .privacy-card {
    backdrop-filter: none;
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 36%, rgb(var(--stroke) / 1) 64%);
    background:
        radial-gradient(circle at 88% 8%, rgb(var(--accent) / 0.2), transparent 54%),
        radial-gradient(circle at 14% 92%, rgb(0 201 144 / 0.15), transparent 50%),
        linear-gradient(150deg, rgb(var(--surface-1) / 0.95), rgb(var(--surface-2) / 0.9));
}

.supporters {
    padding: var(--space-64) 0;
    background: var(--bg-surface);
}

.design-partners-page .supporters {
    background: transparent;
}

.supporters-logo-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--space-24);
    margin-bottom: var(--space-16);
}

.supporter-logo-card {
    grid-column: span 4;
    background: var(--bg-surface);
    padding: var(--space-24);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-1);
    border: 1px solid var(--border-soft);
    transition:
        opacity 0.36s ease,
        filter 0.36s ease,
        transform 0.36s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.design-partners-page .supporter-logo-card {
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 28%, rgb(var(--stroke) / 1) 72%);
    background: linear-gradient(150deg, rgb(var(--surface-1) / 0.94), rgb(var(--surface-2) / 0.88));
}

.supporter-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.supporter-logo-card:hover {
    transform: translateY(-2px) scale(1.04);
    filter: contrast(1.08);
    box-shadow: var(--shadow-2);
}

.supporter-logo-card:hover::before {
    transform: scaleX(1);
}

.supporters-logo-grid.logo-reveal-ready > .supporter-logo-card {
    opacity: 0.4 !important;
    filter: grayscale(100%);
    transform: translateY(12px);
    animation: none !important;
    transition-delay: calc(var(--logo-stagger-index, 0) * 80ms);
}

.supporters-logo-grid.logo-reveal-ready.is-logo-live > .supporter-logo-card {
    opacity: 1 !important;
    filter: grayscale(0%);
    transform: translateY(0);
}

.supporters-logo-grid.logo-reveal-ready.is-logo-live > .supporter-logo-card:hover {
    transform: translateY(-2px) scale(1.04);
    filter: grayscale(0%) contrast(1.08);
}

.supporter-logo-mark {
    min-height: 74px;
    border-radius: var(--radius-sm);
    border: 1px dashed var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgb(var(--surface-2) / 0.72), rgb(var(--surface-3) / 0.6));
    padding: 0.55rem 0.7rem;
    margin-bottom: var(--space-12);
}

.design-partners-page .supporter-logo-mark {
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 30%, rgb(var(--stroke) / 1) 70%);
    background: linear-gradient(140deg, rgb(var(--surface-2) / 0.86), rgb(var(--surface-3) / 0.74));
}

.supporter-logo-image {
    width: min(180px, 100%);
    max-height: 56px;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

.supporter-logo-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
}

.supporters-disclaimer {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--space-24);
    font-style: italic;
}

.supporters-join-card {
    grid-column: 1 / -1;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgb(var(--surface-1) / 0.94), rgb(var(--surface-2) / 0.8));
    box-shadow: var(--shadow-1);
    padding: var(--space-20);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-20);
}

.design-partners-page .supporters-join-card {
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 32%, rgb(var(--stroke) / 1) 68%);
    background: linear-gradient(150deg, rgb(var(--surface-1) / 0.94), rgb(var(--surface-2) / 0.88));
}

.supporters-join-card p {
    color: var(--text-light);
    margin: 0;
    max-width: 70ch;
}

.supporters-actions {
    display: grid;
    gap: 0.65rem;
    justify-items: start;
}

.supporters-contact-emails {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.42rem;
    color: var(--text-light);
    font-size: 0.92rem;
}

.supporters-contact-emails > span:first-child {
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 0.12rem;
}

.advisor-row {
    grid-column: 1 / -1;
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-1);
    padding: var(--space-24);
}

.design-partners-page .advisor-row {
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 30%, rgb(var(--stroke) / 1) 70%);
    background: linear-gradient(150deg, rgb(var(--surface-1) / 0.94), rgb(var(--surface-2) / 0.88));
}

.advisor-row h3 {
    margin-bottom: var(--space-16);
    color: var(--text-dark);
    font-weight: 600;
}

.advisor-placeholder-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--space-16);
}

.advisor-placeholder-card {
    grid-column: span 4;
    background: linear-gradient(140deg, rgb(var(--surface-2) / 0.5), rgb(var(--surface-1) / 0.95));
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    padding: var(--space-16);
    transition: var(--transition);
}

.design-partners-page .advisor-placeholder-card {
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 30%, rgb(var(--stroke) / 1) 70%);
    background: linear-gradient(150deg, rgb(var(--surface-1) / 0.92), rgb(var(--surface-2) / 0.86));
}

.design-partners-page .supporters-logo-grid.logo-reveal-ready > .supporter-logo-card,
.design-partners-page .supporters-logo-grid.logo-reveal-ready.is-logo-live > .supporter-logo-card,
.design-partners-page .supporters-logo-grid.logo-reveal-ready.is-logo-live > .supporter-logo-card:hover {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
}

.design-partners-page .section-processing::before {
    opacity: 0 !important;
    animation: none !important;
}

.design-partners-page .section-processing > :not(.section-processing-loader) {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

.design-partners-page :where(.privacy-shell > header, .privacy-shell > section),
.design-partners-page :where(.supporters-logo-grid, .advisor-placeholder-grid) > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    animation-timeline: auto !important;
    view-timeline-name: none !important;
}

.advisor-placeholder-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-1);
}

.advisor-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin-bottom: var(--space-12);
    border: 1px solid var(--border-soft);
    background: linear-gradient(135deg, rgb(var(--surface-3) / 1), rgb(var(--surface-2) / 1));
    filter: grayscale(1);
    opacity: 0.82;
}

.advisor-placeholder-card h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: var(--space-8);
}

.advisor-placeholder-card p {
    color: var(--text-light);
    font-size: 0.92rem;
}

/* Footer */
.footer {
    background:
        radial-gradient(circle at 16% 24%, rgb(var(--accent) / 0.12), transparent 42%),
        linear-gradient(160deg, rgb(var(--bg) / 1), color-mix(in srgb, rgb(var(--bg) / 1) 78%, rgb(var(--surface-2) / 1) 22%));
    color: rgb(var(--text) / 1);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgb(var(--stroke) / 0.28);
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1.3fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 35px;
    width: auto;
    transition: var(--transition);
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-section p {
    color: color-mix(in srgb, rgb(var(--text) / 1) 78%, rgb(var(--muted) / 1) 22%);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: color-mix(in srgb, rgb(var(--accent) / 1) 62%, rgb(var(--text) / 1) 38%);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: color-mix(in srgb, rgb(var(--text) / 1) 84%, rgb(var(--muted) / 1) 16%);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: rgb(var(--accent) / 1);
}

.footer-bottom {
    border-top: 1px solid rgb(var(--stroke) / 0.26);
    padding-top: 2rem;
    text-align: center;
    color: color-mix(in srgb, rgb(var(--text) / 1) 76%, rgb(var(--muted) / 1) 24%);
}

.footer-bottom p + p {
    margin-top: 0.4rem;
}

.footer-admin-link {
    color: rgb(var(--accent) / 1);
    text-decoration: none;
    border-bottom: 1px solid rgb(var(--accent) / 0.42);
    transition: var(--transition);
}

.footer-admin-link:hover {
    color: color-mix(in srgb, rgb(var(--accent) / 1) 70%, rgb(var(--text) / 1) 30%);
    border-bottom-color: color-mix(in srgb, rgb(var(--accent) / 1) 70%, rgb(var(--text) / 1) 30%);
}

.footer-contact {
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.footer-contact a {
    color: rgb(var(--accent) / 1);
    text-decoration: none;
    border-bottom: 1px solid rgb(var(--accent) / 0.38);
}

.footer-contact a:hover {
    color: color-mix(in srgb, rgb(var(--accent) / 1) 70%, rgb(var(--text) / 1) 30%);
    border-bottom-color: color-mix(in srgb, rgb(var(--accent) / 1) 70%, rgb(var(--text) / 1) 30%);
}

.footer-contact > span:first-child {
    color: color-mix(in srgb, rgb(var(--text) / 1) 72%, rgb(var(--muted) / 1) 28%);
    margin-top: 0.12rem;
}

.contact-options {
    display: grid;
    gap: 0.18rem;
}

.contact-options a {
    overflow-wrap: anywhere;
}

.footer-motion-toggle {
    margin-top: 0.8rem;
}

.motion-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.58rem;
    cursor: pointer;
    color: color-mix(in srgb, rgb(var(--text) / 1) 76%, rgb(var(--muted) / 1) 24%);
    user-select: none;
}

.motion-toggle-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.motion-toggle-switch {
    width: 44px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid rgb(var(--stroke) / 0.75);
    background: linear-gradient(135deg, rgb(var(--surface-1) / 0.92), rgb(var(--surface-2) / 0.72));
    padding: 2px;
    display: inline-flex;
    align-items: center;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.motion-toggle-knob {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgb(var(--surface-1) / 1);
    box-shadow: 0 1px 4px rgb(var(--bg) / 0.4);
    transform: translateX(0);
    transition: transform 0.25s ease;
}

.motion-toggle-input:checked + .motion-toggle-switch {
    border-color: rgb(var(--accent) / 0.86);
    background: linear-gradient(135deg, rgb(var(--accent) / 0.78), rgb(57 221 178 / 0.72));
    box-shadow: 0 4px 12px rgb(var(--accent) / 0.22);
}

.motion-toggle-input:checked + .motion-toggle-switch .motion-toggle-knob {
    transform: translateX(20px);
}

.motion-toggle-input:focus-visible + .motion-toggle-switch {
    outline: 2px solid rgb(var(--accent) / 0.9);
    outline-offset: 2px;
}

.motion-toggle-text {
    font-size: 0.88rem;
    font-weight: 600;
}

.footer-data-policy {
    list-style: disc !important;
    padding-left: 1.05rem !important;
    margin: 0;
    display: grid;
    gap: 0.42rem;
}

.footer-data-policy li {
    margin: 0 !important;
    color: color-mix(in srgb, rgb(var(--text) / 1) 84%, rgb(var(--muted) / 1) 16%);
    font-size: 0.9rem;
    line-height: 1.45;
}

/* Privacy Page */
.privacy-page {
    min-height: var(--app-vh, 100vh);
    background:
        radial-gradient(circle at 12% 18%, rgb(var(--accent) / 0.14), transparent 42%),
        radial-gradient(circle at 86% 10%, rgb(var(--surface-3) / 0.3), transparent 45%),
        linear-gradient(170deg, rgb(var(--bg) / 1), color-mix(in srgb, rgb(var(--bg) / 1) 74%, rgb(var(--surface-2) / 1) 26%));
}

.privacy-page.privacy-no-scroll-animations :where(.privacy-shell > header, .privacy-shell > section),
.privacy-page.privacy-no-scroll-animations :where(.privacy-grid) > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    animation-timeline: auto !important;
    view-timeline-name: none !important;
}

.privacy-page.privacy-no-scroll-animations .section-processing {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    view-timeline-name: none !important;
}

.privacy-page.privacy-no-scroll-animations .section-processing::before {
    opacity: 0 !important;
    animation: none !important;
}

.privacy-page.privacy-no-scroll-animations .section-processing > :not(.section-processing-loader) {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

.progress-tab-page {
    background:
        radial-gradient(circle at 10% 16%, rgb(0 196 138 / 0.18), transparent 44%),
        radial-gradient(circle at 88% 10%, rgb(var(--accent) / 0.22), transparent 46%),
        linear-gradient(
            170deg,
            rgb(var(--bg) / 1),
            color-mix(in srgb, rgb(var(--bg) / 1) 68%, rgb(var(--surface-2) / 1) 32%)
        );
}

/* Progress page: keep reveal flow but remove blur effects only on this page. */
.progress-tab-page .navbar,
.progress-tab-page .nav-more-menu,
.progress-tab-page .nav-drawer,
.progress-tab-page .privacy-card,
.progress-tab-page .section-processing,
.progress-tab-page .section-processing > :not(.section-processing-loader),
.progress-tab-page :where(.privacy-shell > header, .privacy-shell > section),
.progress-tab-page :where(
    .features-grid,
    .steps-container,
    .supporters-logo-grid,
    .advisor-placeholder-grid,
    .privacy-grid,
    .why-now-grid,
    .why-now-live-metrics,
    .investor-use-grid,
    .investor-live-grid,
    .milestone-timeline,
    .milestone-progress-list,
    .build-log-list
) > * {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    filter: none !important;
}

.progress-tab-page .privacy-hero {
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 28%, rgb(var(--stroke) / 1) 72%);
    background:
        radial-gradient(circle at 16% 8%, rgb(0 196 138 / 0.16), transparent 48%),
        linear-gradient(145deg, rgb(var(--surface-1) / 0.95), rgb(var(--surface-2) / 0.8));
}

.progress-tab-page .progress {
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 22%, rgb(var(--stroke) / 1) 78%);
    border-radius: var(--radius-lg);
    padding: clamp(2.25rem, 5vw, 3.5rem) clamp(0.75rem, 2.6vw, 1.5rem);
    background:
        radial-gradient(circle at 10% 12%, rgb(0 196 138 / 0.14), transparent 50%),
        radial-gradient(circle at 88% 16%, rgb(var(--accent) / 0.16), transparent 48%),
        linear-gradient(160deg, rgb(var(--surface-2) / 0.7), rgb(var(--surface-1) / 0.92));
    box-shadow: 0 18px 36px rgb(var(--bg) / 0.24);
}

.progress-tab-page .progress-tag-chip {
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 56%, rgb(0 186 136 / 1) 44%);
    background: linear-gradient(135deg, rgb(0 186 136 / 0.2), rgb(var(--accent) / 0.24));
    color: color-mix(in srgb, rgb(var(--text) / 1) 88%, rgb(var(--accent) / 1) 12%);
    box-shadow: 0 10px 18px rgb(var(--bg) / 0.16);
}

.progress-tab-page .milestone-progress-block,
.progress-tab-page .milestone-column,
.progress-tab-page .build-log-card {
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 26%, rgb(var(--stroke) / 1) 74%);
    background:
        radial-gradient(circle at 8% 10%, rgb(0 186 136 / 0.1), transparent 48%),
        linear-gradient(150deg, rgb(var(--surface-1) / 0.96), rgb(var(--surface-2) / 0.8));
}

.progress-tab-page .milestone-progress-caption {
    color: color-mix(in srgb, rgb(var(--text) / 1) 58%, rgb(var(--accent) / 1) 42%);
}

.progress-tab-page .milestone-progress-item {
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 26%, rgb(var(--stroke) / 1) 74%);
    background:
        radial-gradient(circle at 10% 12%, rgb(0 186 136 / 0.11), transparent 44%),
        linear-gradient(142deg, rgb(var(--surface-1) / 0.92), rgb(var(--surface-2) / 0.82));
}

.progress-tab-page .milestone-progress-percent {
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 44%, rgb(var(--stroke) / 1) 56%);
    background: linear-gradient(135deg, rgb(0 186 136 / 0.2), rgb(var(--accent) / 0.22));
}

.progress-tab-page .milestone-progress-track {
    background: color-mix(in srgb, rgb(var(--accent) / 1) 24%, rgb(var(--surface-3) / 1) 76%);
}

.progress-tab-page .milestone-phase {
    color: color-mix(in srgb, rgb(var(--text) / 1) 54%, rgb(var(--accent) / 1) 46%);
    font-weight: 700;
}

.progress-tab-page .build-log-limit,
.progress-tab-page .build-log-item-date {
    color: color-mix(in srgb, rgb(var(--text) / 1) 58%, rgb(var(--accent) / 1) 42%);
}

.progress-tab-page .build-log-item {
    border-color: color-mix(in srgb, rgb(0 186 136 / 1) 38%, rgb(var(--stroke) / 1) 62%);
    background:
        radial-gradient(circle at 10% 12%, rgb(0 186 136 / 0.12), transparent 44%),
        linear-gradient(142deg, rgb(var(--surface-1) / 0.9), rgb(var(--surface-2) / 0.84));
}

html[data-theme="dark"] .progress-tab-page {
    background:
        radial-gradient(circle at 12% 16%, rgb(0 201 144 / 0.22), transparent 44%),
        radial-gradient(circle at 88% 10%, rgb(var(--accent) / 0.24), transparent 48%),
        linear-gradient(
            170deg,
            rgb(var(--bg) / 1),
            color-mix(in srgb, rgb(var(--surface-3) / 1) 44%, rgb(var(--bg) / 1) 56%)
        );
}

html[data-theme="dark"] .progress-tab-page .privacy-hero {
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 36%, rgb(var(--stroke) / 1) 64%);
    background:
        radial-gradient(circle at 14% 8%, rgb(0 201 144 / 0.2), transparent 48%),
        linear-gradient(148deg, rgb(var(--surface-1) / 0.95), rgb(var(--surface-2) / 0.9));
}

html[data-theme="dark"] .progress-tab-page .progress {
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 34%, rgb(var(--stroke) / 1) 66%);
    background:
        radial-gradient(circle at 12% 14%, rgb(0 201 144 / 0.2), transparent 50%),
        radial-gradient(circle at 88% 20%, rgb(var(--accent) / 0.24), transparent 50%),
        linear-gradient(162deg, rgb(var(--surface-2) / 0.82), rgb(var(--surface-1) / 0.9));
    box-shadow: 0 20px 40px rgb(0 0 0 / 0.35);
}

html[data-theme="dark"] .progress-tab-page .progress-tag-chip {
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 58%, rgb(0 201 144 / 1) 42%);
    background: linear-gradient(135deg, rgb(0 201 144 / 0.24), rgb(var(--accent) / 0.32));
    color: color-mix(in srgb, rgb(var(--text) / 1) 82%, rgb(var(--accent) / 1) 18%);
}

html[data-theme="dark"] .progress-tab-page .milestone-progress-block,
html[data-theme="dark"] .progress-tab-page .milestone-column,
html[data-theme="dark"] .progress-tab-page .build-log-card {
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 34%, rgb(var(--stroke) / 1) 66%);
    background:
        radial-gradient(circle at 10% 8%, rgb(0 201 144 / 0.16), transparent 44%),
        linear-gradient(150deg, rgb(var(--surface-1) / 0.95), rgb(var(--surface-2) / 0.9));
}

html[data-theme="dark"] .progress-tab-page .milestone-progress-caption,
html[data-theme="dark"] .progress-tab-page .milestone-phase,
html[data-theme="dark"] .progress-tab-page .build-log-limit,
html[data-theme="dark"] .progress-tab-page .build-log-item-date {
    color: color-mix(in srgb, rgb(var(--text) / 1) 62%, rgb(var(--accent) / 1) 38%);
}

html[data-theme="dark"] .progress-tab-page .milestone-progress-item {
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 36%, rgb(var(--stroke) / 1) 64%);
    background:
        radial-gradient(circle at 10% 10%, rgb(0 201 144 / 0.14), transparent 46%),
        linear-gradient(145deg, rgb(var(--surface-1) / 0.92), rgb(var(--surface-2) / 0.9));
}

html[data-theme="dark"] .progress-tab-page .milestone-progress-percent {
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 48%, rgb(var(--stroke) / 1) 52%);
    background: linear-gradient(135deg, rgb(0 201 144 / 0.26), rgb(var(--accent) / 0.3));
}

html[data-theme="dark"] .progress-tab-page .milestone-progress-track {
    background: color-mix(in srgb, rgb(var(--accent) / 1) 28%, rgb(var(--surface-3) / 1) 72%);
}

html[data-theme="dark"] .progress-tab-page .build-log-item {
    border-color: color-mix(in srgb, rgb(0 201 144 / 1) 42%, rgb(var(--stroke) / 1) 58%);
    background:
        radial-gradient(circle at 10% 10%, rgb(0 201 144 / 0.14), transparent 46%),
        linear-gradient(145deg, rgb(var(--surface-1) / 0.92), rgb(var(--surface-2) / 0.9));
}

.privacy-footer {
    margin-top: 1.5rem;
}

.privacy-shell {
    max-width: 1080px;
    margin: 0 auto;
    padding: 5.5rem var(--space-24) var(--space-48);
    display: grid;
    gap: var(--space-20, 20px);
}

.privacy-card {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgb(var(--surface-1) / 0.9), rgb(var(--surface-2) / 0.76));
    box-shadow: var(--shadow-1);
    backdrop-filter: blur(14px);
    padding: var(--space-24) var(--space-24);
}

.privacy-hero {
    padding: var(--space-24) clamp(1.2rem, 3vw, 2rem);
}

.privacy-kicker {
    margin-bottom: var(--space-8);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(var(--accent) / 1);
    font-weight: 700;
}

.privacy-lead {
    margin-top: var(--space-12);
    color: var(--text-light);
    max-width: 64ch;
}

.privacy-meta {
    margin-top: var(--space-16);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-12);
}

.privacy-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: rgb(var(--surface-1) / 0.58);
    color: var(--text-light);
    font-size: 0.85rem;
}

.privacy-chip-contact {
    align-items: flex-start;
    max-width: 100%;
}

.privacy-chip-contact .contact-options {
    gap: 0.08rem;
}

.privacy-inline-link {
    color: rgb(var(--accent) / 1);
    text-decoration: none;
}

.privacy-inline-link:hover {
    text-decoration: underline;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--space-16);
}

.why-now-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-16);
}

.why-now-card {
    display: grid;
    align-content: start;
    gap: var(--space-12);
}

.why-now-card h2 {
    margin-bottom: 0;
}

.why-now-card p {
    margin: 0;
}

.why-now-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 1px solid var(--border-soft);
    background: linear-gradient(145deg, rgb(var(--surface-1) / 0.8), rgb(var(--surface-2) / 0.92));
    color: rgb(var(--accent) / 1);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    box-shadow: inset 0 0 0 1px rgb(var(--accent) / 0.12);
}

.why-now-page .privacy-shell {
    position: relative;
    overflow: hidden;
}

.why-now-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.why-now-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(0.5px);
    animation: whyNowOrbFloat 12s ease-in-out infinite;
}

.why-now-orb--a {
    width: 250px;
    height: 250px;
    top: 20px;
    left: -58px;
    background: radial-gradient(circle, rgb(0 186 136 / 0.35), transparent 72%);
}

.why-now-orb--b {
    width: 300px;
    height: 300px;
    top: 180px;
    right: -90px;
    background: radial-gradient(circle, rgb(var(--accent) / 0.34), transparent 70%);
    animation-delay: 1.4s;
}

.why-now-orb--c {
    width: 220px;
    height: 220px;
    bottom: 40px;
    left: 48%;
    background: radial-gradient(circle, rgb(0 186 136 / 0.2), transparent 76%);
    animation-delay: 2.6s;
}

.why-now-page .privacy-shell > :not(.why-now-atmosphere) {
    position: relative;
    z-index: 1;
}

.why-now-page .privacy-card {
    background:
        radial-gradient(circle at 86% 4%, rgb(var(--accent) / 0.12), transparent 52%),
        linear-gradient(145deg, rgb(var(--surface-1) / 0.94), rgb(var(--surface-2) / 0.82));
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 24%, rgb(var(--stroke) / 1) 76%);
}

.why-now-hero {
    box-shadow: 0 20px 36px rgb(var(--bg) / 0.26);
}

.why-now-live-card {
    display: grid;
    gap: var(--space-20);
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 30%, rgb(0 186 136 / 1) 20%, rgb(var(--stroke) / 1) 50%);
    background:
        radial-gradient(circle at 8% 16%, rgb(0 186 136 / 0.22), transparent 46%),
        radial-gradient(circle at 86% 8%, rgb(var(--accent) / 0.18), transparent 52%),
        linear-gradient(150deg, rgb(var(--surface-1) / 0.95), rgb(var(--surface-2) / 0.84));
}

.why-now-live-head h2 {
    margin-bottom: var(--space-8);
}

.why-now-live-kicker {
    margin-bottom: var(--space-8);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: color-mix(in srgb, rgb(0 186 136 / 1) 42%, rgb(var(--accent) / 1) 58%);
}

.why-now-live-head p {
    margin: 0;
}

.why-now-live-head p:last-child {
    max-width: 66ch;
}

.why-now-live-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-16);
}

.why-now-live-metric {
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 26%, rgb(var(--stroke) / 1) 74%);
    border-radius: var(--radius-sm);
    background: linear-gradient(145deg, rgb(var(--surface-1) / 0.9), rgb(var(--surface-2) / 0.78));
    padding: 0.95rem 1rem;
    box-shadow: 0 12px 20px rgb(var(--bg) / 0.15);
}

.why-now-live-value {
    margin: 0 0 0.2rem;
    font-size: clamp(1.32rem, 2.4vw, 1.76rem);
    font-weight: 800;
    line-height: 1.15;
    color: color-mix(in srgb, rgb(var(--accent) / 1) 68%, rgb(0 186 136 / 1) 32%);
}

.why-now-live-value .counter {
    display: inline-block;
    transform-origin: center;
    will-change: transform;
}

.why-now-live-value .counter.counter-complete {
    animation: counterValuePop 0.34s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.why-now-live-label {
    margin: 0;
    font-size: 0.84rem;
    color: var(--text-light);
}

.confidence-index {
    display: grid;
    gap: 0.55rem;
    padding: 0.78rem 0.9rem 0.7rem;
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 26%, rgb(var(--stroke) / 1) 74%);
    border-radius: var(--radius-sm);
    background: linear-gradient(145deg, rgb(var(--surface-1) / 0.9), rgb(var(--surface-2) / 0.8));
    box-shadow: 0 10px 20px rgb(var(--bg) / 0.14);
}

.confidence-index-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.7rem;
}

.confidence-index-title,
.confidence-index-value {
    margin: 0;
}

.confidence-index-title {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-light);
}

.confidence-index-value {
    font-size: 0.92rem;
    font-weight: 700;
    color: color-mix(in srgb, rgb(var(--accent) / 1) 65%, rgb(0 186 136 / 1) 35%);
}

.confidence-meter {
    position: relative;
    height: 9px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 32%, rgb(var(--stroke) / 1) 68%);
    overflow: hidden;
    background: linear-gradient(90deg, rgb(var(--surface-2) / 0.78), rgb(var(--surface-1) / 0.68));
}

.confidence-meter::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        to right,
        transparent 0,
        transparent calc(16.66% - 1px),
        rgb(var(--stroke) / 0.42) calc(16.66% - 1px),
        rgb(var(--stroke) / 0.42) 16.66%
    );
    opacity: 0.85;
}

.confidence-meter-fill {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    transform-origin: left center;
    transform: scaleX(1);
    background: linear-gradient(90deg, rgb(0 186 136 / 0.98), rgb(var(--accent) / 0.98) 56%, rgb(130 160 255 / 0.96) 100%);
    box-shadow: 0 0 12px rgb(var(--accent) / 0.34);
}

.confidence-meter-scale {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-light);
}

@keyframes confidenceMeterCharge {
    0% {
        transform: scaleX(0.15);
    }

    82% {
        transform: scaleX(1.03);
    }

    100% {
        transform: scaleX(1);
    }
}

@supports (animation-timeline: view()) {
    .confidence-meter-fill {
        transform: scaleX(0.15);
        animation-name: confidenceMeterCharge;
        animation-duration: 1ms;
        animation-timing-function: linear;
        animation-fill-mode: both;
        animation-timeline: view(block);
        animation-range: entry 0% cover 55%;
        will-change: transform;
    }
}

.why-now-pulse {
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 0.45rem;
    align-items: end;
    height: 68px;
}

.why-now-pulse-bar {
    --bar-scale: 0.7;
    display: block;
    height: 100%;
    border-radius: 999px;
    transform-origin: bottom;
    transform: scaleY(var(--bar-scale));
    background: linear-gradient(180deg, rgb(var(--accent) / 0.95), rgb(0 186 136 / 0.95));
    box-shadow: 0 0 14px rgb(var(--accent) / 0.24);
    animation: whyNowPulseBar 1.2s ease-in-out infinite alternate;
}

.why-now-card {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

@keyframes counterValuePop {
    0% {
        transform: scale(1);
    }

    46% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.why-now-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    background: linear-gradient(90deg, rgb(0 186 136 / 0.86), rgb(var(--accent) / 0.9));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.why-now-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 28px rgb(var(--bg) / 0.26);
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 36%, rgb(var(--stroke) / 1) 64%);
}

.why-now-card:hover::before {
    transform: scaleX(1);
}

@supports not (animation-timeline: view()) {
    .why-now-page .reveal-on-scroll {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity 0.45s ease, transform 0.45s ease;
    }

    .why-now-page .reveal-on-scroll.is-revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

html[data-theme="dark"] .why-now-page .privacy-card {
    background:
        radial-gradient(circle at 86% 6%, rgb(var(--accent) / 0.18), transparent 54%),
        linear-gradient(150deg, rgb(var(--surface-1) / 0.95), rgb(var(--surface-2) / 0.88));
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 32%, rgb(var(--stroke) / 1) 68%);
}

html[data-theme="dark"] .why-now-page .why-now-live-card {
    background:
        radial-gradient(circle at 8% 14%, rgb(0 201 144 / 0.28), transparent 48%),
        radial-gradient(circle at 86% 8%, rgb(var(--accent) / 0.22), transparent 52%),
        linear-gradient(150deg, rgb(var(--surface-1) / 0.95), rgb(var(--surface-2) / 0.9));
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 38%, rgb(var(--stroke) / 1) 62%);
}

html[data-theme="dark"] .why-now-page .why-now-live-metric {
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 36%, rgb(var(--stroke) / 1) 64%);
    background: linear-gradient(150deg, rgb(var(--surface-1) / 0.94), rgb(var(--surface-2) / 0.88));
}

html[data-theme="dark"] .why-now-page .why-now-live-value {
    color: color-mix(in srgb, rgb(var(--accent) / 1) 62%, rgb(0 201 144 / 1) 38%);
}

html[data-theme="dark"] .why-now-page .why-now-card:hover {
    box-shadow: 0 20px 30px rgb(0 0 0 / 0.35);
}

.for-investors-page {
    background:
        radial-gradient(circle at 10% 14%, rgb(0 186 136 / 0.15), transparent 42%),
        radial-gradient(circle at 86% 10%, rgb(var(--accent) / 0.2), transparent 48%),
        linear-gradient(
            170deg,
            rgb(var(--bg) / 1),
            color-mix(in srgb, rgb(var(--bg) / 1) 66%, rgb(var(--surface-2) / 1) 34%)
        );
}

.investor-shell {
    position: relative;
    overflow: hidden;
}

.investor-shell > :not(.investor-atmosphere) {
    position: relative;
    z-index: 1;
}

.investor-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.investor-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(1px);
    animation: investorOrbFloat 11s ease-in-out infinite;
}

.investor-orb--a {
    width: 280px;
    height: 280px;
    top: 84px;
    left: -118px;
    background: radial-gradient(circle, rgb(0 186 136 / 0.24), transparent 70%);
}

.investor-orb--b {
    width: 340px;
    height: 340px;
    top: 190px;
    right: -112px;
    background: radial-gradient(circle, rgb(var(--accent) / 0.2), transparent 72%);
    animation-delay: 1.8s;
}

.investor-orb--c {
    width: 260px;
    height: 260px;
    bottom: 120px;
    left: 38%;
    background: radial-gradient(circle, rgb(0 186 136 / 0.14), transparent 74%);
    animation-delay: 3.1s;
}

.for-investors-page .privacy-card {
    background:
        radial-gradient(circle at 88% 8%, rgb(var(--accent) / 0.15), transparent 52%),
        radial-gradient(circle at 14% 92%, rgb(0 186 136 / 0.09), transparent 46%),
        linear-gradient(150deg, rgb(var(--surface-1) / 0.95), rgb(var(--surface-2) / 0.84));
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 28%, rgb(var(--stroke) / 1) 72%);
}

.investor-hero {
    box-shadow: 0 18px 34px rgb(var(--bg) / 0.26);
}

.investor-hero-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: var(--space-24);
    align-items: center;
}

.investor-hero-copy {
    display: grid;
    gap: var(--space-12);
}

.investor-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-8);
}

.investor-traction-board {
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 34%, rgb(var(--stroke) / 1) 66%);
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at 18% 16%, rgb(0 186 136 / 0.16), transparent 50%),
        linear-gradient(150deg, rgb(var(--surface-1) / 0.92), rgb(var(--surface-2) / 0.82));
    box-shadow: 0 14px 24px rgb(var(--bg) / 0.2);
    padding: 1rem 1rem 0.95rem;
    display: grid;
    gap: 0.85rem;
}

.investor-panel-title {
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: color-mix(in srgb, rgb(var(--text) / 1) 56%, rgb(var(--accent) / 1) 44%);
}

.investor-traction-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}

.investor-traction-metric {
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 24%, rgb(var(--stroke) / 1) 76%);
    border-radius: var(--radius-sm);
    background: rgb(var(--surface-1) / 0.68);
    padding: 0.65rem 0.7rem;
    display: grid;
    gap: 0.2rem;
}

.investor-traction-value {
    font-size: clamp(1.02rem, 1.8vw, 1.25rem);
    font-weight: 800;
    color: color-mix(in srgb, rgb(var(--accent) / 1) 64%, rgb(0 186 136 / 1) 36%);
    line-height: 1.2;
}

.investor-traction-label {
    font-size: 0.74rem;
    color: var(--text-light);
}

.investor-traction-updated {
    margin: 0;
    font-size: 0.78rem;
    color: var(--text-light);
}

.investor-grid {
    align-items: start;
}

.investor-kicker {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: color-mix(in srgb, rgb(var(--text) / 1) 52%, rgb(var(--accent) / 1) 48%);
}

.investor-opportunity-card {
    position: relative;
    display: grid;
    gap: var(--space-16);
}

.investor-opportunity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    background: linear-gradient(90deg, rgb(0 186 136 / 0.92), rgb(var(--accent) / 0.92));
}

.investor-opportunity-card h2,
.investor-opportunity-card p {
    margin: 0;
}

.investor-opportunity-card p {
    max-width: 78ch;
}

.investor-use-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-12);
}

.investor-use-item {
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 22%, rgb(var(--stroke) / 1) 78%);
    border-radius: var(--radius-sm);
    background: rgb(var(--surface-1) / 0.66);
    padding: 0.82rem 0.86rem;
    display: grid;
    gap: 0.3rem;
}

.investor-use-share {
    display: block;
    font-size: 1.02rem;
    font-weight: 800;
    color: color-mix(in srgb, rgb(var(--accent) / 1) 66%, rgb(0 186 136 / 1) 34%);
}

.investor-use-label {
    margin: 0;
    font-size: 0.84rem;
    color: var(--text-light);
}

.investor-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-12);
    margin-top: var(--space-4);
}

.investor-live-card {
    grid-column: span 6;
    display: grid;
    gap: var(--space-12);
}

.investor-live-card h2,
.investor-live-card p {
    margin: 0;
}

.investor-live-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-12);
}

.investor-live-metric {
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 26%, rgb(var(--stroke) / 1) 74%);
    border-radius: var(--radius-sm);
    background: rgb(var(--surface-1) / 0.68);
    padding: 0.78rem 0.85rem;
    display: grid;
    gap: 0.25rem;
}

.investor-live-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.investor-live-value {
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    line-height: 1.2;
    color: color-mix(in srgb, rgb(var(--accent) / 1) 62%, rgb(0 186 136 / 1) 38%);
}

.investor-live-footnote {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-light);
}

.investor-contact-card {
    grid-column: span 6;
    display: grid;
    gap: var(--space-12);
}

.investor-contact-card h2,
.investor-contact-card p {
    margin: 0;
}

.investor-contact-email {
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
}

.investor-contact-email > span:first-child {
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 0.12rem;
}

.investor-inquiry-form {
    width: 100%;
    display: grid;
    gap: var(--space-12);
}

.investor-field {
    display: grid;
    gap: 0.35rem;
}

.investor-field label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-light);
}

.investor-field input,
.investor-field textarea {
    width: 100%;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    background: rgb(var(--surface-1) / 0.88);
    color: var(--text-dark);
    padding: 0.62rem 0.78rem;
    font: inherit;
}

.investor-field.field-floating {
    position: relative;
    gap: 0;
}

.investor-field.field-floating label.floating-label {
    position: absolute;
    left: 0.72rem;
    top: 0.46rem;
    transform: none;
    transform-origin: left top;
    background: rgb(var(--surface-1) / 0.96);
    padding: 0 0.34rem;
    pointer-events: none;
    transition: color 220ms ease;
    z-index: 2;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.investor-field.field-floating .floating-control {
    padding-top: 1.9rem;
    padding-bottom: 0.66rem;
    line-height: 1.35;
}

.investor-field.field-floating.is-focused label.floating-label,
.investor-field.field-floating.has-value label.floating-label {
    color: color-mix(in srgb, rgb(var(--accent) / 1) 62%, rgb(var(--text) / 1) 38%);
}

.investor-field textarea {
    resize: vertical;
    min-height: 110px;
}

.investor-field.field-floating textarea.floating-control {
    min-height: 120px;
    padding-top: 2rem;
}

.investor-field input:focus-visible,
.investor-field textarea:focus-visible {
    outline: none;
    border-color: rgb(var(--accent) / 0.58);
    box-shadow: 0 0 0 3px rgb(var(--accent) / 0.18);
}

.investor-form-note {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-light);
}

.investor-form-status {
    min-height: 1.25rem;
    margin: 0;
    font-size: 0.86rem;
    font-weight: 600;
}

.investor-form-status.is-pending {
    color: color-mix(in srgb, rgb(var(--accent) / 1) 72%, rgb(var(--text) / 1) 28%);
}

.investor-form-status.is-success {
    color: color-mix(in srgb, rgb(0 186 136 / 1) 78%, rgb(var(--text) / 1) 22%);
}

.investor-form-status.is-error {
    color: color-mix(in srgb, rgb(var(--accent) / 1) 40%, rgb(var(--text) / 1) 60%);
}

.investor-inquiry-form .btn[disabled] {
    opacity: 0.74;
    cursor: wait;
}

html[data-theme="dark"] .for-investors-page {
    background:
        radial-gradient(circle at 10% 14%, rgb(0 201 144 / 0.22), transparent 44%),
        radial-gradient(circle at 86% 10%, rgb(var(--accent) / 0.24), transparent 50%),
        linear-gradient(170deg, rgb(var(--bg) / 1), color-mix(in srgb, rgb(var(--surface-3) / 1) 44%, rgb(var(--bg) / 1) 56%));
}

html[data-theme="dark"] .for-investors-page .privacy-card {
    background:
        radial-gradient(circle at 88% 8%, rgb(var(--accent) / 0.2), transparent 54%),
        radial-gradient(circle at 14% 92%, rgb(0 201 144 / 0.15), transparent 50%),
        linear-gradient(150deg, rgb(var(--surface-1) / 0.95), rgb(var(--surface-2) / 0.9));
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 36%, rgb(var(--stroke) / 1) 64%);
}

html[data-theme="dark"] .investor-traction-board {
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 42%, rgb(var(--stroke) / 1) 58%);
    background:
        radial-gradient(circle at 18% 16%, rgb(0 201 144 / 0.22), transparent 52%),
        linear-gradient(150deg, rgb(var(--surface-1) / 0.94), rgb(var(--surface-2) / 0.88));
}

html[data-theme="dark"] .investor-traction-metric,
html[data-theme="dark"] .investor-use-item,
html[data-theme="dark"] .investor-live-metric {
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 34%, rgb(var(--stroke) / 1) 66%);
    background: linear-gradient(150deg, rgb(var(--surface-1) / 0.92), rgb(var(--surface-2) / 0.84));
}

html[data-theme="dark"] .investor-field input,
html[data-theme="dark"] .investor-field textarea {
    background: linear-gradient(140deg, rgb(var(--surface-1) / 0.96), rgb(var(--surface-2) / 0.82));
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 24%, rgb(var(--stroke) / 1) 76%);
}

@media (max-width: 980px) {
    .investor-hero-layout {
        grid-template-columns: 1fr;
        gap: var(--space-16);
    }

    .investor-traction-board {
        width: 100%;
    }

    .investor-use-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .investor-orb--a {
        width: 220px;
        height: 220px;
    }

    .investor-orb--b {
        width: 260px;
        height: 260px;
    }
}

@media (max-width: 640px) {
    .investor-hero-chips {
        gap: 0.35rem;
    }

    .investor-traction-grid,
    .investor-live-grid,
    .investor-use-grid {
        grid-template-columns: 1fr;
    }

    .investor-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .investor-orb--a,
    .investor-orb--b,
    .investor-orb--c {
        opacity: 0.66;
    }
}

.learn-page {
    background:
        radial-gradient(circle at 10% 14%, rgb(0 186 136 / 0.16), transparent 42%),
        radial-gradient(circle at 84% 8%, rgb(var(--accent) / 0.2), transparent 48%),
        linear-gradient(
            170deg,
            rgb(var(--bg) / 1),
            color-mix(in srgb, rgb(var(--bg) / 1) 62%, rgb(var(--surface-2) / 1) 38%)
        );
}

.learn-shell {
    position: relative;
    overflow: hidden;
}

.learn-shell > :not(.learn-atmosphere) {
    position: relative;
    z-index: 1;
}

.learn-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.learn-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(1px);
    animation: learnOrbFloat 12s ease-in-out infinite;
}

.learn-orb--a {
    width: 280px;
    height: 280px;
    top: 100px;
    left: -120px;
    background: radial-gradient(circle, rgb(0 186 136 / 0.24), transparent 70%);
}

.learn-orb--b {
    width: 340px;
    height: 340px;
    top: 180px;
    right: -110px;
    background: radial-gradient(circle, rgb(var(--accent) / 0.2), transparent 72%);
    animation-delay: 1.8s;
}

.learn-orb--c {
    width: 260px;
    height: 260px;
    bottom: 120px;
    left: 42%;
    background: radial-gradient(circle, rgb(0 186 136 / 0.16), transparent 74%);
    animation-delay: 3.4s;
}

.learn-page .privacy-card {
    background:
        radial-gradient(circle at 88% 8%, rgb(var(--accent) / 0.15), transparent 52%),
        radial-gradient(circle at 12% 92%, rgb(0 186 136 / 0.08), transparent 48%),
        linear-gradient(150deg, rgb(var(--surface-1) / 0.95), rgb(var(--surface-2) / 0.84));
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 28%, rgb(var(--stroke) / 1) 72%);
}

.learn-hero {
    box-shadow: 0 18px 34px rgb(var(--bg) / 0.26);
}

.learn-hero-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: var(--space-24);
    align-items: center;
}

.learn-hero-copy {
    display: grid;
    gap: var(--space-12);
}

.learn-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-8);
}

.learn-hero-visual {
    display: grid;
    align-items: stretch;
}

.learn-grid {
    align-items: start;
}

.learn-kicker {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: color-mix(in srgb, rgb(var(--text) / 1) 52%, rgb(var(--accent) / 1) 48%);
}

.learn-topic-card {
    position: relative;
    display: grid;
    align-content: start;
    gap: var(--space-12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.learn-topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    background: linear-gradient(90deg, rgb(0 186 136 / 0.92), rgb(var(--accent) / 0.92));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.learn-topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 30px rgb(var(--bg) / 0.24);
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 40%, rgb(var(--stroke) / 1) 60%);
}

.learn-topic-card:hover::before {
    transform: scaleX(1);
}

.learn-topic-card h2,
.learn-topic-card p {
    margin: 0;
}

.learn-topic-card--spotlight {
    background:
        radial-gradient(circle at 90% 10%, rgb(var(--accent) / 0.18), transparent 52%),
        radial-gradient(circle at 10% 90%, rgb(0 186 136 / 0.14), transparent 48%),
        linear-gradient(150deg, rgb(var(--surface-1) / 0.97), rgb(var(--surface-2) / 0.84));
}

.learn-bullet-list {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: var(--space-8);
    color: var(--text-light);
}

.learn-bullet-list li strong {
    color: var(--text-dark);
}

.learn-split-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-12);
}

.learn-split-list > div {
    border: 1px solid color-mix(in srgb, rgb(var(--accent) / 1) 22%, rgb(var(--stroke) / 1) 78%);
    border-radius: var(--radius-sm);
    background: rgb(var(--surface-1) / 0.66);
    padding: 0.8rem 0.9rem;
}

.learn-split-list h3 {
    margin: 0 0 0.45rem;
    font-size: 0.98rem;
    color: color-mix(in srgb, rgb(var(--text) / 1) 66%, rgb(var(--accent) / 1) 34%);
}

.learn-split-list ul {
    margin: 0;
    padding-left: 1rem;
    display: grid;
    gap: 0.35rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

html[data-theme="dark"] .learn-page {
    background:
        radial-gradient(circle at 10% 14%, rgb(0 201 144 / 0.22), transparent 44%),
        radial-gradient(circle at 84% 10%, rgb(var(--accent) / 0.24), transparent 50%),
        linear-gradient(170deg, rgb(var(--bg) / 1), color-mix(in srgb, rgb(var(--surface-3) / 1) 45%, rgb(var(--bg) / 1) 55%));
}

html[data-theme="dark"] .learn-page .privacy-card {
    background:
        radial-gradient(circle at 88% 8%, rgb(var(--accent) / 0.2), transparent 54%),
        radial-gradient(circle at 10% 92%, rgb(0 201 144 / 0.15), transparent 50%),
        linear-gradient(150deg, rgb(var(--surface-1) / 0.95), rgb(var(--surface-2) / 0.9));
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 36%, rgb(var(--stroke) / 1) 64%);
}

html[data-theme="dark"] .learn-signal-visual .signal-blend-viz {
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 48%, rgb(var(--stroke) / 1) 52%);
}

html[data-theme="dark"] .learn-split-list > div {
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 34%, rgb(var(--stroke) / 1) 66%);
    background: linear-gradient(150deg, rgb(var(--surface-1) / 0.92), rgb(var(--surface-2) / 0.84));
}

@media (max-width: 980px) {
    .learn-hero-layout {
        grid-template-columns: 1fr;
        gap: var(--space-16);
    }

    .learn-hero-visual {
        width: 100%;
    }

    .learn-orb--a {
        width: 220px;
        height: 220px;
    }

    .learn-orb--b {
        width: 260px;
        height: 260px;
    }
}

@media (max-width: 640px) {
    .learn-split-list {
        grid-template-columns: 1fr;
    }

    .learn-signal-visual .signal-blend-viz {
        min-height: 132px;
    }

    .learn-hero-chips {
        gap: 0.35rem;
    }

    .learn-orb--a,
    .learn-orb--b,
    .learn-orb--c {
        opacity: 0.65;
    }
}

html[data-theme="dark"] .supporters-join-card {
    background: linear-gradient(150deg, rgb(var(--surface-1) / 0.94), rgb(var(--surface-2) / 0.88));
    border-color: color-mix(in srgb, rgb(var(--accent) / 1) 30%, rgb(var(--stroke) / 1) 70%);
}

.privacy-grid .privacy-card {
    grid-column: span 6;
}

.investor-cta-card {
    display: grid;
    gap: var(--space-16);
    justify-items: start;
}

.investor-cta-card h2,
.investor-cta-card p {
    margin: 0;
}

.privacy-card-wide {
    grid-column: 1 / -1 !important;
}

.privacy-card h1,
.privacy-card h2 {
    color: var(--text-dark);
    margin-bottom: var(--space-8);
}

.privacy-card p {
    color: var(--text-light);
}

.privacy-list {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: var(--space-8);
    color: var(--text-light);
}

.privacy-back-link {
    display: inline-block;
    margin-bottom: var(--space-16);
    color: rgb(var(--accent) / 1);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    background: rgb(var(--surface-1) / 0.6);
}

.privacy-back-link:hover {
    border-color: rgb(var(--accent) / 0.52);
    box-shadow: 0 4px 14px rgb(var(--accent) / 0.18);
}

.privacy-contact-link {
    color: rgb(var(--accent) / 1);
    text-decoration: none;
    border-bottom: 1px solid rgb(var(--accent) / 0.35);
}

.privacy-contact-link:hover {
    border-bottom-color: rgb(var(--accent) / 1);
}

.privacy-contact-options {
    margin: 0;
    display: grid;
    gap: 0.22rem;
}

/* iOS Optimizations */
html.ios-device {
    --app-vh: 100dvh;
}

html.ios-device .hero,
html.ios-device .how-it-works,
html.ios-device .progress,
html.ios-device .supporters,
html.ios-device .contact,
html.ios-device .footer {
    background-attachment: scroll !important;
}

html.ios-device .waiting-list-content {
    backdrop-filter: blur(10px);
}

html.ios-device .navbar {
    backdrop-filter: blur(6px);
}

html.ios-device .privacy-card {
    backdrop-filter: blur(8px);
}

html.ios-device input,
html.ios-device textarea,
html.ios-device select {
    font-size: 16px !important;
}

/* Animations */
@keyframes heroGradientShift {
    0% {
        background-position: 0% 45%;
    }
    50% {
        background-position: 100% 55%;
    }
    100% {
        background-position: 0% 45%;
    }
}

@keyframes heroScrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(7px);
    }
}

@keyframes heroScrollPulse {
    0% {
        opacity: 0.28;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(8px);
    }
    100% {
        opacity: 0.22;
        transform: translateX(-50%) translateY(14px);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes whyNowOrbFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -14px, 0) scale(1.04);
    }
}

@keyframes whyNowPulseBar {
    0% {
        opacity: 0.45;
    }
    100% {
        opacity: 1;
    }
}

@keyframes learnOrbFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -12px, 0) scale(1.04);
    }
}

@keyframes investorOrbFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -12px, 0) scale(1.04);
    }
}

/* Responsive Design */
@media (max-width: 1099px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .nav-container {
        padding: 0 16px;
    }

    .logo-img {
        height: 34px;
    }

    .nav-main {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-cta > .btn.btn-primary {
        display: inline-flex;
        font-size: 0.88rem;
        padding: 0.6rem 0.95rem;
    }

    .how-it-works .steps-container {
        grid-template-columns: repeat(5, minmax(210px, 1fr));
        gap: 0.72rem;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.45rem;
        -webkit-overflow-scrolling: touch;
    }

    .how-it-works .step {
        min-height: 204px;
        scroll-snap-align: start;
    }
}

@media (max-width: 860px) {
    .theme-toggle {
        display: none;
    }

    .nav-cta > .btn.btn-primary {
        font-size: 0.82rem;
        padding: 0.55rem 0.82rem;
    }

    .language-option.is-active,
    .language-switcher.is-open .language-option,
    .language-switcher:hover .language-option,
    .language-switcher:focus-within .language-option {
        max-width: 2.9rem;
        padding: 0.28rem 0.42rem;
    }
}

@media (max-width: 768px) {
    .nav-cta {
        gap: 0.45rem;
    }

    .language-switcher {
        padding: 0.15rem;
    }

    .language-option.is-active,
    .language-switcher.is-open .language-option,
    .language-switcher:hover .language-option,
    .language-switcher:focus-within .language-option {
        max-width: 3rem;
        padding: 0.3rem 0.45rem;
        font-size: 0.68rem;
    }
    
    .section-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: var(--space-16);
    }

    .hero-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        text-align: center;
        gap: var(--space-24);
    }

    .hero-content,
    .hero-visual {
        grid-column: 1 / -1;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-green-row {
        justify-content: center;
    }

    .hero-green-lines {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }

    .hero-layer--orb-a {
        width: clamp(160px, 38vw, 260px);
        top: 6%;
        left: -11%;
    }

    .hero-layer--orb-b {
        width: clamp(180px, 42vw, 280px);
        top: 17%;
        right: -14%;
    }

    .hero-layer--wave {
        bottom: -2.5rem;
    }

    .hero-scroll-indicator {
        bottom: 0.65rem;
    }

    .hero-signal-blend {
        left: 0.72rem;
        right: 0.72rem;
        bottom: 0.72rem;
    }

    .chart-container.is-test-3d-chart #heroChart {
        transform: none;
        filter: none;
    }

    .chart-container.is-test-3d-chart .test-plotly-hero-chart {
        transform: none;
        filter: none;
    }

    .chart-container.is-test-3d-chart::before {
        opacity: 0.45;
    }

    .signal-blend-viz {
        min-height: 92px;
        gap: 0.45rem;
    }

    .signal-blend-divider .signal-blend-viz {
        min-height: 70px;
    }

    .section-processing-loader .signal-blend-viz {
        min-height: 82px;
    }
    
    .features-grid,
    .anti-herding-layout,
    .milestone-timeline,
    .supporters-logo-grid,
    .advisor-placeholder-grid,
    .steps-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .feature-card,
    .anti-herding-visual,
    .anti-herding-copy,
    .milestone-column,
    .supporter-logo-card,
    .advisor-placeholder-card,
    .step {
        grid-column: 1 / -1;
    }

    .anti-herding-timeline {
        min-height: 290px;
    }

    .anti-herding-window {
        width: min(100%, 330px);
    }

    .anti-herding-copy {
        gap: 0.66rem;
    }

    .fees-rewards-list {
        grid-template-columns: 1fr;
    }

    .value-atmosphere {
        grid-template-columns: 1fr;
        gap: 0.96rem;
    }

    .value-atmosphere-visual {
        order: -1;
        min-height: 250px;
    }

    .value-atmosphere-stage {
        width: clamp(210px, 62vw, 300px);
    }

    .signal-terminal {
        min-height: 560px;
        padding: 0.85rem;
    }

    .signal-terminal-wave {
        left: 0.72rem;
        right: 0.72rem;
        height: 64px;
        gap: 0.2rem;
    }

    .signal-terminal-wave--upper {
        top: 8%;
    }

    .signal-terminal-wave--lower {
        bottom: 21%;
    }

    .signal-terminal-center {
        width: 128px;
    }

    .signal-terminal-node--collective {
        top: 16%;
        left: 0.44rem;
    }

    .signal-terminal-node--analytics {
        top: 16%;
        right: 0.44rem;
    }

    .signal-terminal-node--risk {
        bottom: 26%;
    }

    .signal-terminal-node-trigger {
        padding: 0.44rem 0.52rem;
        font-size: 0.72rem;
    }

    .signal-terminal-node-title {
        max-width: 92px;
        white-space: normal;
        line-height: 1.2;
    }

    .signal-terminal-node-panel {
        width: min(240px, 84vw);
        font-size: 0.76rem;
    }

    .signal-terminal-link--collective {
        width: 31%;
        left: 20.5%;
    }

    .signal-terminal-link--analytics {
        width: 31%;
        right: 20.5%;
    }

    .signal-terminal-link--risk {
        width: 26%;
        top: 56%;
    }

    .signal-terminal-ticker {
        height: 34px;
        left: 0.62rem;
        right: 0.62rem;
        bottom: 0.56rem;
    }

    .signal-terminal-ticker-track span {
        font-size: 0.63rem;
    }

    .trust-strip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .how-it-works .steps-container {
        grid-template-columns: repeat(5, minmax(210px, 1fr));
        gap: 0.72rem;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.45rem;
        -webkit-overflow-scrolling: touch;
    }

    .how-it-works .step {
        grid-column: auto;
        min-height: 202px;
        scroll-snap-align: start;
    }

    .feature-card {
        min-height: 300px;
    }

    .feature-card-face {
        padding: var(--space-24);
    }

    .global-community-layout {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .global-globe-stage,
    .global-community-panel {
        grid-column: 1 / -1;
    }

    .global-globe-stage {
        min-height: 340px;
    }

    .milestone-progress-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .milestone-progress-head {
        flex-wrap: wrap;
    }

    .supporters-join-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .supporter-logo-image {
        width: min(200px, 100%);
    }

    .privacy-shell {
        padding: 4.5rem var(--space-16) var(--space-32);
    }

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

    .privacy-grid .privacy-card {
        grid-column: 1 / -1;
    }

    .why-now-grid {
        grid-template-columns: 1fr;
    }

    .why-now-live-metrics {
        grid-template-columns: 1fr;
    }

    .investor-contact-card {
        grid-column: 1 / -1;
    }

    .why-now-pulse {
        height: 56px;
    }

    .why-now-orb {
        opacity: 0.72;
    }

    .privacy-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-motion-toggle {
        margin-top: 0.9rem;
    }
    
    .floating-cards {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5.2rem 0 1.7rem;
    }

    .hero-layer--wave {
        display: none;
    }

    .hero-scroll-indicator {
        font-size: 0.66rem;
        letter-spacing: 0.06em;
        bottom: 0.4rem;
    }

    .signal-blend-viz {
        grid-template-columns: minmax(0, 1.34fr) minmax(0, 0.64fr) minmax(0, 0.34fr) minmax(0, 0.94fr);
        min-height: 82px;
        padding: 0.52rem 0.56rem;
    }

    .signal-blend-output-label {
        font-size: 0.5rem;
    }

    .signal-blend-output-value {
        min-width: 3.45rem;
        font-size: 0.54rem;
    }
    
    .container {
        padding: 0 var(--space-16);
    }
    
    .nav-container {
        padding: 0 var(--space-16);
    }

    .why-now-pulse {
        gap: 0.3rem;
        height: 48px;
    }

    .feature-card {
        min-height: 280px;
    }

    .global-globe-stage {
        min-height: 280px;
    }

    .value-atmosphere-visual {
        min-height: 214px;
    }

    .value-atmosphere-title {
        font-size: 0.98rem;
    }

    .value-atmosphere-copy {
        font-size: 0.87rem;
    }

    .signal-terminal {
        min-height: 610px;
    }

    .signal-terminal-node--collective {
        left: 0.32rem;
    }

    .signal-terminal-node--analytics {
        right: 0.32rem;
    }

    .signal-terminal-node-panel {
        width: min(220px, 85vw);
    }

    .signal-terminal-point {
        width: 0.3rem;
        height: 0.3rem;
    }
}

/* Scroll Animations */
.section-processing {
    position: relative;
}

.section-processing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    pointer-events: none;
    transform-origin: left center;
    transform: scaleX(0);
    opacity: 0;
    background: linear-gradient(90deg, rgb(0 196 140 / 0.9), rgb(var(--accent) / 0.98), rgb(100 181 255 / 0.92));
    box-shadow: 0 0 10px rgb(var(--accent) / 0.36);
    z-index: 3;
}

.section-processing.is-section-pending > :not(.section-processing-loader) {
    opacity: 0;
    pointer-events: none;
}

.section-processing.is-line-running::before {
    animation: sectionDataLineLoad 400ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.section-processing.is-content-visible > :not(.section-processing-loader) {
    animation: sectionContentOnlineFade 360ms ease-out forwards;
}

.section-processing.is-section-pending > .section-processing-loader,
.section-processing.is-line-running > .section-processing-loader {
    opacity: 1;
}

.section-processing.is-content-visible > .section-processing-loader,
.section-processing.is-line-complete > .section-processing-loader {
    opacity: 0;
}

.section-processing.fade-in,
.section-processing.fade-up,
.section-processing.slide-right,
.section-processing.slide-left {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

@keyframes sectionDataLineLoad {
    0% {
        transform: scaleX(0);
        opacity: 0.92;
    }

    100% {
        transform: scaleX(1);
        opacity: 0.58;
    }
}

@keyframes sectionContentOnlineFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@supports not (animation-timeline: view()) {
    .fade-in,
    .fade-up,
    .slide-right,
    .slide-left {
        opacity: 0;
        transition-property: opacity, transform;
        transition-duration: var(--scroll-reveal-duration);
        transition-timing-function: var(--scroll-reveal-ease);
        will-change: opacity, transform;
    }

    .fade-in,
    .fade-up {
        transform: translate3d(0, 18px, 0);
    }

    .slide-right {
        transform: translate3d(-18px, 0, 0);
    }

    .slide-left {
        transform: translate3d(18px, 0, 0);
    }

    .fade-in.visible,
    .fade-up.visible,
    .slide-right.visible,
    .slide-left.visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .features-grid .feature-card.fade-in,
    .features-grid .feature-card.fade-up,
    .features-grid .feature-card.slide-right,
    .features-grid .feature-card.slide-left {
        transform: translate3d(-26px, 0, 0);
    }

    .features-grid .feature-card {
        transition-delay: 0ms;
    }

    .features-grid .feature-card:nth-child(1) {
        transition-delay: 0ms;
    }

    .features-grid .feature-card:nth-child(2) {
        transition-delay: 130ms;
    }

    .features-grid .feature-card:nth-child(3) {
        transition-delay: 260ms;
    }

    .features-grid .feature-card.visible {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes signalOnlineReveal {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
    }
}

@keyframes signalOnlineFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes featureCardSweepIn {
    from {
        opacity: 0;
        transform: translate3d(-26px, 0, 0);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
    }
}

@supports (animation-timeline: view()) {
    :where(#mainWebsite > section:not(#home), .privacy-shell > header, .privacy-shell > section) {
        view-timeline-name: --section;
        view-timeline-axis: block;
        opacity: 0;
        transform: translate3d(0, 18px, 0);
        filter: blur(10px);
        animation-name: signalOnlineReveal;
        animation-duration: 1ms;
        animation-fill-mode: both;
        animation-timing-function: linear;
        animation-timeline: view(block);
        animation-range: entry 0% cover 35%;
        will-change: opacity, transform, filter;
    }

    .section-processing {
        opacity: 1;
        transform: none;
        filter: none;
        animation: none;
        view-timeline-name: none;
    }

    :where(
        .features-grid,
        .steps-container,
        .supporters-logo-grid,
        .advisor-placeholder-grid,
        .privacy-grid,
        .why-now-grid,
        .why-now-live-metrics,
        .investor-use-grid,
        .investor-live-grid,
        .milestone-timeline,
        .milestone-progress-list,
        .build-log-list
    ) > * {
        opacity: 0;
        transform: translate3d(0, 14px, 0);
        filter: blur(7px);
        animation-name: signalOnlineReveal;
        animation-duration: 1ms;
        animation-fill-mode: both;
        animation-timing-function: linear;
        animation-timeline: --section;
        animation-range: entry 0% cover 35%;
        will-change: opacity, transform, filter;
    }

    :where(
        .features-grid,
        .steps-container,
        .supporters-logo-grid,
        .advisor-placeholder-grid,
        .privacy-grid,
        .why-now-grid,
        .why-now-live-metrics,
        .investor-use-grid,
        .investor-live-grid,
        .milestone-timeline,
        .milestone-progress-list,
        .build-log-list
    ) > :nth-child(1) { animation-delay: 20ms; }
    :where(
        .features-grid,
        .steps-container,
        .supporters-logo-grid,
        .advisor-placeholder-grid,
        .privacy-grid,
        .why-now-grid,
        .why-now-live-metrics,
        .investor-use-grid,
        .investor-live-grid,
        .milestone-timeline,
        .milestone-progress-list,
        .build-log-list
    ) > :nth-child(2) { animation-delay: 60ms; }
    :where(
        .features-grid,
        .steps-container,
        .supporters-logo-grid,
        .advisor-placeholder-grid,
        .privacy-grid,
        .why-now-grid,
        .why-now-live-metrics,
        .investor-use-grid,
        .investor-live-grid,
        .milestone-timeline,
        .milestone-progress-list,
        .build-log-list
    ) > :nth-child(3) { animation-delay: 100ms; }
    :where(
        .features-grid,
        .steps-container,
        .supporters-logo-grid,
        .advisor-placeholder-grid,
        .privacy-grid,
        .why-now-grid,
        .why-now-live-metrics,
        .investor-use-grid,
        .investor-live-grid,
        .milestone-timeline,
        .milestone-progress-list,
        .build-log-list
    ) > :nth-child(4) { animation-delay: 140ms; }
    :where(
        .features-grid,
        .steps-container,
        .supporters-logo-grid,
        .advisor-placeholder-grid,
        .privacy-grid,
        .why-now-grid,
        .why-now-live-metrics,
        .investor-use-grid,
        .investor-live-grid,
        .milestone-timeline,
        .milestone-progress-list,
        .build-log-list
    ) > :nth-child(5) { animation-delay: 180ms; }
    :where(
        .features-grid,
        .steps-container,
        .supporters-logo-grid,
        .advisor-placeholder-grid,
        .privacy-grid,
        .why-now-grid,
        .why-now-live-metrics,
        .investor-use-grid,
        .investor-live-grid,
        .milestone-timeline,
        .milestone-progress-list,
        .build-log-list
    ) > :nth-child(n + 6) { animation-delay: 220ms; }

    .features-grid > .feature-card {
        animation-name: featureCardSweepIn;
        animation-delay: 0ms;
    }

    .features-grid > .feature-card:nth-child(1) {
        animation-range: entry 0% cover 28%;
    }

    .features-grid > .feature-card:nth-child(2) {
        animation-range: entry 10% cover 38%;
    }

    .features-grid > .feature-card:nth-child(3) {
        animation-range: entry 20% cover 48%;
    }

    @media (prefers-reduced-motion: reduce) {
        :where(#mainWebsite > section:not(#home), .privacy-shell > header, .privacy-shell > section),
        :where(
            .features-grid,
            .steps-container,
            .supporters-logo-grid,
            .advisor-placeholder-grid,
            .privacy-grid,
            .why-now-grid,
            .why-now-live-metrics,
            .investor-use-grid,
            .investor-live-grid,
            .milestone-timeline,
            .milestone-progress-list,
            .build-log-list
        ) > * {
            transform: none;
            filter: none;
            animation-name: signalOnlineFade;
        }

        .features-grid > .feature-card {
            animation-name: signalOnlineFade;
            animation-range: entry 0% cover 35%;
        }
    }

    html[data-animations="off"] :where(#mainWebsite > section:not(#home), .privacy-shell > header, .privacy-shell > section),
    html[data-animations="off"] :where(
        .features-grid,
        .steps-container,
        .supporters-logo-grid,
        .advisor-placeholder-grid,
        .privacy-grid,
        .why-now-grid,
        .why-now-live-metrics,
        .investor-use-grid,
        .investor-live-grid,
        .milestone-timeline,
        .milestone-progress-list,
        .build-log-list
    ) > * {
        transform: none;
        filter: none;
        animation-name: signalOnlineFade;
    }

    html[data-animations="off"] .features-grid > .feature-card {
        animation-name: signalOnlineFade;
        animation-range: entry 0% cover 35%;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-timeline-name: --page-scroll;
    scroll-timeline-axis: block;
}

section[id] {
    scroll-margin-top: var(--anchor-scroll-offset);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 1205;
    pointer-events: none;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, rgb(0 198 140 / 0.98), rgb(var(--accent) / 1), rgb(71 185 255 / 0.98));
    box-shadow: 0 0 12px rgb(var(--accent) / 0.42);
    will-change: transform;
}

@keyframes pageScrollProgressFill {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@supports (animation-timeline: --page-scroll) {
    .scroll-progress {
        animation-name: pageScrollProgressFill;
        animation-duration: 1ms;
        animation-timing-function: linear;
        animation-fill-mode: both;
        animation-timeline: --page-scroll;
    }
}

@supports not (animation-timeline: --page-scroll) {
    .scroll-progress {
        transform: scaleX(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-progress {
        animation: none !important;
        transform: scaleX(1) !important;
    }
}

html[data-animations="off"] .scroll-progress {
    animation: none !important;
    transform: scaleX(1) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}
