/* ==========================================================================
   Landing Page Specific Styles
   ========================================================================== */

.landing-page {
    background: var(--bg-primary);
    position: relative;
}

/* Animated Background */
.bg-grid {
    display: none;
}

.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.bg-glow-1 {
    top: -200px;
    right: -100px;
    background: var(--accent-primary);
}

.bg-glow-2 {
    bottom: -200px;
    left: -100px;
    background: var(--accent-secondary);
}

/* Navigation */
.navbar {
    background: transparent !important;
    padding: 1rem 0;
    transition: all var(--transition-base);
    border-bottom: 1px solid transparent;
    z-index: 1000;
}

.navbar-scrolled {
    background: rgba(10, 10, 15, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    overflow: hidden;
    padding: 0;
}

.brand-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* Zoom the mule so the mark fills the 36px tile (favicon assets unchanged) */
    transform: scale(1.28);
    transform-origin: center center;
}

.brand-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.brand-accent {
    color: var(--accent-primary);
}

.navbar-nav {
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.navbar-nav .nav-link:hover {
    color: var(--text-primary) !important;
    background: rgba(255, 255, 255, 0.05);
}

/* Hamburger toggler — visible on dark background */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.25);
    padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.25);
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Collapsed mobile menu — shown below 1200px */
@media (max-width: 1199px) {
    .navbar-collapse {
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(24px);
        border-top: 1px solid var(--border-color);
        padding: 0.75rem 0 1rem 0;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }

    .navbar-collapse .navbar-nav {
        gap: 0;
        flex-direction: column;
    }

    .navbar-collapse .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-collapse .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 0.95rem;
    }

    .navbar-collapse .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .navbar-collapse .nav-cta {
        margin-top: 0.75rem;
        padding: 0 1rem;
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .navbar-collapse .nav-cta .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

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

/* Buttons */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary-glow {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-accent-strong);
    color: white;
}

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

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--border-accent);
}

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

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 4rem;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-content {
    padding-right: 2rem;
}


.scroll-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 212, 255, 0.55);
    background: rgba(0, 212, 255, 0.08);
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 0.85rem;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.12);
    position: relative;
    animation: scroll-bounce 1.8s ease-in-out infinite;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.scroll-hint::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 212, 255, 0.55);
    animation: scroll-pulse 2s ease-out infinite;
}

.scroll-hint:hover {
    border-color: var(--accent-primary);
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}

@keyframes scroll-pulse {
    0%   { transform: scale(1);   opacity: 0.6; }
    100% { transform: scale(2.4); opacity: 0; }
}

@media (max-width: 768px) {
    .scroll-hint { margin-top: 1.5rem; }
}

/* Section divider arrows between sections — same look as .scroll-hint */
.section-arrow {
    text-align: center;
    padding: 0.5rem 0;
    line-height: 1;
}

.section-arrow--hero {
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
}

.section-arrow a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 212, 255, 0.55);
    background: rgba(0, 212, 255, 0.08);
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 0.85rem;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.12);
    position: relative;
    animation: scroll-bounce 1.8s ease-in-out infinite;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.section-arrow a::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 212, 255, 0.55);
    animation: scroll-pulse 2s ease-out infinite;
}

.section-arrow a:hover {
    border-color: var(--accent-primary);
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-primary);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

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

.hero-subtitle strong {
    color: var(--text-primary);
}

.hero-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.benefit-item i {
    color: var(--success);
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.trust-avatars {
    display: flex;
}

.trust-avatars .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 2px solid var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-left: -8px;
}

.trust-avatars .avatar:first-child {
    margin-left: 0;
}

.trust-avatars .avatar-more {
    background: var(--accent-gradient);
    color: white;
    font-weight: 600;
}

.trust-text {
    color: var(--text-muted);
}

/* Hero Badges */
.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-full);
    color: var(--success);
    font-size: 0.8rem;
    font-weight: 500;
}

.hero-badge-item i {
    font-size: 0.9rem;
}

