/* ===================================
   FLOWSCOPE LANDING PAGE
   Premium Fintech 2025 Design System
   =================================== */

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

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero::before {
        animation: none !important;
    }
    
    .btn-telegram svg {
        animation: none !important;
    }
    
    .hero-content h1,
    .hero-content .hero-subtitle-h2,
    .hero-content .hero-subtitle,
    .hero-content .hero-cta {
        animation: simpleFadeIn 300ms ease-out forwards !important;
    }
    
    @keyframes simpleFadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
}

:root {
    /* Colors */
    --bg-primary: #0a0e1a;
    --bg-secondary: #0f1420;
    --bg-card: rgba(20, 25, 40, 0.6);
    --bg-card-hover: rgba(25, 32, 50, 0.8);
    
    --accent-blue: #00d4ff;
    --accent-cyan: #4dd4ff;
    --accent-green: #00ff88;
    --accent-red: #ff4d6a;
    
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #64748b;
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --glow-blue: rgba(0, 212, 255, 0.15);
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
    --font-mono: 'SF Mono', 'Monaco', 'Cascadia Code', monospace;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #94a3b8;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.sessions-label {
    position: absolute;
    bottom: 3px;
    right: -62px;
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fbbf24 0%, #10b981 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    opacity: 0.7;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.btn-secondary-nav {
    padding: 8px 20px;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-secondary-nav:hover {
    border-color: var(--accent-blue);
    background: rgba(0, 212, 255, 0.05);
}

.btn-secondary-nav:last-child {
    margin-left: 8px;
}

/* Hero Section */
.hero {
    padding: 160px 0 120px;
    position: relative;
    --scroll-offset: 0px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--glow-blue) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    will-change: transform, opacity;
    /* animation: ambientDrift 12s ease-in-out infinite alternate; */
}

@keyframes ambientDrift {
    0% {
        transform: translate(-50%, 0) scale(1);
        opacity: 0.08;
    }
    50% {
        opacity: 0.14;
    }
    100% {
        transform: translate(-48%, -2%) scale(1.02);
        opacity: 0.08;
    }
}

/* .hero::after {
    content: '';
    position: absolute;
    top: 36%;
    right: 5%;
    transform: translateY(calc(-50% + var(--scroll-offset, 0px))) rotate(-8deg);
    width: 500px;
    height: 600px;
    background-image: url('/Знімок\ екрана\ 2026-01-16\ о\ 21.17.12.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    transition: transform 0.3s ease-out;
} */

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-bottom: 80px;
}

/* Hero reveal animations - staggered entrance */
.hero-content h1,
.hero-content .hero-subtitle-h2,
.hero-content .hero-subtitle,
.hero-content .hero-cta {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    animation: heroReveal 400ms ease-out forwards;
}

.hero-content h1 {
    animation-delay: 100ms;
}

.hero-content .hero-subtitle-h2 {
    animation-delay: 190ms;
}

.hero-content .hero-subtitle {
    animation-delay: 280ms;
}

.hero-content .hero-cta {
    animation-delay: 460ms;
    animation-duration: 280ms;
    transform: translate3d(0, 0, 0) scale(0.98);
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

h1 {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #a0aec0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    will-change: transform, opacity;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 36px;
    background: var(--accent-blue);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 200ms ease-out, box-shadow 200ms ease-out;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    white-space: nowrap;
    will-change: transform;
}

.btn-primary:hover {
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 4px 40px rgba(0, 212, 255, 0.5);
}

.btn-primary:active {
    transform: translate3d(0, 0, 0);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    transition-duration: 100ms;
}

.btn-secondary {
    padding: 16px 36px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid var(--border-subtle);
    transition: transform 200ms ease-out, border-color 200ms, background 200ms, box-shadow 200ms;
    white-space: nowrap;
    will-change: transform;
}

.btn-secondary:hover {
    border-color: var(--accent-blue);
    background: rgba(0, 212, 255, 0.05);
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 2px 20px rgba(0, 212, 255, 0.15);
}

.btn-secondary:active {
    transform: translate3d(0, 0, 0);
    box-shadow: none;
    transition-duration: 100ms;
}

.btn-telegram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #0088cc 0%, #00a0e9 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 200ms ease-out, box-shadow 200ms ease-out, background 200ms;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.3);
    white-space: nowrap;
    will-change: transform;
}

