/* ProdSensor Landing Page - Modern Light Theme */
/* Clean, bright aesthetic with soft gradients */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Warm Yellow Cream theme colors */
    --color-bg: #fefbf3;
    --color-bg-secondary: #fcf7e8;
    --color-bg-tertiary: #f8f2dd;
    --color-surface: #fffef6;
    --color-surface-hover: #fdf9ec;
    --color-border: rgba(140, 110, 40, 0.12);
    --color-border-light: rgba(140, 110, 40, 0.07);

    /* Card colors for yellow cream theme */
    --color-card-bg: linear-gradient(145deg, #fffef6 0%, #fcf8ea 50%, #f8f2dd 100%);
    --color-card-surface: #fffef6;
    --color-card-border: rgba(140, 110, 40, 0.12);
    --color-card-border-hover: rgba(140, 110, 40, 0.2);
    --color-warm-accent: #3d3010;
    --color-warm-glow: rgba(140, 110, 40, 0.1);
    --color-cream: #fffef8;
    --color-ivory: #fcf8ed;

    /* Text colors */
    --color-text: #2d2416;
    --color-text-secondary: #5c4d3a;
    --color-text-muted: #9a8b78;

    /* Accent colors - lime green gradient */
    --color-primary: #65a30d;
    --color-primary-light: #84cc16;
    --color-primary-dark: #4d7c0f;
    --color-accent: #65a30d;
    --color-accent-glow: rgba(101, 163, 13, 0.25);

    /* Status colors */
    --color-blocker: #f43f5e;
    --color-blocker-bg: rgba(244, 63, 94, 0.15);
    --color-major: #f59e0b;
    --color-major-bg: rgba(245, 158, 11, 0.15);
    --color-success: #22c55e;

    /* Dimension colors */
    --color-scalability: #a78bfa;
    --color-security: #f43f5e;
    --color-reliability: #06b6d4;
    --color-performance: #fb923c;
    --color-observability: #34d399;
    --color-architecture: #818cf8;
    --color-testability: #2dd4bf;
    --color-maintainability: #c084fc;

    /* Typography */
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 5rem;
    --spacing-3xl: 8rem;

    /* Sizing */
    --max-width: 1200px;
    --nav-height: 72px;
}

/* Dark Theme */
[data-theme="dark"] {
    --color-bg: #0f1115;
    --color-bg-secondary: #161a1f;
    --color-bg-tertiary: #1c2127;
    --color-surface: #1a1e24;
    --color-surface-hover: #22272e;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-light: rgba(255, 255, 255, 0.05);

    /* Card colors for dark theme */
    --color-card-bg: linear-gradient(145deg, #1a1e24 0%, #161a1f 50%, #12151a 100%);
    --color-card-surface: #1a1e24;
    --color-card-border: rgba(255, 255, 255, 0.1);
    --color-card-border-hover: rgba(255, 255, 255, 0.2);
    --color-warm-accent: #e5d9c3;
    --color-warm-glow: rgba(229, 217, 195, 0.1);
    --color-cream: #1a1e24;
    --color-ivory: #161a1f;

    /* Text colors - high contrast for readability */
    --color-text: #ffffff;
    --color-text-secondary: #e8e6e1;
    --color-text-muted: #b0aba0;

    /* Slightly brighter accents for dark mode */
    --color-primary: #7cb518;
    --color-primary-light: #9adb22;
    --color-primary-dark: #5a9210;
    --color-accent: #7cb518;
    --color-accent-glow: rgba(124, 181, 24, 0.3);
}

html {
    scroll-behavior: smooth;
}

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

/* ============================================
   STYLE 4: LAYERED GLASS ORBS
   Apple-style large blurred spheres - elegant depth
   ============================================ */

/* Hero base styling */
.hero {
    position: relative;
    overflow: hidden;
}

/* Ambient background container */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background: var(--color-bg);
}

/* Glass Orb 1 - Golden yellow/chartreuse, top right */
.glass-orb-1 {
    position: fixed;
    top: -15%;
    right: -5%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
        rgba(200, 190, 80, 0.35) 0%,
        rgba(180, 170, 60, 0.22) 25%,
        rgba(160, 150, 50, 0.12) 50%,
        rgba(140, 130, 40, 0.06) 70%,
        transparent 85%);
    filter: blur(80px);
    animation: orbFloat1 25s ease-in-out infinite;
}

/* Glass Orb 2 - Warm apricot/peach, left center */
.glass-orb-2 {
    position: fixed;
    top: 30%;
    left: -12%;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%,
        rgba(240, 190, 130, 0.35) 0%,
        rgba(220, 170, 110, 0.22) 30%,
        rgba(200, 150, 90, 0.1) 55%,
        transparent 80%);
    filter: blur(90px);
    animation: orbFloat2 30s ease-in-out infinite;
}

/* Glass Orb 3 - Warm butter/gold, bottom */
.glass-orb-3 {
    position: fixed;
    bottom: -20%;
    left: 25%;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 30%,
        rgba(250, 220, 120, 0.4) 0%,
        rgba(240, 200, 90, 0.25) 30%,
        rgba(220, 180, 70, 0.12) 55%,
        transparent 75%);
    filter: blur(100px);
    animation: orbFloat3 35s ease-in-out infinite;
}

/* Glass Orb 4 - Soft sage green, top left */
.glass-orb-4 {
    position: fixed;
    top: 8%;
    left: 10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%,
        rgba(180, 200, 140, 0.38) 0%,
        rgba(160, 180, 120, 0.22) 35%,
        rgba(140, 160, 100, 0.1) 60%,
        transparent 80%);
    filter: blur(70px);
    animation: orbFloat4 20s ease-in-out infinite;
}

/* Glass Orb 5 - Warm coral/salmon, right */
.glass-orb-5 {
    position: fixed;
    top: 55%;
    right: 8%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%,
        rgba(245, 180, 160, 0.38) 0%,
        rgba(230, 160, 140, 0.22) 40%,
        transparent 75%);
    filter: blur(60px);
    animation: orbFloat5 22s ease-in-out infinite;
}

/* Orb floating animations */
@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-30px, 40px) scale(1.05); }
    50% { transform: translate(20px, 20px) scale(0.95); }
    75% { transform: translate(-10px, -30px) scale(1.02); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -30px) scale(1.08); }
    66% { transform: translate(20px, 40px) scale(0.95); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -20px) scale(1.03); }
    50% { transform: translate(-30px, -40px) scale(1.06); }
    75% { transform: translate(20px, 30px) scale(0.97); }
}

@keyframes orbFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 50px) scale(1.1); }
}

@keyframes orbFloat5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, -40px) scale(1.15); }
    66% { transform: translate(15px, 25px) scale(0.9); }
}

/* Dark Theme Orbs - Deep blues, teals, and purples */
[data-theme="dark"] .glass-orb-1 {
    background: radial-gradient(circle at 30% 30%,
        rgba(100, 180, 80, 0.25) 0%,
        rgba(80, 160, 60, 0.15) 25%,
        rgba(60, 140, 40, 0.08) 50%,
        transparent 75%);
}

[data-theme="dark"] .glass-orb-2 {
    background: radial-gradient(circle at 40% 40%,
        rgba(80, 140, 200, 0.25) 0%,
        rgba(60, 120, 180, 0.15) 30%,
        rgba(40, 100, 160, 0.06) 55%,
        transparent 80%);
}

[data-theme="dark"] .glass-orb-3 {
    background: radial-gradient(circle at 50% 30%,
        rgba(120, 80, 180, 0.3) 0%,
        rgba(100, 60, 160, 0.18) 30%,
        rgba(80, 40, 140, 0.08) 55%,
        transparent 75%);
}

[data-theme="dark"] .glass-orb-4 {
    background: radial-gradient(circle at 35% 35%,
        rgba(60, 180, 160, 0.28) 0%,
        rgba(40, 160, 140, 0.15) 35%,
        rgba(20, 140, 120, 0.06) 60%,
        transparent 80%);
}