/* Hero Steps (How It Works in hero) */
.hero-steps {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.hero-step:hover {
    border-color: var(--border-accent);
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

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

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

.hero-step-arrow {
    display: flex;
    justify-content: center;
    color: var(--border-accent);
    font-size: 1rem;
    padding: 0.25rem 0;
}

/* Hero Extras */
.hero-extras {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.hero-extra {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-extra i {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

/* Demo Preview Card */
.demo-preview {
    position: relative;
}

.demo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.demo-header {
    padding: 1rem 1.5rem;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}

.demo-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.demo-content {
    padding: 1rem;
}

.demo-result {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.demo-result:hover {
    border-color: var(--border-accent);
}

.demo-result:last-child {
    margin-bottom: 0;
}

.result-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.result-icon.job {
    background: rgba(0, 212, 255, 0.15);
    color: var(--accent-primary);
}

.result-icon.company {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.result-icon.match {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

.result-icon.resume {
    background: rgba(124, 58, 237, 0.15);
    color: var(--accent-secondary);
}

.result-icon.letter {
    background: rgba(236, 72, 153, 0.15);
    color: #ec4899;
}

.result-info {
    flex: 1;
    min-width: 0;
}

.result-title {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.result-subtitle {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.result-score {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.score-bar {
    flex: 1;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: var(--success);
    border-radius: var(--radius-full);
    transition: width 1s ease;
}

.score-value {
    font-weight: 700;
    color: var(--success);
    font-family: var(--font-mono);
}

.result-tag {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    color: var(--accent-primary);
}

/* Stats Section */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

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

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-primary);
    font-family: var(--font-mono);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

.trust-dot {
    color: var(--border-color);
}

/* Hero Visual / Workflow Preview */
.hero-visual {
    position: relative;
}

.workflow-preview {
    position: relative;
    padding: 2rem;
}

.workflow-diagram {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
}

.workflow-node {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-tertiary);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.workflow-node .node-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.workflow-node span {
    font-weight: 600;
}

.node-output {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.node-output .node-icon {
    background: var(--success);
}

.workflow-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0;
}

.connector-line {
    width: 2px;
    height: 20px;
    background: var(--border-accent);
}

.connector-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-primary);
}

.workflow-agents {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    padding: 1rem 0;
}

.agent-node {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    min-width: 70px;
    transition: var(--transition-base);
}

.agent-node:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.agent-node i {
    font-size: 1.25rem;
    color: var(--accent-primary);
}

.agent-node span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.agent-pulse {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse-agent 2s infinite;
}

.agent-1 .agent-pulse { animation-delay: 0s; }
.agent-2 .agent-pulse { animation-delay: 0.4s; }
.agent-3 .agent-pulse { animation-delay: 0.8s; }
.agent-4 .agent-pulse { animation-delay: 1.2s; }
.agent-5 .agent-pulse { animation-delay: 1.6s; }

@keyframes pulse-agent {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* Code Preview */
.code-preview {
    position: absolute;
    bottom: 0;
    right: -20px;
    width: 280px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.code-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}

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

.code-dot.red { background: #ff5f56; }
.code-dot.yellow { background: #ffbd2e; }
.code-dot.green { background: #27ca40; }

.code-title {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.code-content {
    padding: 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
    overflow: hidden;
}

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

.code-number { color: var(--accent-primary); }
.code-success { color: var(--success); }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    animation: bounce-scroll 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(8px); }
}

@keyframes bounce-scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Section Styles */
section {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Problem Section */
.section-problem {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.problem-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.problem-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 3rem;
}

.problem-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.problem-stat {
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    min-width: 200px;
}

.problem-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--danger);
    font-family: var(--font-mono);
    margin-bottom: 0.5rem;
}

.problem-stat .stat-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.problem-stat.highlight {
    border-color: rgba(239, 68, 68, 0.3);
}

.problem-stat.highlight .stat-number {
    font-size: 3.5rem;
}

.problem-solution {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.problem-solution strong {
    color: var(--accent-primary);
}

/* Impact Comparison */
.impact-comparison {
    margin: 3rem 0 2rem;
}

.comparison-header {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.comparison-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.comparison-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.comparison-item.manual {
    border-color: rgba(239, 68, 68, 0.3);
}

.comparison-item.ai {
    border-color: rgba(16, 185, 129, 0.3);
}

.comparison-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-item.manual .comparison-label {
    color: var(--danger);
}

.comparison-item.ai .comparison-label {
    color: var(--success);
}

.comparison-tasks {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.task-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.task-row:last-child {
    border-bottom: none;
}

.task-name {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.task-time {
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-mono);
    color: var(--text-primary);
}

.task-time.bonus {
    color: var(--accent-secondary);
    font-family: var(--font-primary);
    font-weight: 700;
}

.task-row.task-row-bonus {
    justify-content: flex-start;
    border-bottom: none;
    padding: 0.3rem 0 0;
}

.task-row.task-row-bonus + .task-row.task-row-bonus {
    padding-top: 0.15rem;
}

.comparison-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    font-weight: 600;
}

.total-time {
    font-size: 1.25rem;
    font-family: var(--font-mono);
}

.total-time.bad {
    color: var(--danger);
}

.total-time.good {
    color: var(--success);
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-muted);
    padding: 0 0.5rem;
}

/* Steps Section */
.section-steps {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    max-width: 300px;
    position: relative;
    transition: var(--transition-base);
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.875rem;
}

.step-visual {
    margin-bottom: 1.5rem;
}

.step-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-primary);
}

.step-icon-wrap.processing {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.2);
    color: var(--accent-secondary);
}

.step-icon-wrap.success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--accent-primary);
}

.step-arrow {
    display: flex;
    align-items: center;
    color: var(--border-accent);
    font-size: 1.5rem;
    padding-top: 4rem;
}

/* Example Section */
.section-example {
    padding: 8rem 0;
    background: var(--bg-primary);
}

/* ── Screenshot Showcase ── */
.screenshot-showcase {
    width: 100%;
}

/* Tab click hint above the tab bar */
.ss-click-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin: 0 0 0.9rem;
}

.ss-click-hint span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 212, 255, 0.07);
    border: 1px solid rgba(0, 212, 255, 0.22);
    border-radius: 20px;
    padding: 0.28rem 0.85rem;
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--accent-primary);
    letter-spacing: 0.01em;
}

.ss-click-hint i {
    font-size: 0.7rem;
    opacity: 0.85;
}

.ss-tabs {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-bottom: none;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0.5rem 0.5rem 0;
    gap: 0.25rem;
}

.ss-tabs::-webkit-scrollbar { display: none; }

.ss-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 0.5rem;
    background: transparent;
    border: none;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.ss-tab:hover {
    color: var(--text-primary);
    background: rgba(102, 126, 234, 0.06);
}

.ss-tab.active {
    color: var(--accent-primary);
    background: var(--bg-secondary);
    font-weight: 600;
    box-shadow: inset 0 -2px 0 var(--accent-primary);
}

.ss-tab i {
    font-size: 0.78rem;
}

/* Browser chrome frame */
.ss-frame {
    border: 1px solid var(--border-color);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.06),
        0 32px 80px rgba(0, 0, 0, 0.5),
        0 8px 24px rgba(0, 0, 0, 0.3);
}

.ss-scroll-hint ~ .ss-frame,
.screenshot-showcase:has(.ss-scroll-hint.visible) .ss-frame {
    border-radius: 0 0 0 0;
}

.ss-browser-chrome {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.ss-dots {
    display: flex;
    gap: 0.35rem;
    flex-shrink: 0;
}

.ss-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-tertiary);
}