.btn-telegram:hover {
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 6px 30px rgba(0, 136, 204, 0.5);
    background: linear-gradient(135deg, #0099dd 0%, #00b0fa 100%);
}

.btn-telegram:active {
    transform: translate3d(0, 0, 0);
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.3);
    transition-duration: 100ms;
}

.btn-telegram svg {
    flex-shrink: 0;
    animation: telegramPulse 8s ease-in-out infinite;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 1;
    perspective: 1000px;
    will-change: transform;
    transition: transform 0.3s ease-out;
}

.chart-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    transform-style: preserve-3d;
}

.chart-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s;
}

.chart-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-4px);
}

.chart-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.chart-value {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--text-primary);
}

.chart-value.positive {
    color: var(--accent-green);
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--bg-secondary);
}

h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 64px;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    color: var(--accent-blue);
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Logic Section */
.logic {
    padding: 120px 0;
}

.logic-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.logic-visual {
    padding-top: 39%;
    /* position: sticky; */
    /* top: 120px; */
    align-self: start;
}

.logic-intro {
    font-size: 20px;
    color: var(--accent-cyan);
    margin-bottom: 48px;
    font-weight: 500;
}

.logic-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.logic-step {
    display: flex;
    gap: 24px;
}

.step-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-blue);
    font-family: var(--font-mono);
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.data-flow {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.flow-node {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 20px 32px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
}

.flow-node-input {
    border-left: 3px solid var(--accent-cyan);
    background: linear-gradient(90deg, rgba(77, 212, 255, 0.08) 0%, var(--bg-card) 100%);
}

.flow-node-process {
    border-left: 3px solid var(--accent-blue);
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.08) 0%, var(--bg-card) 100%);
}

.flow-node-output {
    border-left: 3px solid var(--accent-green);
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.08) 0%, var(--bg-card) 100%);
}

.flow-node:hover {
    transform: translateX(4px);
    border-color: rgba(0, 212, 255, 0.4);
}

.flow-arrow {
    font-size: 24px;
    color: var(--accent-blue);
}

/* Sample Section */
.sample {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.sample-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.sample-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-subtle);
}

.sample-pair {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--accent-blue);
}

.sample-date {
    font-size: 14px;
    color: var(--text-muted);
}

.sample-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sample-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sample-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sample-value {
    font-size: 15px;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bias-score {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-mono);
    margin-right: 12px;
}

.bias-score.positive {
    color: var(--accent-green);
}

.bias-text {
    color: var(--text-secondary);
}

.session-item {
    display: flex;
    gap: 8px;
}

.session-name {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 80px;
}

.confidence {
    font-weight: 600;
    color: var(--accent-blue);
    margin-right: 12px;
}

/* Differentiation Section */
.differentiation {
    padding: 120px 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-item {
    background: var(--bg-card);
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease;
}

.comparison-item-flowscope {
    border-left: 3px solid var(--accent-blue);
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.05) 0%, var(--bg-card) 100%);
}

.comparison-item-flowscope:hover {
    transform: translateX(4px);
    border-left-color: var(--accent-cyan);
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.08) 0%, var(--bg-card-hover) 100%);
}

.comparison-item-generic {
    opacity: 0.7;
}

.comparison-item-generic:hover {
    opacity: 0.85;
}

.comparison-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-item:nth-child(odd) .comparison-value {
    color: var(--accent-blue);
}