[data-theme="dark"] .glass-orb-5 {
    background: radial-gradient(circle at 40% 40%,
        rgba(200, 100, 140, 0.25) 0%,
        rgba(180, 80, 120, 0.14) 40%,
        transparent 75%);
}

/* Dark Theme Navigation */
[data-theme="dark"] .nav {
    background: rgba(15, 17, 21, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .nav-logo {
    color: #ffffff;
}

[data-theme="dark"] .nav-links a {
    color: #ffffff;
    font-weight: 500;
}

[data-theme="dark"] .nav-links a:hover {
    color: #ffffff;
    opacity: 0.8;
}

[data-theme="dark"] .theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .theme-toggle svg {
    color: rgba(255, 255, 255, 0.9);
}

/* Dark Theme Hero Text */
[data-theme="dark"] .hero-content h1 {
    background: linear-gradient(135deg, #ffffff 0%, #e0ddd5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Dark Theme Section Headings */
[data-theme="dark"] section h2 {
    background: linear-gradient(135deg, #ffffff 0%, #e0ddd5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Dark Theme - Sample Report */
[data-theme="dark"] .sample-report-card {
    background: var(--color-card-surface);
    border-color: rgba(101, 163, 13, 0.3);
}

[data-theme="dark"] .sample-report-preview {
    border-bottom-color: var(--color-border);
}

[data-theme="dark"] .sample-report-icon {
    background: rgba(101, 163, 13, 0.2);
}

[data-theme="dark"] .sample-report-tech {
    background: var(--color-bg-tertiary);
    color: var(--color-text-secondary);
}

[data-theme="dark"] .sample-report-stat {
    background: var(--color-bg-tertiary);
}

[data-theme="dark"] .dim-badge.good {
    background: rgba(34, 197, 94, 0.2);
}

[data-theme="dark"] .sample-report-actions {
    background: var(--color-bg-tertiary);
}

/* Dark Theme - Comparison */
[data-theme="dark"] .comparison-table-wrapper {
    background: var(--color-card-surface);
    border-color: var(--color-border);
}

[data-theme="dark"] .comparison-table th {
    background: var(--color-bg-tertiary);
    color: var(--color-text);
}

[data-theme="dark"] .comparison-table th.highlight {
    background: rgba(101, 163, 13, 0.2);
}

[data-theme="dark"] .comparison-table td.highlight {
    background: rgba(101, 163, 13, 0.08);
}

[data-theme="dark"] .comparison-table tbody tr:hover {
    background: var(--color-bg-tertiary);
}

[data-theme="dark"] .comparison-table tbody tr:hover td.highlight {
    background: rgba(101, 163, 13, 0.15);
}

[data-theme="dark"] .summary-card {
    background: var(--color-card-surface);
    border-color: var(--color-border);
}

[data-theme="dark"] .summary-card:hover {
    border-color: var(--color-border-light);
}

/* Hide old elements */
.perspective-grid,
.grid-plane,
.horizon-glow,
.grid-fade-top,
.grid-accent-orb,
.spotlight,
.spotlight-ambient,
.spotlight-grid,
.mesh-blob-1,
.mesh-blob-2,
.mesh-blob-3,
.mesh-blob-4 {
    display: none !important;
}

/* Hide all old particle/helix elements */
.dna-helix-container,
.dna-helix,
.dna-helix-2,
.dna-helix-3,
.dna-particle,
.dna-connector,
.ambient-particles,
.ambient-particle,
.glow-orb,
.glow-orb-1,
.glow-orb-2,
.glow-orb-3,
.glow-orb-4,
.particles-layer,
.particles-far,
.particles-mid,
.particles-near {
    display: none !important;
}

/* Base gradient overlay on hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

/* Subtle noise texture overlay for premium feel */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.015;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Subtle vignette for depth - very light for bright theme */
.vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(ellipse 100% 80% at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.03) 100%);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(254, 251, 243, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    font-size: 1.25rem;
}

.nav-logo svg {
    filter: drop-shadow(0 0 10px var(--color-accent-glow));
}

.nav-links {
    display: flex;
    gap: var(--spacing-xl);
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
    padding: 0.5rem 0;
}

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

/* Active section indicator */
.nav-links a.active {
    color: var(--color-primary);
    font-weight: 500;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
    animation: activeIndicator 0.3s ease-out;
}

@keyframes activeIndicator {
    from {
        transform: scaleX(0);
        opacity: 0;
    }
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

.nav-cta {
    padding: 0.625rem 1.5rem;
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 4px 14px var(--color-accent-glow);
}

.nav-cta:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 6px 20px var(--color-accent-glow);
    transform: translateY(-1px);
}

/* Theme Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.theme-toggle:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-border-light);
    transform: translateY(-1px);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}

.theme-toggle:hover svg {
    color: var(--color-text);
}

/* Sun icon (shown in dark mode) */
.theme-toggle .icon-sun {
    display: none;
}

/* Moon icon (shown in light mode) */
.theme-toggle .icon-moon {
    display: block;
}

[data-theme="dark"] .theme-toggle .icon-sun {
    display: block;
}

[data-theme="dark"] .theme-toggle .icon-moon {
    display: none;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--nav-height) + var(--spacing-3xl));
    padding-bottom: var(--spacing-3xl);
    min-height: 100vh;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw + 1rem, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #2d2416 0%, #4a3c2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.35rem);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 520px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-cta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--spacing-md);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* Scroll reveal animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll-triggered reveal class */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation delays for grid items */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.19s; }
.stagger-4 { transition-delay: 0.26s; }
.stagger-5 { transition-delay: 0.33s; }
.stagger-6 { transition-delay: 0.4s; }
.stagger-7 { transition-delay: 0.47s; }
.stagger-8 { transition-delay: 0.54s; }

/* Premium card specific reveal animation */
.premium-card.reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-card.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 1.125rem 2.25rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow:
        0 4px 20px var(--color-accent-glow),
        inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 30px var(--color-accent-glow),
        inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 1.125rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--color-text);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.btn-secondary svg {
    color: var(--color-primary);
}

.btn-large {
    padding: 1.25rem 2.75rem;
    font-size: 1.2rem;
}

.hero-note {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Privacy Badge */
.privacy-badge {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(101, 163, 13, 0.08) 0%, rgba(132, 204, 22, 0.05) 100%);
    border: 1px solid rgba(101, 163, 13, 0.2);
    border-radius: 12px;
    margin-top: var(--spacing-md);
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    max-width: 480px;
}

.privacy-badge svg {
    flex-shrink: 0;
    color: var(--color-primary);
    filter: drop-shadow(0 0 6px rgba(101, 163, 13, 0.4));
}

.privacy-badge span {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .privacy-badge {
        justify-content: center;
        text-align: left;
        max-width: 100%;
    }
}

/* Hero Screenshot */
.hero-visual {
    position: relative;
    opacity: 0;
    transform: translateX(40px) perspective(1000px) rotateY(-5deg);
    animation: heroVisualReveal 1s ease-out 0.8s forwards;
}

@keyframes heroVisualReveal {
    to {
        opacity: 1;
        transform: translateX(0) perspective(1000px) rotateY(-5deg) rotateX(2deg);
    }
}

.hero-screenshot {
    background: linear-gradient(145deg, #fffef6 0%, #fcf7e8 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 24px;
    box-shadow:
        0 0 0 1px rgba(140, 110, 40, 0.08),
        0 30px 100px rgba(100, 80, 30, 0.1),
        0 0 60px rgba(101, 163, 13, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(140, 110, 40, 0.12);
}

.hero-screenshot:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    border-color: rgba(101, 163, 13, 0.3);
    box-shadow:
        0 0 0 1px rgba(101, 163, 13, 0.2),
        0 40px 120px rgba(100, 80, 30, 0.12),
        0 0 80px rgba(101, 163, 13, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.screenshot-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(140, 110, 40, 0.05);
    border-bottom: 1px solid rgba(140, 110, 40, 0.08);
}

.screenshot-dots {
    display: flex;
    gap: 6px;
}

.screenshot-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-surface-hover);
}

.screenshot-dots span:first-child { background: #f43f5e; }
.screenshot-dots span:nth-child(2) { background: #f59e0b; }
.screenshot-dots span:last-child { background: #22c55e; }

.screenshot-title {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    flex: 1;
    text-align: center;
}

.screenshot-content {
    padding: var(--spacing-lg);
    background: #fcf8ea;
}

.mock-verdict {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.03em;
}

.mock-verdict.not-ready {
    background: var(--color-blocker-bg);
    color: var(--color-blocker);
    box-shadow: 0 0 20px rgba(244, 63, 94, 0.2);
}

.mock-verdict.ready {
    background: #65a30d;
    color: #ffffff;
    border: 2px solid #4d7c0f;
    box-shadow: 0 0 24px rgba(101, 163, 13, 0.5), 0 2px 8px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.mock-stats-strip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #4a3c20;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: var(--spacing-md);
    padding: 0.5rem 0.75rem;
    background: rgba(101, 163, 13, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(101, 163, 13, 0.2);
    flex-wrap: wrap;
    justify-content: center;
}

.mock-stats-sep {
    opacity: 0.3;
}

.mock-capacity {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
    margin-bottom: var(--spacing-md);
}

.mock-capacity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.875rem 0.5rem;
    background: #fffef6;
    border-radius: 12px;
    border: 1px solid rgba(101, 163, 13, 0.25);
    transition: all 0.3s;
}

.mock-capacity-card:hover {
    border-color: rgba(101, 163, 13, 0.25);
    box-shadow: 0 4px 16px rgba(100, 80, 30, 0.08);
}

.mock-capacity-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #3d6b06;
    line-height: 1.2;
}

.mock-capacity-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #4a3c20;
    margin-top: 0.25rem;
}

.mock-ai-box {
    padding: 0.875rem;
    background: rgba(101, 163, 13, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(101, 163, 13, 0.2);
}

.mock-ai-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: #65a30d;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.mock-ai-text {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #2d2410;
    font-weight: 500;
    margin: 0;
}

/* Dark Theme Hero Screenshot */
[data-theme="dark"] .hero-screenshot {
    background: linear-gradient(145deg, var(--color-surface) 0%, var(--color-bg-secondary) 100%);
    border-color: var(--color-border);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 30px 100px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(132, 204, 22, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .hero-screenshot:hover {
    border-color: rgba(132, 204, 22, 0.3);
    box-shadow:
        0 0 0 1px rgba(132, 204, 22, 0.2),
        0 40px 120px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(132, 204, 22, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .screenshot-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .screenshot-content {
    background: var(--color-bg-secondary);
}

[data-theme="dark"] .mock-stats-strip {
    color: var(--color-text-muted);
    background: rgba(132, 204, 22, 0.1);
    border-color: rgba(132, 204, 22, 0.2);
}

[data-theme="dark"] .mock-capacity-card {
    background: var(--color-surface);
    border-color: rgba(132, 204, 22, 0.2);
}

[data-theme="dark"] .mock-capacity-value {
    color: var(--color-primary-light);
}

[data-theme="dark"] .mock-capacity-label {
    color: var(--color-text-muted);
}

[data-theme="dark"] .mock-ai-box {
    background: rgba(132, 204, 22, 0.08);
    border-color: rgba(132, 204, 22, 0.15);
}

[data-theme="dark"] .mock-ai-text {
    color: var(--color-text-secondary);
}

/* Trusted By Strip */
.trusted-by-strip {
    padding: var(--spacing-lg) 0;
    background: var(--color-bg);
}

.trusted-by-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.trusted-by-label {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    font-weight: 500;
}

.trusted-by-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.logo-placeholder {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-placeholder:hover {
    opacity: 1;
}

/* Tech Stack Logos */
.tech-stack-logos {
    gap: var(--spacing-2xl);
}

.tech-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.tech-logo svg {
    width: 36px;
    height: 36px;
}

.tech-logo span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .trusted-by-logos {
        gap: var(--spacing-md);
    }

    .logo-placeholder svg {
        width: 80px;
    }

    .tech-stack-logos {
        gap: var(--spacing-lg);
    }

    .tech-logo svg {
        width: 28px;
        height: 28px;
    }

    .tech-logo span {
        font-size: 0.7rem;
    }
}

/* Value Strip */
.value-strip {
    background: var(--color-bg-secondary);
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.value-strip-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-2xl);
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-number {
    font-family: var(--font-display);
    font-size: 3rem;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.value-unit {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
}

.value-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: var(--spacing-xs);
}

.value-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--color-border-light), transparent);
}

/* Pain Point Questions Section */
.pain-questions {
    padding: var(--spacing-3xl) 0;
    position: relative;
    background: var(--color-bg);
}

.pain-questions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(101, 163, 13, 0.08), transparent);
    pointer-events: none;
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.question-item {
    padding: var(--spacing-xl);
    background: linear-gradient(145deg, rgba(255, 254, 246, 0.9) 0%, rgba(252, 248, 234, 0.9) 100%);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    text-align: center;
}

.question-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(100, 80, 30, 0.12);
}

.question-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--spacing-md);
}

.question-item h3 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.6rem);
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    font-weight: 600;
}

