/* AI Security Guard - Dark Theme with Gold Accent */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(18, 18, 26, 0.9);
    --bg-card-hover: rgba(25, 25, 35, 0.95);
    --accent-gold: #FFB700;
    --accent-gold-glow: #FFC940;
    --accent-gold-dim: rgba(255, 183, 0, 0.15);
    --accent-danger: #ef4444;
    --accent-warning: #f59e0b;
    --accent-success: #22c55e;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(255, 183, 0, 0.15);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 0 30px rgba(255, 183, 0, 0.2);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    padding: 5rem 2rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 3rem;
    align-items: center;
    min-height: 70vh;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-gold-dim);
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gold-text {
    color: var(--accent-gold);
    text-shadow: 0 0 40px rgba(255, 183, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(255, 183, 0, 0.35));
    position: relative;
    z-index: 2;
}

.shield-glow {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-gold-dim) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    position: absolute;
    z-index: 1;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* How It Works Section */
.how-it-works {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    border-top: 1px solid var(--border-subtle);
}

.how-it-works .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.how-it-works .section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.how-it-works .section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Types Section */
.content-types-section {
    margin: 3rem auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.content-types-section h3 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 0.75rem;
}

.content-types-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.content-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 1000px;
}

.content-type-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.content-type-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.content-type-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-gold-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.content-type-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-gold);
}

.content-type-card h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.content-type-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Responsive Content Types */
@media (max-width: 900px) {
    .content-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .content-types-grid {
        grid-template-columns: 1fr;
    }
}

/* Performance Stats Bar */
.perf-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}

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

.perf-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.2;
}

.perf-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Steps Flow */
.steps-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

/* Connecting line between steps */
.steps-flow::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg,
            var(--accent-gold) 0%,
            var(--accent-gold-dim) 33%,
            var(--accent-gold-dim) 66%,
            var(--accent-gold) 100%);
    z-index: 0;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--accent-gold);
    color: #000;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-gold-dim);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-gold);
}

/* Icon placeholder for user-provided icons */
.step-icon .icon-placeholder {
    font-size: 1.75rem;
    color: var(--accent-gold);
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-card .step-timing {
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Expert Pills */
.expert-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.expert-pill {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    color: var(--text-muted);
}

/* Advisory Note (in Verdict step) */
.advisory-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--accent-gold-dim);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.advisory-note .advisory-star {
    font-size: 1rem;
    flex-shrink: 0;
}

/* Scan Pricing Note (between steps and experts) */
.scan-pricing-note {
    max-width: 700px;
    margin: 2.5rem auto;
    padding: 2rem 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--accent-gold);
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 183, 0, 0.08);
}

.scan-pricing-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    border-radius: 16px 16px 0 0;
}

.scan-pricing-note .pricing-note-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-gold-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.scan-pricing-note .pricing-note-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
}

.scan-pricing-note h4 {
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.scan-pricing-note p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.scan-pricing-note p strong {
    color: var(--accent-gold);
}

.scan-pricing-note .pricing-note-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-subtle);
}

.scan-pricing-note .pricing-note-stat {
    text-align: center;
}

.scan-pricing-note .pricing-note-stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.scan-pricing-note .pricing-note-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Response Examples Section */
.response-examples-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-subtle);
}

.response-examples-section h3 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 0.75rem;
}

.response-intro {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.response-intro code {
    background: var(--accent-gold-dim);
    color: var(--accent-gold);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: 0.9em;
}

.response-examples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
    .response-examples-grid {
        grid-template-columns: 1fr;
    }
}

.response-example {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    overflow: hidden;
}

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

.response-header.response-clean {
    background: rgba(34, 197, 94, 0.08);
    border-bottom-color: rgba(34, 197, 94, 0.2);
}

.response-header.response-threat {
    background: rgba(239, 68, 68, 0.08);
    border-bottom-color: rgba(239, 68, 68, 0.2);
}

.response-badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
}

.response-clean .response-badge {
    background: rgba(34, 197, 94, 0.15);
    color: var(--accent-success);
}

.response-threat .response-badge {
    background: rgba(239, 68, 68, 0.15);
    color: var(--accent-danger);
}

.response-scenario {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.response-json {
    margin: 0;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    overflow-x: auto;
    font-size: 0.78rem;
    line-height: 1.5;
}

.response-json code {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Consolas', monospace;
    color: var(--text-primary);
    white-space: pre;
}

.response-note {
    padding: 1rem 1.25rem;
    background: var(--bg-secondary);
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.response-note strong {
    color: var(--accent-gold);
}

.response-note code {
    background: var(--accent-gold-dim);
    color: var(--accent-gold);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: 0.85em;
}

/* Integration Code Block */
.response-integration {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.response-integration h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.integration-code {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 1.25rem;
    text-align: left;
    margin-bottom: 1rem;
    overflow-x: auto;
}

.integration-code code {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Consolas', monospace;
    font-size: 0.85rem;
    color: var(--text-primary);
    white-space: pre;
}

.integration-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Step Conditional Badge (Deep Scan "only when needed") */
.step-conditional {
    font-size: 0.75rem;
    color: var(--accent-success);
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Outline Button (wallet CTA) */
.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    transition: all 0.2s;
}

.btn-outline:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    background: var(--accent-gold-dim);
}

.btn-outline svg {
    flex-shrink: 0;
}

/* Experts Section */
.experts-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-subtle);
}