.ss-dots span:nth-child(1) { background: #ff5f57; }
.ss-dots span:nth-child(2) { background: #febc2e; }
.ss-dots span:nth-child(3) { background: #28c840; }

.ss-url-bar {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.75rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    color: var(--text-muted);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ss-url-bar i {
    color: #28c840;
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* Panels */
.ss-panels {
    position: relative;
    background: var(--bg-primary);
    max-height: 580px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--border-accent) var(--bg-secondary);
}

.ss-panels::-webkit-scrollbar {
    width: 6px;
}

.ss-panels::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.ss-panels::-webkit-scrollbar-thumb {
    background: var(--border-accent);
    border-radius: 3px;
}

.ss-panel {
    display: none;
}

.ss-panel.active {
    display: block;
    animation: ss-fade-in 0.25s ease;
}

@keyframes ss-fade-in {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.ss-panel img {
    width: 100%;
    height: auto;
    display: block;
}



.example-input, .example-output {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.example-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.example-label i {
    color: var(--accent-primary);
}

.job-posting-preview {
    padding: 1.5rem;
    position: relative;
    max-height: 400px;
    overflow: hidden;
}

.job-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.job-logo {
    width: 48px;
    height: 48px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.job-title-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.job-title-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.job-snippet {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.job-snippet ul {
    padding-left: 1.25rem;
    margin-top: 0.5rem;
}

.job-snippet li {
    margin-bottom: 0.25rem;
}

.job-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-card), transparent);
}

/* Demo Job Header (mirrors real app's job-header) */
.demo-job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.demo-job-left { flex: 1; min-width: 200px; }

.demo-job-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.demo-job-company {
    font-size: 0.9rem;
    color: var(--accent-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.demo-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}

.demo-job-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.demo-job-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

.demo-badge-salary { background: rgba(16,185,129,0.15); color: #10b981; }
.demo-badge-type   { background: rgba(102,126,234,0.15); color: var(--accent-primary); }
.demo-badge-location { background: var(--bg-secondary); color: var(--text-secondary); }

.demo-job-right {
    display: flex;
    align-items: center;
}

.demo-match-box {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0.65rem 0.9rem;
}

.demo-match-circle {
    --score: 87;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: conic-gradient(
        var(--accent-primary) calc(var(--score, 0) * 3.6deg),
        var(--bg-card) 0deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.demo-match-circle::before {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    background: var(--bg-secondary);
    border-radius: 50%;
}

.demo-match-value {
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.demo-match-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.demo-match-status {
    font-size: 0.82rem;
    font-weight: 600;
}

.demo-match-status.good { color: #10b981; }

/* Tab actions bar (mirrors real app) */
.demo-tab-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.demo-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: default;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-secondary);
}

/* Output Tabs — underline style matching real app */
.output-tabs {
    display: flex;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0;
}

.output-tabs::-webkit-scrollbar { display: none; }

.output-tab {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.7rem 0.5rem;
    background: var(--bg-secondary);
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.output-tab:not(:last-child) {
    border-right: 1px solid var(--border-color);
}

.output-tab:hover {
    color: var(--text-primary);
    background: rgba(102, 126, 234, 0.04);
}

.output-tab.active {
    color: var(--accent-primary);
    background: var(--bg-card);
    border-bottom-color: var(--accent-primary);
    font-weight: 600;
}

.output-content {
    padding: 1.5rem;
}

.output-panel {
    display: none;
}

.output-panel.active {
    display: block;
}

/* Job Analysis Preview */
.job-analysis-preview {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.analysis-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

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

.analysis-value {
    color: var(--text-primary);
    font-weight: 500;
}

.analysis-section {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.analysis-section h5 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    padding: 0.35rem 0.75rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--accent-primary);
}

/* Match Score Display */
.match-score-display {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.score-circle {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.score-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-circle .score-bg {
    fill: none;
    stroke: var(--bg-tertiary);
    stroke-width: 8;
}

.score-circle .score-fill {
    fill: none;
    stroke: var(--success);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease;
}

.score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--success);
    font-family: var(--font-mono);
}

.score-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.score-details {
    flex: 1;
}

.score-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.match-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.match-item.positive i {
    color: var(--success);
}

.match-item.neutral i {
    color: var(--warning);
}

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

/* Letter Preview */
.letter-preview {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.letter-preview p {
    margin-bottom: 1rem;
}

.letter-fade {
    color: var(--text-muted);
    font-style: italic;
}

.letter-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Tips List */
.tips-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tip-item {
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.tip-priority {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.tip-priority.high {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.tip-priority.medium {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.tip-item h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.tip-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Company Intel */
.company-intel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.intel-section {
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.intel-section h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.intel-section h5 i {
    color: var(--accent-primary);
}

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

/* Proof Section */
.section-proof {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.proof-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: transparent;
    border: none;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
}

.testimonial-stars {
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1.25rem;
    margin: 0 2px;
}

.testimonial-card blockquote {
    font-size: 1.2rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.author-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
}

.author-title {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Pricing Section */
.section-pricing {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.pricing-card {
    max-width: 450px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid var(--border-accent);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    text-align: center;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-primary);
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--success);
}

.pricing-extras {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-extra {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-extra i {
    color: var(--accent-primary);
    width: 20px;
    text-align: center;
}

.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-note a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* CTA Benefits */
.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cta-benefits span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.cta-benefits i {
    color: var(--success);
}

/* Tech Stack Bar (at top) */
.section-tech-bar {
    padding: 1rem 0;
    background: var(--bg-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.tech-bar-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-bar-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-bar-tags span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding: 0.25rem 0.5rem;
}

.tech-bar-tags span.highlight {
    color: var(--accent-primary);
}

.tech-bar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-base);
}

.tech-bar-link:hover {
    color: var(--text-primary);
}

/* Tech Stack Section (old - keeping for fallback) */
.section-tech {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 700px;
    margin: 0 auto;
}

.tech-tag {
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    transition: var(--transition-base);
}

.tech-tag:hover {
    border-color: var(--border-accent);
    color: var(--text-primary);
}

.tech-tag.highlight {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    color: var(--accent-primary);
}

.tech-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Agents Section */
.section-agents {
    padding: 8rem 0;
    background: var(--bg-primary);
}

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

.agent-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

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

.agent-card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    font-family: var(--font-mono);
}

.agent-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.agent-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.agent-card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.agent-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--accent-primary);
}

/* Workflow Section */
.section-workflow {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.workflow-step {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.step-connector {
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: calc(100% + 2rem);
    background: linear-gradient(to bottom, var(--accent-primary), transparent);
}

.workflow-step:last-child .step-connector {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--glow-accent);
}

.step-content {
    flex: 1;
    padding-top: 0.25rem;
}

.step-icon {
    display: none;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--accent-primary);
}

/* Workflow Diagram Full */
.workflow-diagram-full {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    overflow-x: auto;
}

.diagram-header {
    margin-bottom: 1.5rem;
}

.diagram-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.diagram-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.diagram-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    min-width: 80px;
}

.diagram-node i {
    font-size: 1.25rem;
    color: var(--accent-primary);
}

.diagram-node span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
}

.diagram-node.start {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
}

.diagram-node.end {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.diagram-node.end i {
    color: var(--success);
}

.diagram-arrow {
    color: var(--border-accent);
}

.diagram-gate {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.gate-diamond {
    width: 50px;
    height: 50px;
    background: var(--bg-tertiary);
    border: 1px solid var(--warning);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gate-diamond i {
    transform: rotate(-45deg);
    color: var(--warning);
}

.diagram-gate span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
}

.diagram-branch {
    display: flex;
    align-items: center;
}

.branch-yes {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.diagram-parallel {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.parallel-node {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

.parallel-node i {
    color: var(--accent-primary);
    font-size: 0.875rem;
}

.parallel-node span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* After Apply — on-demand agents */
.section-after-apply {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.after-apply-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* CLI section — open layout like other landing sections; only the code sample is boxed */
.section-cli {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.cli-strip-code {
    display: block;
    max-width: 36rem;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    background: #0a0a0f;
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: var(--radius-md);
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.6;
    overflow-x: auto;
    text-align: left;
}

.cli-strip-code code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    white-space: pre;
}

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

/* Features Section */
.section-features {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* Center the last row when 5 cards leave 2 on the bottom (desktop 3-col). */
@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .features-grid .feature-card {
        grid-column: span 2;
    }

    /* Exactly 5 cards: center Resume Advisor + Cover Letter Writer */
    .features-grid .feature-card:nth-child(4):nth-last-child(2) {
        grid-column: 2 / span 2;
    }

    .features-grid .feature-card:nth-child(5):last-child {
        grid-column: 4 / span 2;
    }
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
}

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

.feature-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon-wrap i {
    font-size: 1.25rem;
    color: var(--accent-primary);
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Extension Section — headline/body hierarchy matches `.hero-title` / `.hero-subtitle` */
.section-extension {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.section-extension .section-title {
    font-weight: 800;
    line-height: 1.15;
}

.section-extension .section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
}

.extension-features {
    margin: 2rem 0;
}

.ext-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.section-extension .ext-feature {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.ext-feature i {
    color: var(--success);
    flex-shrink: 0;
}

.extension-platforms {
    margin-top: 2rem;
}

.platform-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.platform-badge {
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Browser Mockup */
.extension-preview {
    display: flex;
    justify-content: center;
}

.browser-mockup {
    width: 100%;
    max-width: 450px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dots .red { background: #ff5f56; }
.browser-dots .yellow { background: #ffbd2e; }
.browser-dots .green { background: #27ca40; }

.browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.browser-url i {
    color: var(--success);
}

.browser-extension-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}

.browser-content {
    padding: 2rem;
    display: flex;
    justify-content: center;
    min-height: 250px;
    background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary));
}

.extension-popup {
    width: 280px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.popup-header i {
    color: var(--accent-primary);
}

.popup-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
}

.popup-status.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.popup-preview {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.popup-preview strong {
    display: block;
    margin-bottom: 0.25rem;
}

.popup-preview span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.popup-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent-gradient);
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-base);
}

.popup-btn:hover {
    filter: brightness(1.1);
}

/* Career Tools Section */
.section-tools {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.tools-grid {
    /* Using Bootstrap rows for 3x2 grid layout */
}

.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition-base);
    height: 100%;
}

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

.tool-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(124, 58, 237, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.tool-icon i {
    font-size: 1.25rem;
    color: var(--accent-secondary);
}

.tool-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

/* Extension Capture Demo */
.ext-capture-demo {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ext-job-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--accent-primary);
    border-radius: var(--radius-md);
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.15);
}

.ext-job-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.ext-job-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ext-job-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.ext-job-company {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.ext-capture-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-primary);
    width: fit-content;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.65; }
}

.ext-job-snippet {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.25rem;
}

.ext-snippet-line {
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--border-color);
    opacity: 0.6;
}

/* ── Popup mockup ── */
.popup-mockup {
    width: 320px;
    background: #0f0f17;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,212,255,0.08);
    font-family: var(--font-outfit);
    position: relative;
}

.pm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #1a1a24;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: relative;
}
.pm-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent-gradient);
}
.pm-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
}
.pm-logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    overflow: hidden;
    padding: 0;
}

.pm-logo-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.pm-status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px rgba(16,185,129,0.5);
}
.pm-user-card {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 14px 16px 10px;
    padding: 12px 14px;
    background: rgba(26,26,36,0.8);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
}
.pm-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}
.pm-user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.pm-user-name {
    font-weight: 600;
    font-size: 13px;
    color: #fff;
}
.pm-user-email {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
}
.pm-job-row {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 16px 12px;
    padding: 9px 13px;
    background: rgba(0,212,255,0.06);
    border: 1px solid rgba(0,212,255,0.15);
    border-radius: 10px;
    font-size: 12px;
}
.pm-job-icon { color: var(--accent-primary); font-size: 11px; }
.pm-job-label { color: rgba(255,255,255,0.55); }
.pm-job-source { color: var(--accent-primary); font-weight: 600; }
.pm-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 16px 10px;
    padding: 14px 24px;
    width: calc(100% - 32px);
    box-sizing: border-box;
    min-height: 50px;
    background: var(--accent-gradient);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    font-family: var(--font-outfit);
    border: none;
    border-radius: 12px;
    cursor: default;
}

.pm-btn i {
    font-size: 16px;
    flex-shrink: 0;
}
.pm-hint {
    text-align: center;
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    margin: -4px 16px 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pm-hint--wrap {
    white-space: normal;
    line-height: 1.35;
    margin-top: 2px;
    margin-bottom: 10px;
}

.pm-btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 16px 10px;
    padding: 14px 24px;
    width: calc(100% - 32px);
    box-sizing: border-box;
    min-height: 50px;
    font-weight: 600;
    font-size: 15px;
    font-family: var(--font-outfit);
    color: var(--accent-primary);
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.35);
    border-radius: 12px;
    cursor: default;
}

.pm-btn-outline i {
    font-size: 16px;
    flex-shrink: 0;
}

/* Decorative mock only — avoid native `disabled` dimming */
.pm-btn-outline.pm-btn-outline--mock {
    pointer-events: none;
}

.pm-links {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 4px;
    padding: 12px 16px 14px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.pm-links span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    padding: 6px 4px;
    border-radius: 8px;
}
.pm-links span i { font-size: 14px; }
.pm-footer {
    text-align: center;
    padding: 8px;
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    background: #1a1a24;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.ext-snippet-long  { width: 90%; }
.ext-snippet-medium { width: 65%; }
.ext-snippet-short  { width: 40%; }

/* Browser mockup dots */
.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27ca40; }

/* Footer GitHub link */
.footer-github {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-base);
    margin-bottom: 0.5rem;
}

.footer-github:hover {
    color: var(--accent-primary);
}

/* Tech Section */
.section-tech {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.tech-item:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
}

.tech-item i {
    font-size: 1.25rem;
    color: var(--accent-primary);
}

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

/* CTA Section */
.section-cta {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.cta-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 4rem;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.1;
}

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

.cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

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

.footer-brand .brand-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

.footer-brand .brand-text {
    font-size: 1.25rem;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-base);
    min-width: 80px;
    text-align: center;
}

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

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

.footer-meta .version {
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up.animate-visible,
.hero-section .animate-fade-up {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* Responsive */
@media (max-width: 1199px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .code-preview {
        display: none;
    }
    
    .nav-cta {
        margin-top: 1rem;
        flex-direction: column;
        width: 100%;
    }
    
    .nav-cta .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .agents-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-grid .feature-card {
        grid-column: auto;
    }
    
    .workflow-diagram-full {
        padding: 1rem;
    }
    
    .diagram-content {
        flex-direction: column;
    }
    
    .diagram-arrow {
        transform: rotate(90deg);
    }
    
    .branch-yes {
        flex-direction: column;
    }
    
    .section-extension .row {
        flex-direction: column-reverse;
    }
    
    .extension-preview {
        margin-bottom: 2rem;
    }

    .ss-tab span {
        display: none;
    }

    .ss-tab {
        padding: 0.6rem 0.9rem;
        font-size: 0.9rem;
    }

    .ss-url-bar span {
        display: none;
    }

    .ss-panels {
        max-height: 340px;
    }
    
    .cta-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .tools-grid {
        /* Bootstrap handles responsive layout */
    }
    
    .ext-capture-demo {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-section {
        padding-top: 80px;
    }

    .navbar-brand .brand-text {
        font-size: 1.1rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .section-tag {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-card {
        padding: 1.5rem;
    }

    .cta-card h2 {
        font-size: 1.5rem;
    }
}