.question-item p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Dark theme for pain questions */
[data-theme="dark"] .question-item {
    background: linear-gradient(145deg, rgba(26, 30, 36, 0.95) 0%, rgba(22, 26, 31, 0.95) 100%);
    border-color: var(--color-border);
}

[data-theme="dark"] .question-item:hover {
    border-color: var(--color-primary);
}

[data-theme="dark"] .question-item h3 {
    background: linear-gradient(135deg, #ffffff 0%, #e0ddd5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .questions-grid {
        grid-template-columns: 1fr;
    }

    .question-item {
        padding: var(--spacing-lg);
    }

    .question-icon {
        font-size: 2rem;
    }
}

/* Section Styles */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 3vw + 0.75rem, 3.25rem);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #2d2416 0%, #4a3c2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: clamp(1rem, 1.2vw + 0.5rem, 1.2rem);
    margin-bottom: var(--spacing-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(132, 204, 22, 0.08), transparent);
    pointer-events: none;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: var(--spacing-xl);
    background: #fffef6;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(140, 110, 40, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 10px 40px rgba(100, 80, 30, 0.06),
        0 0 0 1px rgba(140, 110, 40, 0.03) inset;
    color: #3d3010;
}

.step:hover {
    border-color: rgba(101, 163, 13, 0.4);
    background: linear-gradient(145deg, rgba(101, 163, 13, 0.05) 0%, #fffef6 100%);
    box-shadow:
        0 20px 60px rgba(100, 80, 30, 0.1),
        0 0 40px rgba(101, 163, 13, 0.08),
        0 0 0 1px rgba(101, 163, 13, 0.15) inset;
    transform: translateY(-8px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--color-bg);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 0 20px var(--color-accent-glow);
}

.step-icon {
    color: var(--color-primary-light);
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 0 12px rgba(132, 204, 22, 0.6));
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: #2d2416;
    font-weight: 600;
}

.step p {
    color: #5c4d3a;
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-arrow {
    color: var(--color-primary);
    padding-top: 100px;
    opacity: 0.5;
}

/* Dark Theme Steps */
[data-theme="dark"] .step {
    background: var(--color-surface);
    border-color: var(--color-border);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    color: var(--color-text);
}

[data-theme="dark"] .step:hover {
    border-color: rgba(132, 204, 22, 0.3);
    background: linear-gradient(145deg, rgba(132, 204, 22, 0.05) 0%, var(--color-surface) 100%);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(132, 204, 22, 0.08),
        0 0 0 1px rgba(132, 204, 22, 0.1) inset;
}

[data-theme="dark"] .step h3 {
    color: var(--color-text);
}

[data-theme="dark"] .step p {
    color: var(--color-text-secondary);
}

/* Dark Theme Dimension Cards */
[data-theme="dark"] .dimension-card {
    background: var(--color-surface);
    border-color: var(--color-border);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

[data-theme="dark"] .dimension-card:hover {
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.35),
        0 0 40px rgba(132, 204, 22, 0.1);
}

[data-theme="dark"] .dimension-card h3 {
    color: var(--color-text);
}

[data-theme="dark"] .dimension-card p {
    color: var(--color-text-secondary);
}

[data-theme="dark"] .dimension-checks li {
    color: var(--color-text-muted);
}

/* Dimensions */
.dimensions {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-secondary);
    position: relative;
}