.experts-section h3 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 0.75rem;
}

.experts-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Experts Grid */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.expert-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.expert-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.expert-card .expert-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-gold-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.expert-card .expert-icon .icon-placeholder {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.expert-card .expert-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-gold);
}

.expert-card h4 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.expert-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Expert Tags */
.expert-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expert-tags span {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    color: var(--text-muted);
}

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

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

/* Self-Evolving Defense Section */
.self-evolving-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-subtle);
}

.self-evolving-section h3 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 0.75rem;
}

.evolving-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Hardening Cycle Infographic (SVG-based) */
.hardening-cycle-wrapper {
    display: flex;
    justify-content: center;
    padding: 2rem 0 3rem;
}

.cycle-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Node hover interaction */
.cycle-node {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.cycle-node:hover circle {
    stroke-width: 2.5;
    filter: drop-shadow(0 0 12px rgba(255, 183, 0, 0.5));
}

/* Carousel Container */
.cycle-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 1rem;
    padding: 0 1rem;
}

.carousel-nav {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.carousel-nav:hover {
    border-color: var(--accent-gold);
    background: var(--accent-gold-dim);
}

.carousel-nav svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

.carousel-nav:hover svg {
    color: var(--accent-gold);
}

/* Carousel Content */
.carousel-content {
    position: relative;
    flex: 1;
    min-height: 100px;
    overflow: hidden;
}

.carousel-slide {
    display: none;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
}

.carousel-slide.active {
    display: flex;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.slide-icon svg {
    width: 100%;
    height: 100%;
    color: var(--accent-gold);
}

.slide-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.slide-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    background: var(--border-subtle);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: var(--text-muted);
}

.carousel-dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

/* Evolving Stats Bar */
.evolving-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}

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

.evolving-stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.2;
}

.evolving-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive for Self-Evolving Section */
@media (max-width: 768px) {
    .cycle-svg {
        max-width: 380px;
    }

    .evolving-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .evolving-stat {
        flex: 1 1 40%;
    }
}

@media (max-width: 480px) {
    .cycle-svg {
        max-width: 300px;
    }

    .carousel-slide {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .slide-icon {
        width: 40px;
        height: 40px;
    }

    .slide-text h4 {
        font-size: 0.9rem;
    }

    .slide-text p {
        font-size: 0.8rem;
    }

    .carousel-nav {
        width: 32px;
        height: 32px;
    }

    .carousel-nav svg {
        width: 16px;
        height: 16px;
    }
}

/* Responsive for How It Works */
@media (max-width: 1024px) {
    .steps-flow {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-flow::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .steps-flow {
        grid-template-columns: 1fr;
    }

    .perf-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Transparency Section (Limitations + Comparison) */
.transparency-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    border-top: 1px solid var(--border-subtle);
}

.transparency-section>.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.transparency-section>.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.transparency-section>.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

/* Limitations Grid */
.limitations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.limitation-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.limitation-card:hover {
    border-color: var(--border);
    transform: translateY(-2px);
}

.limitation-icon {
    width: 48px;
    height: 48px;
    background: rgba(148, 163, 184, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.limitation-icon svg {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
}

.limitation-card h4 {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

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

.limitation-card em {
    color: var(--text-primary);
    font-style: italic;
}

.limitation-mitigation {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-success);
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-subtle);
    line-height: 1.5;
}

/* Comparison Section */
.comparison-section {
    padding-top: 3rem;
    border-top: 1px solid var(--border-subtle);
}

.comparison-section h3 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 0.75rem;
}

.comparison-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}

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

.comparison-table thead th {
    padding: 1.25rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    background: var(--bg-secondary);
    border-bottom: 2px solid var(--border-subtle);
    vertical-align: bottom;
}

.comparison-table thead th:first-child {
    text-align: left;
    width: 160px;
}

.comparison-table thead th.comparison-highlight {
    color: var(--text-primary);
    background: rgba(255, 183, 0, 0.06);
    border-bottom: 2px solid var(--accent-gold);
    position: relative;
}

.comparison-badge {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 0.35rem;
    font-weight: 700;
}

.comparison-table tbody td {
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-card);
}

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