/* Trust Section */
.trust {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.trust-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.trust-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.btn-primary-large {
    display: inline-block;
    padding: 20px 48px;
    background: var(--accent-blue);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.2s;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.5);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 12px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 48px;
    }
    
    .chart-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .logic-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 36px;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .nav-container {
        padding: 16px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .nav-links {
        gap: 12px;
        font-size: 12px;
    }
    
    .nav-links a {
        font-size: 12px;
    }
    
    .btn-secondary-nav {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero::before {
        width: 400px;
        height: 400px;
    }
    
    .hero::after {
        display: none;
    }
    
    .hero-content {
        margin-bottom: 48px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-telegram {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .chart-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .chart-card {
        padding: 20px;
    }
    
    .chart-value {
        font-size: 20px;
    }
    
    .features,
    .logic,
    .sample,
    .differentiation,
    .trust,
    .final-cta {
        padding: 60px 0;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    .logic-intro {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .logic-steps {
        gap: 24px;
    }
    
    .step-content h4 {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .sample-card {
        border-radius: 12px;
    }
    
    .sample-header {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .sample-pair {
        font-size: 18px;
    }
    
    .sample-body {
        padding: 20px;
        gap: 20px;
    }
    
    .sample-value {
        font-size: 14px;
    }
    
    .bias-score {
        font-size: 20px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-item {
        padding: 20px;
    }
    
    .trust-item h3 {
        font-size: 18px;
    }
    
    .trust-item p {
        font-size: 14px;
    }
    
    .final-cta p {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .btn-primary-large {
        width: 100%;
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .footer {
        padding: 48px 0 32px;
    }
    
    .footer-content {
        gap: 40px;
        margin-bottom: 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .nav-container {
        padding: 12px;
    }
    
    .logo {
        font-size: 14px;
    }
    
    .nav-links {
        gap: 8px;
    }
    
    .nav-links a:not(.btn-secondary-nav) {
        display: none;
    }
    
    .btn-secondary-nav {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-telegram {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .chart-card {
        padding: 16px;
    }
    
    .chart-label {
        font-size: 10px;
    }
    
    .chart-value {
        font-size: 18px;
    }
    
    .features,
    .logic,
    .sample,
    .differentiation,
    .trust,
    .final-cta {
        padding: 40px 0;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }
    
    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .feature-card h3 {
        font-size: 16px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
    
    .logic-intro {
        font-size: 14px;
    }
    
    .step-number {
        font-size: 12px;
    }
    
    .step-content h4 {
        font-size: 14px;
    }
    
    .step-content p {
        font-size: 13px;
    }
    
    .flow-node {
        padding: 16px 20px;
        font-size: 12px;
    }
    
    .sample-header {
        padding: 16px;
    }
    
    .sample-pair {
        font-size: 16px;
    }
    
    .sample-date {
        font-size: 12px;
    }
    
    .sample-body {
        padding: 16px;
        gap: 16px;
    }
    
    .sample-label {
        font-size: 10px;
    }
    
    .sample-value {
        font-size: 13px;
    }
    
    .bias-score {
        font-size: 18px;
    }
    
    .session-name {
        min-width: 60px;
        font-size: 13px;
    }
    
    .comparison-item {
        padding: 16px;
    }
    
    .comparison-label {
        font-size: 10px;
    }
    
    .comparison-value {
        font-size: 14px;
    }
    
    .trust-item h3 {
        font-size: 16px;
    }
    
    .trust-item p {
        font-size: 13px;
    }
    
    .final-cta p {
        font-size: 14px;
    }
    
    .btn-primary-large {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .footer {
        padding: 40px 0 24px;
    }
    
    .footer-brand .logo {
        font-size: 16px;
    }
    
    .footer-brand p {
        font-size: 13px;
    }
    
    .footer-column h4 {
        font-size: 13px;
    }
    
    .footer-column a {
        font-size: 13px;
    }
    
    .footer-bottom p {
        font-size: 11px;
    }
}