.dimensions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(139, 92, 246, 0.05), transparent),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(132, 204, 22, 0.05), transparent);
    pointer-events: none;
}

.dimensions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.dimension-card {
    background: #fffef6;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: var(--spacing-lg);
    border-radius: 20px;
    border: 1px solid rgba(140, 110, 40, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 32px rgba(100, 80, 30, 0.06),
        0 0 0 1px rgba(140, 110, 40, 0.02) inset;
}

.dimension-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 24px 64px rgba(100, 80, 30, 0.1),
        0 0 0 1px rgba(140, 110, 40, 0.05) inset;
}

/* Individual dimension card hover colors */
.dimension-card:nth-child(1):hover { border-color: var(--color-scalability); box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 40px rgba(167, 139, 250, 0.2); }
.dimension-card:nth-child(2):hover { border-color: var(--color-security); box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 40px rgba(244, 63, 94, 0.2); }
.dimension-card:nth-child(3):hover { border-color: var(--color-reliability); box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 40px rgba(6, 182, 212, 0.2); }
.dimension-card:nth-child(4):hover { border-color: var(--color-performance); box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 40px rgba(251, 146, 60, 0.2); }
.dimension-card:nth-child(5):hover { border-color: var(--color-observability); box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 40px rgba(52, 211, 153, 0.2); }
.dimension-card:nth-child(6):hover { border-color: var(--color-architecture); box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 40px rgba(129, 140, 248, 0.2); }
.dimension-card:nth-child(7):hover { border-color: var(--color-testability); box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 40px rgba(45, 212, 191, 0.2); }
.dimension-card:nth-child(8):hover { border-color: var(--color-maintainability); box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 40px rgba(192, 132, 252, 0.2); }

.dimension-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all 0.3s;
}

.dimension-card:hover .dimension-icon {
    transform: scale(1.1);
}

.dimension-icon.scalability { background: rgba(167, 139, 250, 0.2); color: var(--color-scalability); box-shadow: 0 0 20px rgba(167, 139, 250, 0.3); }
.dimension-icon.security { background: rgba(244, 63, 94, 0.2); color: var(--color-security); box-shadow: 0 0 20px rgba(244, 63, 94, 0.3); }
.dimension-icon.reliability { background: rgba(6, 182, 212, 0.2); color: var(--color-reliability); box-shadow: 0 0 20px rgba(6, 182, 212, 0.3); }
.dimension-icon.performance { background: rgba(251, 146, 60, 0.2); color: var(--color-performance); box-shadow: 0 0 20px rgba(251, 146, 60, 0.3); }
.dimension-icon.observability { background: rgba(52, 211, 153, 0.2); color: var(--color-observability); box-shadow: 0 0 20px rgba(52, 211, 153, 0.3); }
.dimension-icon.architecture { background: rgba(129, 140, 248, 0.2); color: var(--color-architecture); box-shadow: 0 0 20px rgba(129, 140, 248, 0.3); }
.dimension-icon.testability { background: rgba(45, 212, 191, 0.2); color: var(--color-testability); box-shadow: 0 0 20px rgba(45, 212, 191, 0.3); }
.dimension-icon.maintainability { background: rgba(192, 132, 252, 0.2); color: var(--color-maintainability); box-shadow: 0 0 20px rgba(192, 132, 252, 0.3); }

.dimension-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    color: #2d2416;
    font-weight: 600;
}

.dimension-card p {
    font-size: 0.9rem;
    color: #5c4d3a;
    line-height: 1.6;
}

/* Dimension Checks - What We Check */
.dimension-checks {
    list-style: none;
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--color-border-light);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dimension-card:hover .dimension-checks {
    opacity: 1;
    max-height: 150px;
}

.dimension-checks li {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dimension-checks li::before {
    content: '→';
    color: var(--color-primary);
    font-weight: 600;
}

/* Collapsible Dimensions */
.dimension-hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.dimensions-grid.expanded .dimension-hidden {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: dimensionReveal 0.5s ease-out forwards;
}

@keyframes dimensionReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dimensions-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin: var(--spacing-xl) auto 0;
    padding: 1rem 2rem;
    background: linear-gradient(145deg, rgba(255, 254, 246, 0.95) 0%, rgba(252, 248, 234, 0.9) 100%);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    color: var(--color-text-secondary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 2px 12px rgba(100, 80, 30, 0.06);
    position: relative;
    overflow: hidden;
}

.dimensions-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.dimensions-toggle:hover::before {
    width: 300px;
    height: 300px;
}

.dimensions-toggle:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(101, 163, 13, 0.15);
    transform: translateY(-2px);
}

.dimensions-toggle .toggle-text {
    position: relative;
    z-index: 1;
}

.dimensions-toggle .toggle-icon {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    z-index: 1;
}

.dimensions-toggle.expanded .toggle-icon {
    transform: rotate(180deg);
}

[data-theme="dark"] .dimensions-toggle {
    background: linear-gradient(145deg, rgba(26, 30, 36, 0.9) 0%, rgba(22, 26, 31, 0.85) 100%);
    border-color: var(--color-border);
    color: var(--color-text-secondary);
}

[data-theme="dark"] .dimensions-toggle:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: linear-gradient(145deg, rgba(26, 30, 36, 0.95) 0%, rgba(22, 26, 31, 0.9) 100%);
}

/* Technical Analysis Depth Section */
.technical-depth {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.technical-depth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 50% 40% at 30% 50%, rgba(251, 146, 60, 0.06), transparent),
        radial-gradient(ellipse 50% 40% at 70% 50%, rgba(6, 182, 212, 0.05), transparent);
    pointer-events: none;
}

.detection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.detection-card {
    background: #fffef6;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: var(--spacing-lg);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.detection-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 20px 50px rgba(100, 80, 30, 0.1);
    transform: translateY(-4px);
}

.detection-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.detection-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.detection-icon.time {
    background: rgba(244, 63, 94, 0.15);
    color: #f43f5e;
}