.comparison-table tbody td.comparison-label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table tbody td.comparison-highlight {
    color: var(--text-primary);
    background: rgba(255, 183, 0, 0.04);
    font-weight: 500;
}

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

.comparison-table tbody tr:hover td {
    background: var(--bg-card-hover);
}

.comparison-table tbody tr:hover td.comparison-highlight {
    background: rgba(255, 183, 0, 0.08);
}

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

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

    .comparison-table-wrapper {
        margin: 0 -1rem;
        border-radius: 0;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--accent-gold);
    color: #000;
}

.btn-primary:hover {
    background: var(--accent-gold-glow);
    box-shadow: var(--shadow-gold);
}

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

.btn-secondary:hover {
    background: var(--accent-gold-dim);
    border-color: var(--accent-gold);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Get Started Header */
.get-started-header {
    text-align: center;
    margin-bottom: 2rem;
}

.get-started-header h2 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.get-started-note {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.get-started-note strong {
    color: var(--accent-cyan);
}

/* Tabs */
.tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 1rem;
}

.tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.tab:hover {
    color: var(--text-primary);
    background: var(--bg-card);
}

.tab.active {
    color: var(--accent-gold);
    background: var(--accent-gold-dim);
    border-color: var(--accent-gold);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.card h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
}

.card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Endpoint List */
.endpoint-list {
    margin: 1.5rem 0;
}

.endpoint {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.endpoint code {
    font-family: 'SF Mono', Monaco, monospace;
    background: var(--accent-gold-dim);
    color: var(--accent-gold);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

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

/* Wizard Progress Indicator */
.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.progress-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.3s;
}

.progress-dot.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #000;
}

.progress-dot.completed {
    background: var(--accent-success);
    border-color: var(--accent-success);
    color: #fff;
}

.progress-line {
    width: 60px;
    height: 2px;
    background: var(--border-subtle);
}

/* Wizard Loading State */
.wizard-loading {
    text-align: center;
    padding: 3rem;
}

.wizard-loading.hidden {
    display: none;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border-subtle);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.wizard-loading p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Wizard Form */
.wizard-form {
    margin-top: 1.5rem;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.wizard-step h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.75rem;
}

.loading-placeholder {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
    grid-column: 1 / -1;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.checkbox-label:hover,
.radio-label:hover {
    border-color: var(--accent-gold);
    background: var(--bg-card-hover);
}

.checkbox-label input,
.radio-label input {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-gold);
    flex-shrink: 0;
}

/* Activity Item with Risk Indicator */
.activity-item {
    position: relative;
    justify-content: flex-start;
}

.activity-item .checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    flex-shrink: 0;
}