.detection-icon.data {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.detection-icon.memory {
    background: rgba(251, 146, 60, 0.15);
    color: #fb923c;
}

.detection-icon.query {
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
}

.detection-icon.incident {
    background: rgba(244, 63, 94, 0.15);
    color: #f43f5e;
    font-size: 1.25rem;
}

.detection-header h3 {
    font-size: 1.15rem;
    color: var(--color-text);
    font-weight: 600;
    margin: 0;
}

.detection-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.detection-examples {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.detection-example {
    padding: var(--spacing-sm);
    border-radius: 10px;
    position: relative;
}

.detection-example.bad {
    background: rgba(244, 63, 94, 0.08);
    border: 1px solid rgba(244, 63, 94, 0.2);
}

.detection-example.good {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.example-label {
    position: absolute;
    top: -8px;
    left: 12px;
    background: var(--color-bg);
    padding: 0 6px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detection-example.bad .example-label {
    color: #f43f5e;
}

.detection-example.good .example-label {
    color: #22c55e;
}

.detection-example code {
    display: block;
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    font-family: 'SF Mono', Monaco, 'Consolas', monospace;
    white-space: pre-wrap;
}

.detection-impact {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(101, 163, 13, 0.1);
    border-radius: 6px;
    border-left: 3px solid var(--color-primary);
}

.detection-impact strong {
    color: var(--color-primary-dark);
}

/* Dark theme for technical depth */
[data-theme="dark"] .detection-card {
    background: var(--color-card-surface);
    border-color: var(--color-border);
}

[data-theme="dark"] .detection-card:hover {
    border-color: var(--color-primary);
}

[data-theme="dark"] .example-label {
    background: var(--color-bg);
}

[data-theme="dark"] .detection-example code {
    color: var(--color-text-secondary);
}

[data-theme="dark"] .detection-impact {
    background: rgba(101, 163, 13, 0.15);
}

@media (max-width: 768px) {
    .detection-grid {
        grid-template-columns: 1fr;
    }
}

/* Sample Finding */
.sample-finding {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.sample-finding::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(244, 63, 94, 0.05), transparent);
    pointer-events: none;
}

.finding-showcase {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.finding-card {
    background: #fffef6;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: var(--spacing-xl);
    box-shadow:
        0 25px 60px rgba(100, 80, 30, 0.08),
        0 0 40px rgba(244, 63, 94, 0.05),
        0 0 0 1px rgba(140, 110, 40, 0.03) inset;
    border-left: 4px solid var(--color-blocker);
    border: 1px solid rgba(244, 63, 94, 0.2);
}

.finding-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.severity-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.severity-badge.blocker {
    background: var(--color-blocker-bg);
    color: var(--color-blocker);
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.2);
}

.finding-id {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-family: monospace;
}

.finding-title {
    font-size: 1.35rem;
    margin-bottom: var(--spacing-lg);
    color: #2d2416;
    font-weight: 600;
}

.finding-section {
    margin-bottom: var(--spacing-lg);
}

.finding-section:last-child {
    margin-bottom: 0;
}

.finding-section h4 {
    font-size: 0.8rem;
    color: var(--color-blocker);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.finding-section code {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(244, 63, 94, 0.15);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #fb7185;
    border: 1px solid rgba(244, 63, 94, 0.25);
}

.finding-section p {
    color: #5c4d3a;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Sample Report Section */
.sample-report {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-secondary);
    position: relative;
}

.sample-report::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(101, 163, 13, 0.06), transparent);
    pointer-events: none;
}

.sample-report-card {
    max-width: 700px;
    margin: 0 auto;
    background: #fffef6;
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(101, 163, 13, 0.2);
    box-shadow:
        0 25px 60px rgba(100, 80, 30, 0.08),
        0 0 40px rgba(101, 163, 13, 0.06);
    position: relative;
    z-index: 1;
}

.sample-report-preview {
    padding: var(--spacing-xl);
    border-bottom: 1px solid var(--color-border-light);
}

.sample-report-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.sample-report-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(101, 163, 13, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.sample-report-meta h3 {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.sample-report-tech {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    background: var(--color-surface-hover);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.sample-report-verdict {
    margin-left: auto;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.sample-report-verdict.ready {
    background: #65a30d;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(101, 163, 13, 0.4);
}

.sample-report-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.sample-report-stat {
    text-align: center;
    padding: var(--spacing-sm);
    background: var(--color-surface-hover);
    border-radius: 12px;
}

.sample-report-stat .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.sample-report-stat .stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sample-report-dimensions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.dim-badge {
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.dim-badge.good {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.sample-report-actions {
    padding: var(--spacing-lg);
    background: var(--color-surface-hover);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.sample-report-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Testimonials Section */
.testimonials {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 50% 40% at 20% 30%, rgba(132, 204, 22, 0.04), transparent),
        radial-gradient(ellipse 50% 40% at 80% 70%, rgba(139, 92, 246, 0.04), transparent);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: #fffef6;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: var(--spacing-xl);
    border: 1px solid rgba(140, 110, 40, 0.1);
    box-shadow:
        0 10px 40px rgba(100, 80, 30, 0.06),
        0 0 0 1px rgba(140, 110, 40, 0.02) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-lg);
    font-family: var(--font-display);
    font-size: 4rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.6;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(101, 163, 13, 0.3);
    box-shadow:
        0 24px 64px rgba(100, 80, 30, 0.1),
        0 0 40px rgba(101, 163, 13, 0.06),
        0 0 0 1px rgba(101, 163, 13, 0.15) inset;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-lg);
    padding-top: var(--spacing-md);
}

.testimonial-content p {
    font-size: clamp(0.95rem, 1vw + 0.3rem, 1.1rem);
    color: #4a3c2a;
    line-height: 1.75;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-bg);
    box-shadow: 0 4px 15px var(--color-accent-glow);
}

.testimonial-info h4 {
    font-size: 1rem;
    color: #2d2416;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.testimonial-info p {
    font-size: 0.85rem;
    color: #5c4d3a;
    font-style: normal;
}

.testimonial-company {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.testimonial-company svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

/* Comparison Section */
.comparison {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 50% 40% at 30% 50%, rgba(132, 204, 22, 0.06), transparent),
        radial-gradient(ellipse 50% 40% at 70% 50%, rgba(139, 92, 246, 0.04), transparent);
    pointer-events: none;
}

.comparison-table-wrapper {
    max-width: 900px;
    margin: 0 auto var(--spacing-2xl);
    background: #fffef6;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 15px 50px rgba(100, 80, 30, 0.08);
    position: relative;
    z-index: 1;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border-light);
}

.comparison-table th {
    background: var(--color-surface-hover);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
}

.comparison-table th:first-child {
    text-align: left;
    width: 40%;
}

.comparison-table th.highlight {
    background: linear-gradient(135deg, rgba(101, 163, 13, 0.15) 0%, rgba(132, 204, 22, 0.1) 100%);
    color: var(--color-primary-dark);
}

.comparison-table td:first-child {
    text-align: left;
}

.comparison-table td.highlight {
    background: rgba(101, 163, 13, 0.05);
}

.comparison-table td strong {
    display: block;
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.comparison-table .feature-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--color-surface-hover);
}

.comparison-table tbody tr:hover td.highlight {
    background: rgba(101, 163, 13, 0.1);
}

.comparison-table .check {
    color: #22c55e;
    font-size: 1.25rem;
    font-weight: 700;
}

.comparison-table .cross {
    color: #f43f5e;
    font-size: 1.25rem;
}

.comparison-table .partial {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

.comparison-table .coming-soon {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(167, 139, 250, 0.1) 100%);
    color: #8b5cf6;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.comparison-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.summary-card {
    background: #fffef6;
    padding: var(--spacing-lg);
    border-radius: 16px;
    border: 1px solid var(--color-border-light);
    transition: all 0.3s ease;
}

.summary-card:hover {
    border-color: var(--color-border);
    box-shadow: 0 10px 30px rgba(100, 80, 30, 0.08);
    transform: translateY(-4px);
}

.summary-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.summary-icon.sonarqube {
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
}

.summary-icon.ai-tools {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.summary-icon.prodsensor {
    background: rgba(101, 163, 13, 0.15);
    color: var(--color-primary);
}

.summary-card h4 {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.summary-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .comparison-table-wrapper {
        overflow-x: auto;
    }

    .comparison-table {
        min-width: 600px;
    }

    .comparison-summary {
        grid-template-columns: 1fr;
    }
}

/* Final CTA */
.final-cta {
    padding: var(--spacing-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(132, 204, 22, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 50% 50%, rgba(132, 204, 22, 0.08), transparent);
    pointer-events: none;
}

.final-cta .section-container {
    position: relative;
    z-index: 1;
}

.cta-note {
    display: block;
    margin-top: var(--spacing-md);
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
    background: var(--color-bg-secondary);
    color: var(--color-text);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    border-top: 1px solid var(--color-border);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(120, 90, 50, 0.05);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--color-accent-glow);
}

.footer-links {
    display: flex;
    gap: var(--spacing-2xl);
    justify-content: flex-end;
}

.footer-column h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

.footer-column a {
    display: block;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
    transition: all 0.2s;
}

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

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-lg) 0;
    border-top: 1px solid var(--color-border);
    margin-top: var(--spacing-xl);
}

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

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

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

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

    .hero {
        padding-top: calc(var(--nav-height) + var(--spacing-xl));
        padding-bottom: var(--spacing-xl);
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-cta {
        align-items: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-screenshot {
        transform: none;
    }

    .hero-screenshot:hover {
        transform: none;
    }

    .value-strip-container {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .value-divider {
        width: 60px;
        height: 1px;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 100%;
    }

    .step-arrow {
        padding: 0;
        transform: rotate(90deg);
    }

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

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* =====================================================
   CI/CD Integration Section
   ===================================================== */

.cicd-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-secondary);
}

.cicd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.cicd-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 16px;
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
}

.cicd-card:hover {
    border-color: var(--color-card-border-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.cicd-icon {
    width: 56px;
    height: 56px;
    background: var(--color-accent-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.cicd-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

.cicd-card p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.cicd-code {
    background: #1a1e24;
    border-radius: 8px;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    overflow-x: auto;
}

.cicd-code code {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.85rem;
    color: #a3e635;
    line-height: 1.6;
}

.cicd-link {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}

.cicd-link:hover {
    gap: 8px;
}

.cicd-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md) var(--spacing-xl);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--color-border-light);
}

.cicd-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.cicd-feature svg {
    color: var(--color-success);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cicd-grid {
        grid-template-columns: 1fr;
    }

    .cicd-features {
        flex-direction: column;
        align-items: center;
    }
}

/* =====================================================
   Premium Features Section - Enhanced Design
   ===================================================== */

.features-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

/* Animated grid background */
.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, rgba(101, 163, 13, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(101, 163, 13, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 70%);
    pointer-events: none;
    animation: gridPulse 8s ease-in-out infinite;
}

.features-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(101, 163, 13, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

[data-theme="dark"] .features-section::before {
    background:
        linear-gradient(90deg, rgba(132, 204, 22, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(132, 204, 22, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

/* All 6 cards in a clean 3x2 grid - no spanning */
@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Premium Card - Enhanced Glassmorphism with animated border */
.premium-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 254, 246, 0.97) 0%, rgba(252, 248, 234, 0.95) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(140, 110, 40, 0.1);
    border-radius: 24px;
    padding: var(--spacing-xl);
    box-shadow:
        0 4px 24px rgba(100, 80, 30, 0.06),
        0 1px 2px rgba(100, 80, 30, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

/* Animated gradient border on hover */
.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 0%, rgba(132, 204, 22, 0) 40%, rgba(132, 204, 22, 0.4) 50%, rgba(132, 204, 22, 0) 60%, transparent 100%);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-card:hover::before {
    opacity: 1;
    animation: borderGlow 2s linear infinite;
}

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

/* Inner glow effect */
.premium-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(132, 204, 22, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.premium-card:hover::after {
    opacity: 1;
}

.premium-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(132, 204, 22, 0.25);
    box-shadow:
        0 20px 50px rgba(100, 80, 30, 0.12),
        0 8px 24px rgba(101, 163, 13, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Dark theme premium card */
[data-theme="dark"] .premium-card {
    background: linear-gradient(145deg, rgba(26, 30, 36, 0.9) 0%, rgba(22, 26, 31, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .premium-card:hover {
    border-color: rgba(132, 204, 22, 0.2);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 8px 24px rgba(132, 204, 22, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .premium-card::after {
    background: radial-gradient(circle at 30% 30%, rgba(132, 204, 22, 0.12) 0%, transparent 50%);
}

/* Premium Card Icon - Enhanced with glow */
.premium-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    z-index: 1;
}

.premium-card:hover .premium-card-icon {
    transform: scale(1.12) rotate(-3deg);
}

.premium-card-icon.scale {
    background: linear-gradient(145deg, rgba(251, 146, 60, 0.18), rgba(245, 158, 11, 0.12));
    color: #f59e0b;
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
}

.premium-card:hover .premium-card-icon.scale {
    box-shadow: 0 0 24px rgba(245, 158, 11, 0.25);
}

.premium-card-icon.roadmap {
    background: linear-gradient(145deg, rgba(101, 163, 13, 0.18), rgba(132, 204, 22, 0.12));
    color: var(--color-primary);
}

.premium-card:hover .premium-card-icon.roadmap {
    box-shadow: 0 0 24px rgba(132, 204, 22, 0.3);
}

.premium-card-icon.findings {
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.18), rgba(74, 222, 128, 0.12));
    color: #22c55e;
}

.premium-card:hover .premium-card-icon.findings {
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.25);
}

.premium-card-icon.history {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.18), rgba(167, 139, 250, 0.12));
    color: #8b5cf6;
}

.premium-card:hover .premium-card-icon.history {
    box-shadow: 0 0 24px rgba(139, 92, 246, 0.25);
}

.premium-card-icon.cicd {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.18), rgba(99, 102, 241, 0.12));
    color: #3b82f6;
}

.premium-card:hover .premium-card-icon.cicd {
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.25);
}

/* NEW Badge - Enhanced with pulse animation */
.new-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow:
        0 2px 8px rgba(101, 163, 13, 0.3),
        0 0 0 0 rgba(132, 204, 22, 0.4);
    animation: badgePulse 2.5s ease-in-out infinite;
    z-index: 2;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow:
            0 2px 8px rgba(101, 163, 13, 0.3),
            0 0 0 0 rgba(132, 204, 22, 0.4);
    }
    50% {
        box-shadow:
            0 2px 12px rgba(101, 163, 13, 0.4),
            0 0 0 6px rgba(132, 204, 22, 0);
    }
}

/* Premium Card Typography */
.premium-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: 0.625rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.premium-card > p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

/* Premium Card Metrics - Enhanced */
.premium-card-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(135deg, rgba(101, 163, 13, 0.08) 0%, rgba(132, 204, 22, 0.04) 100%);
    border-radius: 12px;
    border: 1px solid rgba(101, 163, 13, 0.12);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.premium-card:hover .premium-card-metrics {
    background: linear-gradient(135deg, rgba(101, 163, 13, 0.12) 0%, rgba(132, 204, 22, 0.06) 100%);
    border-color: rgba(101, 163, 13, 0.2);
}

.premium-card-metrics .metric {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    font-family: var(--font-body);
    letter-spacing: -0.01em;
}

.premium-card-metrics .metric-sep {
    color: var(--color-primary);
    opacity: 0.4;
    font-size: 0.5rem;
}

[data-theme="dark"] .premium-card-metrics .metric {
    color: var(--color-primary-light);
}

/* Premium Card Checklist - Enhanced */
.premium-card-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    position: relative;
    z-index: 1;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    padding: 0.625rem 0.875rem;
    background: linear-gradient(135deg, rgba(101, 163, 13, 0.06) 0%, rgba(132, 204, 22, 0.02) 100%);
    border-radius: 10px;
    border: 1px solid rgba(101, 163, 13, 0.08);
    transition: all 0.3s ease;
}

.premium-card:hover .checklist-item {
    background: linear-gradient(135deg, rgba(101, 163, 13, 0.1) 0%, rgba(132, 204, 22, 0.04) 100%);
    border-color: rgba(101, 163, 13, 0.15);
}

.checklist-item .checkbox {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
}

/* Premium Card Buttons - Enhanced with hover states */
.premium-card-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    position: relative;
    z-index: 1;
}

.action-btn {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    cursor: default;
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
}

.action-btn.accept {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(251, 191, 36, 0.1) 100%);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.premium-card:hover .action-btn.accept {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(251, 191, 36, 0.12) 100%);
    border-color: rgba(245, 158, 11, 0.35);
    transform: translateY(-1px);
}

.action-btn.fixed {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(74, 222, 128, 0.1) 100%);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.premium-card:hover .action-btn.fixed {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(74, 222, 128, 0.12) 100%);
    border-color: rgba(34, 197, 94, 0.35);
    transform: translateY(-1px);
}

.action-btn.snooze {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(167, 139, 250, 0.1) 100%);
    color: #7c3aed;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.premium-card:hover .action-btn.snooze {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(167, 139, 250, 0.12) 100%);
    border-color: rgba(139, 92, 246, 0.35);
    transform: translateY(-1px);
}

/* Premium Card Trends - Enhanced with animated values */
.premium-card-trends {
    display: flex;
    justify-content: space-around;
    gap: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.trend-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.875rem 1.125rem;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--color-surface-hover) 0%, var(--color-surface) 100%);
    min-width: 75px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.premium-card:hover .trend-item {
    transform: translateY(-2px);
}

.trend-item .trend-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    margin-bottom: 0.375rem;
    font-weight: 500;
}

.trend-item .trend-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
    display: flex;
    align-items: center;
}

.trend-item .trend-arrow {
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.premium-card:hover .trend-item.up .trend-arrow {
    transform: translateY(-2px);
}

.premium-card:hover .trend-item.down .trend-arrow {
    transform: translateY(2px);
}

.trend-item.up {
    border-color: rgba(34, 197, 94, 0.15);
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.08) 0%, var(--color-surface) 100%);
}