.activity-item input:checked+.checkbox-custom {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.activity-text {
    flex: 1;
    color: var(--text-primary);
}

.risk-indicator {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.risk-indicator.critical {
    background: rgba(239, 68, 68, 0.2);
    color: var(--accent-danger);
}

.risk-indicator.high {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
}

.risk-indicator.medium {
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-warning);
}

.risk-indicator.low {
    background: rgba(34, 197, 94, 0.2);
    color: var(--accent-success);
}

/* Sensitivity Options with Descriptions */
.sensitivity-options .radio-label {
    flex-wrap: wrap;
}

.sensitivity-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sensitivity-info strong {
    color: var(--text-primary);
}

.sensitivity-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Validation Error */
.validation-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid var(--accent-danger);
    color: var(--accent-danger);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Fallback/Offline Notice */
.fallback-notice {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid var(--accent-warning);
    color: var(--accent-warning);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    text-align: center;
}

.wizard-nav {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Wizard Results */
.wizard-results {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.wizard-results.hidden {
    display: none;
}

/* Risk Header */
.risk-header {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.risk-score-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.risk-score-value {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.risk-score-value strong {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.risk-summary {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.risk-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
}

.risk-badge.critical {
    background: rgba(220, 38, 38, 0.2);
    color: #dc2626;
    border: 1px solid #dc2626;
}

.risk-badge.high {
    background: rgba(239, 68, 68, 0.2);
    color: var(--accent-danger);
    border: 1px solid var(--accent-danger);
}

.risk-badge.medium {
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-warning);
    border: 1px solid var(--accent-warning);
}

.risk-badge.low {
    background: rgba(34, 197, 94, 0.2);
    color: var(--accent-success);
    border: 1px solid var(--accent-success);
}

/* Results Sections */
.results-section {
    margin-bottom: 2rem;
}

.results-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Threat Cards Grid (Results) */
.threat-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.threat-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.2s;
}

.threat-card.critical {
    border-left: 4px solid #dc2626;
}

.threat-card.high {
    border-left: 4px solid var(--accent-danger);
}

.threat-card.medium {
    border-left: 4px solid var(--accent-warning);
}

.threat-card.low {
    border-left: 4px solid var(--accent-success);
}

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

.threat-header h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
}

.severity-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.severity-badge.critical {
    background: rgba(220, 38, 38, 0.2);
    color: #dc2626;
}

.severity-badge.high {
    background: rgba(239, 68, 68, 0.2);
    color: var(--accent-danger);
}

.severity-badge.medium {
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-warning);
}

.severity-badge.low {
    background: rgba(34, 197, 94, 0.2);
    color: var(--accent-success);
}

.threat-relevance {
    font-size: 0.9rem;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    font-style: italic;
}

.threat-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.threat-example {
    background: var(--bg-primary);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.threat-example strong {
    color: var(--text-muted);
}

/* DIY Mitigations */
.diy-mitigations {
    margin-bottom: 1rem;
}

.diy-mitigations h5 {
    font-size: 0.85rem;
    color: var(--accent-success);
    margin-bottom: 0.5rem;
}

.diy-mitigations ul {
    margin: 0;
    padding-left: 1.25rem;
}

.diy-mitigations li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

/* Product Protection */
.product-protection {
    background: var(--accent-gold-dim);
    padding: 1rem;
    border-radius: 8px;
}

.product-protection h5 {
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.product-protection p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Best Practices Grid */
.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.practice-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 1.25rem;
}

.practice-card h5 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.practice-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Config Block */
.config-block {
    background: var(--bg-secondary);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
    white-space: pre-wrap;
    line-height: 1.8;
}

/* Legacy support */
.applicable-threats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.threat-tag {
    padding: 0.25rem 0.75rem;
    background: var(--accent-gold-dim);
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-gold);
}

.recommendations pre {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Threat Grid */
.threat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.threat-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.2s;
}

.threat-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.threat-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-gold-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.threat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
}

.threat-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.threat-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.threat-expand {
    background: transparent;
    border: none;
    color: var(--accent-gold);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
}

.threat-expand:hover {
    text-decoration: underline;
}

.threat-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.threat-details.hidden {
    display: none;
}

.threat-details h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.threat-details code {
    display: block;
    background: var(--bg-primary);
    padding: 0.75rem;
    border-radius: 6px;
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 0.85rem;
    color: var(--accent-danger);
    margin-bottom: 1rem;
    overflow-x: auto;
}

.threat-details p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
}

.pricing-table th {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.pricing-table td {
    color: var(--text-primary);
}

/* Cost Calculator */
.cost-calculator-toggle {
    margin-top: 1.5rem;
    text-align: center;
}

.cost-calculator {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.cost-calculator h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.cost-calculator .calculator-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.calculator-presets {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.preset-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.preset-btn:hover {
    border-color: var(--accent-gold);
    color: var(--text-primary);
}

.preset-btn.active {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
}

.calculator-slider {
    margin-bottom: 1.5rem;
}

.calculator-slider label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.calculator-slider #scan-count {
    color: var(--accent-gold);
    font-weight: 600;
}

.calculator-slider input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--bg-secondary);
    outline: none;
    -webkit-appearance: none;
}

.calculator-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.calculator-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
    border: none;
}

.calculator-result {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

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

.result-value {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.result-perception {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-subtle);
    margin-top: 0.5rem;
}

.result-row-total {
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 0.5rem;
    padding-bottom: 0.75rem;
}

.result-row-total .result-value {
    font-size: 1.25rem;
}

.result-breakdown {
    font-size: 0.9rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    color: var(--text-secondary);
}

.breakdown-item span:last-child {
    color: var(--text-primary);
}

.calc-price-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: normal;
}

.calculator-examples {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.calculator-examples p {
    margin-bottom: 0.5rem;
}

.calculator-examples ul {
    margin: 0;
    padding-left: 1.25rem;
}

.calculator-examples li {
    margin-bottom: 0.25rem;
}

.calculator-examples strong {
    color: var(--text-secondary);
}

/* Research Section */
.research-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-secondary);
}

.section-header .social-proof {
    font-size: 0.9rem;
    color: var(--accent-gold);
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Agent Identity Block */
.agent-identity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.agent-avatar {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.agent-info {
    text-align: left;
}

.agent-info p {
    margin: 0;
    line-height: 1.4;
}

.agent-info .agent-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.research-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.2s;
}

.research-card:hover {
    border-color: var(--accent-gold);
}

.research-card.placeholder {
    opacity: 0.6;
}

.research-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.research-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.research-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.research-card a {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.9rem;
}

.research-card a:hover {
    text-decoration: underline;
}

.research-image {
    margin: -1.5rem -1.5rem 1rem -1.5rem;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    height: 160px;
}

.research-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

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

/* Utility */
.hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 5rem;
        text-align: center;
        min-height: auto;
    }

    .hero-visual {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .tabs {
        flex-wrap: wrap;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}