.trend-item.up .trend-value,
.trend-item.up .trend-arrow {
    color: #22c55e;
}

.trend-item.down {
    border-color: rgba(34, 197, 94, 0.15);
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.08) 0%, var(--color-surface) 100%);
}

.trend-item.down .trend-value,
.trend-item.down .trend-arrow {
    color: #22c55e;
}

.trend-item.neutral {
    border-color: rgba(156, 163, 175, 0.15);
}

.trend-item.neutral .trend-arrow {
    color: var(--color-text-muted);
}

/* Premium Card Links - Enhanced with arrow animation */
.premium-card-links {
    display: flex;
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.625rem 1.125rem;
    background: linear-gradient(135deg, rgba(101, 163, 13, 0.08) 0%, rgba(132, 204, 22, 0.04) 100%);
    border-radius: 10px;
    border: 1px solid rgba(101, 163, 13, 0.12);
    transition: all 0.3s ease;
}

.card-link::after {
    content: '→';
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.card-link:hover {
    background: linear-gradient(135deg, rgba(101, 163, 13, 0.15) 0%, rgba(132, 204, 22, 0.08) 100%);
    border-color: rgba(101, 163, 13, 0.25);
    transform: translateX(2px);
}

.card-link:hover::after {
    transform: translateX(4px);
}

/* Premium Card Dimensions - 8 dimensions tags */
.premium-card-icon.dimensions {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-color: rgba(6, 182, 212, 0.2);
    color: rgb(6, 182, 212);
}

.premium-card-dimensions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.dim-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 9999px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.18) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(6, 182, 212, 0.35);
    color: rgb(8, 145, 178);
    transition: all 0.2s ease;
}

.dim-tag:hover {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-color: rgba(6, 182, 212, 0.35);
    transform: translateY(-1px);
}

[data-theme="dark"] .dim-tag {
    color: rgb(34, 211, 238);
    border-color: rgba(34, 211, 238, 0.25);
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15) 0%, rgba(34, 211, 238, 0.05) 100%);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .premium-card-trends {
        flex-wrap: wrap;
    }
}

/* Smooth scrolling and selection */
::selection {
    background: var(--color-primary);
    color: var(--color-bg);
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ========================================
   Three-Layer Analysis Section
   ======================================== */

.three-layer-section {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--color-bg-secondary);
}

.three-layer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.layer-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 16px;
    padding: var(--spacing-xl);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.layer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-card-border-hover);
}

.layer-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--color-bg-tertiary);
    color: var(--color-text-muted);
}

.layer-badge.ai {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(139, 92, 246, 0.15));
    color: #a855f7;
}

.layer-badge.expert {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(234, 179, 8, 0.15));
    color: #f59e0b;
}

.layer-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.layer-icon.static {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(101, 163, 13, 0.15));
    color: var(--color-primary);
}

.layer-icon.ai {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(139, 92, 246, 0.15));
    color: #a855f7;
}

.layer-icon.expert {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(234, 179, 8, 0.15));
    color: #f59e0b;
}

.layer-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.layer-confidence {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.layer-card > p:not(.layer-confidence) {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

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

.layer-features li {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}

.layer-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 600;
}

/* Expert Patterns Showcase */
.expert-patterns-showcase {
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-xl);
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 16px;
    text-align: center;
}

.expert-patterns-showcase h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.expert-patterns-showcase > p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
}

.pattern-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.pattern-tag {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    background: var(--color-bg-tertiary);
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border-light);
    transition: transform 0.2s ease;
}

.pattern-tag:hover {
    transform: scale(1.05);
}

.pattern-tag.incident {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.1), rgba(239, 68, 68, 0.1));
    color: #f43f5e;
    border-color: rgba(244, 63, 94, 0.2);
}

.pattern-tag.framework {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.2);
}

.pattern-tag.security {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(234, 179, 8, 0.1));
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.2);
}

.pattern-tag.more {
    background: linear-gradient(135deg, rgba(101, 163, 13, 0.1), rgba(132, 204, 22, 0.1));
    color: var(--color-primary);
    border-color: rgba(101, 163, 13, 0.2);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .three-layer-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .three-layer-section {
        padding: var(--spacing-2xl) var(--spacing-sm);
    }

    .layer-card {
        padding: var(--spacing-lg);
    }

    .pattern-tags {
        gap: 8px;
    }

    .pattern-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

/* ===========================================
   CARD LINK ARROW - Learn More Links
   =========================================== */

.card-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: var(--spacing-md);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.card-link-arrow::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    border-radius: 1px;
    transition: width 0.3s ease;
}

.card-link-arrow:hover {
    color: var(--color-primary-dark);
    transform: translateX(4px);
}

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

[data-theme="dark"] .card-link-arrow {
    color: var(--color-primary-light);
}

[data-theme="dark"] .card-link-arrow:hover {
    color: var(--color-primary);
}

/* ===========================================
   ENHANCED CHECKLIST ITEMS
   =========================================== */

.checklist-item span:not(.checkbox) {
    color: var(--color-text-secondary);
    font-weight: 500;
}

.premium-card:hover .checklist-item span:not(.checkbox) {
    color: var(--color-text);
}

[data-theme="dark"] .checklist-item span:not(.checkbox) {
    color: var(--color-text-secondary);
}

[data-theme="dark"] .premium-card:hover .checklist-item span:not(.checkbox) {
    color: var(--color-text);
}

/* ===========================================
   PREMIUM CARD TITLE HOVER ENHANCEMENT
   =========================================== */

.premium-card h3 {
    transition: all 0.3s ease;
}

.premium-card:hover h3 {
    color: var(--color-primary-dark);
}

[data-theme="dark"] .premium-card:hover h3 {
    color: var(--color-primary-light);
}

/* ===========================================
   DIMENSIONS ICON HOVER GLOW
   =========================================== */

.premium-card:hover .premium-card-icon.dimensions {
    box-shadow: 0 0 24px rgba(6, 182, 212, 0.3);
}

/* ===========================================
   TESTIMONIAL SECTION ENHANCEMENTS
   =========================================== */

.testimonials {
    position: relative;
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg);
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 50% 40% at 20% 50%, rgba(139, 92, 246, 0.04), transparent),
        radial-gradient(ellipse 50% 40% at 80% 50%, rgba(101, 163, 13, 0.04), transparent);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--color-surface);
    border-radius: 20px;
    padding: var(--spacing-xl);
    border: 1px solid var(--color-border);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(101, 163, 13, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.testimonial-content {
    flex: 1;
    margin-bottom: var(--spacing-lg);
}

.testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2rem;
    font-family: var(--font-display);
    color: var(--color-primary);
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.125rem;
}

.testimonial-info p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0;
}

.testimonial-company {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.25rem;
}

.testimonial-company svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

[data-theme="dark"] .testimonial-card {
    background: var(--color-surface);
    border-color: var(--color-border);
}

[data-theme="dark"] .testimonial-card:hover {
    border-color: rgba(132, 204, 22, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   FINAL CTA SECTION ENHANCEMENT
   =========================================== */

.final-cta {
    padding: var(--spacing-3xl) 0;
    text-align: center;
    position: relative;
    background: var(--color-bg-secondary);
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(101, 163, 13, 0.1), transparent);
    pointer-events: none;
}

.final-cta h2 {
    position: relative;
    z-index: 1;
}

.final-cta .section-subtitle {
    position: relative;
    z-index: 1;
}

.final-cta .btn-primary {
    position: relative;
    z-index: 1;
}

.cta-note {
    display: block;
    margin-top: var(--spacing-md);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    position: relative;
    z-index: 1;
}

/* ===========================================
   FOOTER ENHANCEMENTS
   =========================================== */

.footer {
    background: var(--color-bg-tertiary);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    border-top: 1px solid var(--color-border);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--spacing-2xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.footer-brand > p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--color-surface);
    color: var(--color-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--color-border-light);
}

.social-link:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.footer-column a {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-decoration: none;
    padding: 0.375rem 0;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: var(--max-width);
    margin: var(--spacing-2xl) auto 0;
    padding: var(--spacing-lg) var(--spacing-lg) 0;
    border-top: 1px solid var(--color-border-light);
    text-align: center;
}

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

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ============================================
   AI PR REVIEW SHOWCASE SECTION
   ============================================ */

.ai-pr-review-section {
    padding: 6rem 0;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.ai-pr-review-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.ai-pr-review-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 45%;
    height: 70%;
    background: radial-gradient(circle, rgba(101, 163, 13, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* AI Badge */
.ai-pr-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 100px;
    color: #a855f7;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.ai-pr-badge svg {
    flex-shrink: 0;
}

.ai-pr-review-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

/* Showcase Grid */
.ai-pr-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

/* Code Panel (Left) */
.ai-pr-code-panel {
    background: #1e1e2e;
    border-radius: 16px 0 0 16px;
    overflow: hidden;
}

.ai-pr-code-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #181825;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ai-pr-code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.ai-pr-code-dot.red { background: #f43f5e; }
.ai-pr-code-dot.yellow { background: #f59e0b; }
.ai-pr-code-dot.green { background: #22c55e; }

.ai-pr-code-filename {
    margin-left: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.ai-pr-code-badge {
    margin-left: auto;
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.ai-pr-code-body {
    padding: 1rem 0;
}

.ai-pr-code-group {
    margin-bottom: 0.75rem;
}

.ai-pr-code-group:last-child {
    margin-bottom: 0;
}

.ai-pr-code-line {
    display: flex;
    align-items: baseline;
    padding: 0.125rem 1.25rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.8125rem;
    line-height: 1.6;
}

.ai-pr-code-line.context {
    color: rgba(255, 255, 255, 0.5);
}

.ai-pr-code-line.added {
    background: rgba(34, 197, 94, 0.08);
    color: rgba(255, 255, 255, 0.85);
}

.ai-pr-line-num {
    width: 2.5rem;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    text-align: right;
    padding-right: 1rem;
    user-select: none;
}

.ai-pr-line-code {
    flex: 1;
    white-space: pre;
    overflow-x: auto;
}

.ai-pr-line-code .kw { color: #c792ea; }
.ai-pr-line-code .fn { color: #82aaff; }
.ai-pr-line-code .str { color: #c3e88d; }

/* Code Annotations */
.ai-pr-annotation {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1.25rem 0.375rem 4.75rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.ai-pr-annotation.blocker {
    background: rgba(244, 63, 94, 0.08);
    border-left: 2px solid #f43f5e;
}

.ai-pr-annotation.major {
    background: rgba(245, 158, 11, 0.08);
    border-left: 2px solid #f59e0b;
}

.ai-pr-annotation-badge {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.125rem 0.375rem;
    border-radius: 3px;
    text-transform: uppercase;
}

.ai-pr-annotation-badge.blocker {
    background: rgba(244, 63, 94, 0.2);
    color: #f43f5e;
}

.ai-pr-annotation-badge.major {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

/* Findings Panel (Right) */
.ai-pr-findings-panel {
    background: var(--color-surface);
    border-radius: 0 16px 16px 0;
    border: 1px solid var(--color-border);
    border-left: none;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ai-pr-findings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ai-pr-findings-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
}

.ai-pr-findings-stats {
    display: flex;
    gap: 0.5rem;
}

.ai-pr-stat {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.1875rem 0.5rem;
    border-radius: 100px;
}

.ai-pr-stat.blocker {
    background: rgba(244, 63, 94, 0.12);
    color: #f43f5e;
}

.ai-pr-stat.major {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
}

.ai-pr-stat.minor {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
}

/* Finding Cards */
.ai-pr-finding-card {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    background: var(--color-card-surface);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.ai-pr-finding-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.ai-pr-finding-card.blocker:hover {
    border-color: rgba(244, 63, 94, 0.3);
}

.ai-pr-finding-card.major:hover {
    border-color: rgba(245, 158, 11, 0.3);
}

.ai-pr-finding-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.375rem;
}

.ai-pr-severity-badge {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.1875rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.ai-pr-severity-badge.blocker {
    background: rgba(244, 63, 94, 0.15);
    color: #f43f5e;
}

.ai-pr-severity-badge.major {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.ai-pr-confidence {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.ai-pr-finding-card h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.ai-pr-finding-card p {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin-bottom: 0.75rem;
}

.ai-pr-finding-card code {
    font-size: 0.75rem;
    padding: 0.125rem 0.375rem;
    background: rgba(168, 85, 247, 0.08);
    border-radius: 3px;
    color: #a855f7;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.ai-pr-suggested-fix {
    padding: 0.625rem 0.75rem;
    background: var(--color-bg-secondary);
    border-radius: 6px;
    border: 1px solid var(--color-border-light);
}

.ai-pr-fix-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #a855f7;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.375rem;
}

.ai-pr-suggested-fix code {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text);
    background: none;
    padding: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

/* Differentiator Cards */
.ai-pr-differentiators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.ai-pr-diff-card {
    padding: 1.75rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    background: var(--color-card-surface);
    transition: transform 0.2s, box-shadow 0.2s;
}

.ai-pr-diff-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.ai-pr-diff-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    margin-bottom: 1rem;
}

.ai-pr-diff-card h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.ai-pr-diff-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

/* ============================================
   AI PR REVIEW - DARK MODE
   ============================================ */

[data-theme="dark"] .ai-pr-review-section::before {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
}

[data-theme="dark"] .ai-pr-review-section::after {
    background: radial-gradient(circle, rgba(101, 163, 13, 0.06) 0%, transparent 70%);
}

[data-theme="dark"] .ai-pr-badge {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
}

[data-theme="dark"] .ai-pr-showcase {
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .ai-pr-finding-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .ai-pr-finding-card code {
    background: rgba(168, 85, 247, 0.12);
}

[data-theme="dark"] .ai-pr-diff-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .ai-pr-diff-icon {
    background: rgba(168, 85, 247, 0.15);
}

/* ============================================
   AI PR REVIEW - RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .ai-pr-showcase {
        grid-template-columns: 1fr;
    }

    .ai-pr-code-panel {
        border-radius: 16px 16px 0 0;
    }

    .ai-pr-findings-panel {
        border-radius: 0 0 16px 16px;
        border-left: 1px solid var(--color-border);
        border-top: none;
    }
}

@media (max-width: 768px) {
    .ai-pr-review-section {
        padding: 4rem 0;
    }

    .ai-pr-differentiators {
        grid-template-columns: 1fr;
    }

    .ai-pr-code-line {
        font-size: 0.75rem;
    }

    .ai-pr-annotation {
        padding-left: 1.25rem;
    }

    .ai-pr-findings-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
