:root {
    --bg-dark: #0A0A0C;
    --card-bg: rgba(21, 21, 26, 0.7);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #FFFFFF;
    --text-sec: #8E8E93;

    --accent-green: #30D158;
    --accent-blue: #0A84FF;
    --accent-red: #FF453A;
    --accent-purple: #BF5AF2;

    --font-heading: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'Menlo', 'Monaco', 'Courier New', monospace;
}

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

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

/* Background Grid & Blobs */
.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    mask-image: linear-gradient(to bottom, black 20%, transparent 80%);
    -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 80%);
}

.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.15;
    animation: float 20s infinite alternate;
}

.blob-1 {
    top: 10%;
    right: 10%;
    width: 600px;
    height: 600px;
    background-color: var(--accent-blue);
}

.blob-2 {
    bottom: -10%;
    left: -10%;
    width: 800px;
    height: 800px;
    background-color: var(--accent-green);
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-50px, 50px) scale(1.1);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
}

.logo-img {
    height: 32px;
    width: 32px;
}

.logo-text .accent {
    color: var(--accent-green);
}

.nav-links a {
    color: var(--text-sec);
    text-decoration: none;
    margin-right: 2rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-dark);
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Generic Section styling */
section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header .accent {
    color: var(--accent-green);
}

.section-header p {
    color: var(--text-sec);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 10rem;
    gap: 4rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(48, 209, 88, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(48, 209, 88, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(90deg, #FFFFFF, var(--text-sec));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: var(--text-sec);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

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

.arrow {
    transition: transform 0.3s;
}

.btn-primary:hover .arrow {
    transform: translateX(5px);
}

/* Glass Card & Mockup */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.mockup {
    width: 100%;
    max-width: 600px;
    text-align: left;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mockup-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.dots {
    display: flex;
    gap: 6px;
    margin-right: 1rem;
}

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

.dots span:nth-child(1) {
    background: #FF5F56;
}

.dots span:nth-child(2) {
    background: #FFBD2E;
}

.dots span:nth-child(3) {
    background: #27C93F;
}

.mockup-title {
    color: var(--text-sec);
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 600;
    flex-grow: 1;
    text-align: center;
    margin-right: 48px;
    /* balance out the dots for center alignment */
}

/* CustomTkinter App Replica */
.mockup-app-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #1C1C1E;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    text-align: left;
    font-family: var(--font-body);
}

.app-header {
    font-family: var(--font-heading);
    color: #98989D;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.app-section-title {
    font-family: var(--font-heading);
    color: #EBEBF5;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 1.5rem 0 0.8rem 0;
}

.app-left .app-section-title:first-of-type {
    margin-top: 0;
}

.app-buttons {
    display: flex;
    gap: 0.5rem;
}

.app-btn {
    flex: 1;
    text-align: center;
    padding: 0.6rem 0;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFF;
}

.btn-start {
    background: #28C840;
}

.btn-stop {
    background: #FF3B30;
}

.btn-eject {
    background: #3A3A3C;
    color: #EBEBF5;
}

.app-card {
    background: #2C2C2E;
    border-radius: 6px;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
}

.card-top {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.3rem;
}

.card-check {
    width: 18px;
    height: 18px;
    background: #0A84FF;
    border-radius: 3px;
    color: white;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.card-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: #FFF;
    flex-grow: 1;
}

.green-badge {
    background: #30D158;
    color: #1C1C1E;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.card-eject-btn {
    background: #3A3A3C;
    color: #EBEBF5;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    cursor: pointer;
}

.card-bot {
    margin-left: 28px;
    color: #636366;
    font-size: 0.75rem;
}

/* Settings Box */
.app-settings-box {
    background: #2C2C2E;
    border-radius: 6px;
    padding: 0.8rem;
}

.input-row {
    background: #1C1C1E;
    border: 1px solid #3A3A3C;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    color: #EBEBF5;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.sub-text {
    font-size: 0.75rem;
    color: #636366;
}

/* Right Column */
.app-right .app-section-title:first-child {
    margin-top: 0;
}

.app-monitor {
    background: #2C2C2E;
    border-radius: 6px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mon-label {
    font-size: 0.75rem;
    color: #98989D;
    margin-bottom: 0.2rem;
}

.mon-val {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #FFF;
}

.mon-unit {
    font-size: 1rem;
    color: #98989D;
}

.mon-right {
    width: 50%;
    text-align: right;
}

.mon-pct {
    font-size: 2rem;
    font-weight: 800;
    color: #0A84FF;
    font-family: var(--font-heading);
    margin-bottom: 0.2rem;
}

.mon-bar {
    height: 6px;
    background: #1C1C1E;
    border-radius: 3px;
    overflow: hidden;
}

.mon-fill {
    height: 100%;
    background: #0A84FF;
    border-radius: 3px;
    width: 42%;
}

.app-task-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.app-task {
    background: #2C2C2E;
    border-radius: 6px;
    padding: 0.8rem;
}

.task-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.t-name {
    color: #FFF;
}

.t-status {
    color: #98989D;
}

.t-bar {
    height: 6px;
    background: #1C1C1E;
    border-radius: 3px;
    overflow: hidden;
}

.t-fill {
    height: 100%;
    background: #0A84FF;
    border-radius: 3px;
    width: 0%;
}

.app-log {
    background: #000;
    border-radius: 6px;
    padding: 0.8rem;
    font-family: var(--font-mono);
    margin-top: 0.2rem;
}

.log-head {
    font-size: 0.8rem;
    color: #98989D;
    margin-bottom: 0.5rem;
}

.log-body {
    background: #000;
    border-radius: 4px;
    padding: 0.8rem;
    font-size: 0.75rem;
    color: #FFF;
    line-height: 1.5;
}

.log-blink {
    animation: blink 1s step-end infinite;
}

/* Animations */
.glow-fill {
    animation: fillWidth 5s ease-in-out infinite alternate, glowBlue 2s infinite alternate;
}

.anim-fill {
    animation: fillWidth 5s ease-in-out infinite;
}

.pulse-text {
    animation: pulseOpacity 1.5s infinite;
}

@keyframes fillWidth {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes glowBlue {
    0% {
        box-shadow: 0 0 5px #0A84FF;
    }

    100% {
        box-shadow: 0 0 15px #0A84FF;
    }
}

@keyframes pulseOpacity {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

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

/* Changelog Styles */
.changelog-section {
    padding-top: 4rem;
}

.changelog-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
}

.cl-ver {
    width: 120px;
    flex-shrink: 0;
}

.cl-badge {
    display: inline-block;
    background: rgba(48, 209, 88, 0.15);
    color: var(--accent-green);
    border: 1px solid rgba(48, 209, 88, 0.3);
    padding: 4px 10px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cl-date {
    color: var(--text-sec);
    font-size: 0.85rem;
    font-family: var(--font-mono);
}

.cl-content {
    flex-grow: 1;
}

.cl-list {
    list-style: none;
}

.cl-list li {
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.cl-tag {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
    margin-top: 2px;
}

.tag-new {
    background: #0A84FF;
    color: white;
}

.tag-fix {
    background: #FF9500;
    color: white;
}

@media (max-width: 768px) {
    .changelog-container {
        flex-direction: column;
        gap: 1rem;
    }

    .cl-ver {
        width: auto;
    }
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

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

/* Workflow Section (Vertical Stack for now, can be complex in future) */
.workflow-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-sec);
}

/* Specs / Terminal */
.spec-terminal {
    font-family: var(--font-mono);
    font-size: 0.95rem;
}

.terminal-header {
    background: rgba(0, 0, 0, 0.5);
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-sec);
}

.terminal-body {
    padding: 1.5rem;
    background: rgba(10, 10, 12, 0.8);
}

.term-line {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.term-line .cmd {
    color: var(--accent-green);
    margin-right: 0.5rem;
}

.blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-logo-img {
    height: 24px;
    width: 24px;
}

.copyright {
    color: var(--text-sec);
    font-size: 0.9rem;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.reveal-delay {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.reveal-delay.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================================
   Conversion Sections (Use Cases, Benchmarks, Pricing, FAQ)
   ============================================================================ */

/* Use Cases */
.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.use-case-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s;
}

.use-case-card:hover {
    transform: translateY(-5px);
}

.uc-emoji {
    font-size: 3rem;
}

.uc-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.uc-content p {
    color: var(--text-sec);
    line-height: 1.6;
}

/* Benchmarks */
.benchmark-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.bench-desc h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.bench-desc p {
    color: var(--text-sec);
}

.bench-chart {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.b-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.b-bar-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.b-bar {
    height: 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
}

.b-finder {
    background: var(--accent-red);
}

.b-pgo {
    background: var(--accent-green);
    box-shadow: 0 0 10px rgba(48, 209, 88, 0.5);
}

.b-time {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-sec);
    white-space: nowrap;
}

/* Pricing Matrix */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.pro {
    border-color: var(--accent-green);
    background: rgba(48, 209, 88, 0.03);
    box-shadow: 0 10px 30px rgba(48, 209, 88, 0.1);
}

.pro-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-green);
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.p-head {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.p-head h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.p-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.p-period {
    font-size: 1rem;
    color: var(--text-sec);
    font-weight: 400;
}

.p-head p {
    color: var(--text-sec);
    font-size: 0.9rem;
}

.p-body {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.p-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.p-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.p-features li.disabled {
    color: var(--text-sec);
}

.icon-check {
    color: var(--accent-green);
    font-style: normal;
    font-weight: bold;
}

.icon-x {
    color: var(--accent-red);
    font-style: normal;
    font-weight: bold;
}

.p-foot {
    margin-top: auto;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.faq-q {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.faq-a {
    color: var(--text-sec);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================================================
   Automation Showcase (Workflow Animations)
   ============================================================================ */
.showcase-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.showcase-arrow {
    color: var(--text-sec);
    animation: bounceRight 2s infinite;
}

@keyframes bounceRight {

    0%,
    100% {
        transform: translateX(0);
        color: var(--text-sec);
    }

    50% {
        transform: translateX(10px);
        color: var(--accent-green);
    }
}

/* Panel 1: Processing */
.visual-panel {
    width: 100%;
    max-width: 400px;
    flex: 1 1 300px;
    background: #1C1C1E;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
}

.v-panel-header {
    background: #2C2C2E;
    padding: 1rem;
    border-bottom: 1px solid #3A3A3C;
}

.v-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFF;
}

.v-panel-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.anim-task {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.at-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-family: var(--font-mono);
}

.at-name {
    color: #EBEBF5;
}

.at-speed {
    color: #0A84FF;
    font-weight: bold;
}

.at-bar-bg {
    height: 6px;
    background: #2C2C2E;
    border-radius: 3px;
    overflow: hidden;
}

.at-bar-fill {
    height: 100%;
    background: #0A84FF;
    border-radius: 3px;
    width: 0%;
}

.v-panel-footer {
    padding: 1rem;
    background: #151515;
    border-top: 1px solid #3A3A3C;
}

/* Panel 2: Finder Mockup */
.visual-finder {
    width: 100%;
    max-width: 400px;
    flex: 1 1 300px;
    background: #1E1E1E;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
}

.finder-layout {
    display: flex;
    min-height: 250px;
}

.finder-sidebar {
    width: 140px;
    background: rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.fs-item {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    color: #98989D;
    cursor: default;
}

.fs-item.active {
    background: rgba(10, 132, 255, 0.2);
    color: #FFF;
}

.finder-body {
    flex-grow: 1;
    padding: 1rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.f-row {
    padding: 0.4rem;
    border-radius: 4px;
    margin-bottom: 2px;
}

.f-header {
    color: #98989D;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
}

.f-col-name {
    color: #EBEBF5;
}

.f-parent {
    font-weight: bold;
    background: rgba(255, 255, 255, 0.05);
}

.f-child {
    margin-left: 1.5rem;
}

/* Animations Keyframes */
.fill-1 {
    animation: loadBar 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.fill-2 {
    animation: loadBar 6s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.2s;
    background: #BF5AF2;
}

.fill-3 {
    animation: loadBar 6s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.5s;
    background: #FF9500;
}

.fill-4 {
    animation: loadBar 6s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.8s;
    background: #30D158;
}

@keyframes loadBar {
    0% {
        width: 0%;
    }

    50% {
        width: 100%;
    }

    100% {
        width: 100%;
    }
}

.anim-pop-1 {
    animation: staggeredFade 6s infinite 2.5s;
    opacity: 0;
}

.anim-pop-2 {
    animation: staggeredFade 6s infinite 2.8s;
    opacity: 0;
}

.anim-pop-3 {
    animation: staggeredFade 6s infinite 3.1s;
    opacity: 0;
}

.anim-pop-4 {
    animation: staggeredFade 6s infinite 3.4s;
    opacity: 0;
}

.anim-pop-5 {
    animation: staggeredFade 6s infinite 3.8s;
    opacity: 0;
}

@keyframes staggeredFade {

    0%,
    10% {
        opacity: 0;
        transform: translateX(-10px);
    }

    15%,
    85% {
        opacity: 1;
        transform: translateX(0);
    }

    90%,
    100% {
        opacity: 0;
        transform: translateX(-10px);
    }
}

/* Panel 3: Verify & Eject Animation */
.visual-verify {
    background: #1C1C1E;
    border: 1px solid var(--accent-green);
    box-shadow: 0 10px 30px rgba(48, 209, 88, 0.1);
    border-radius: 12px;
}

.verify-icon {
    animation: popScale 6s infinite;
}

@keyframes popScale {

    0%,
    55% {
        transform: scale(0.5);
        opacity: 0;
        filter: grayscale(1);
    }

    60%,
    95% {
        transform: scale(1);
        opacity: 1;
        filter: grayscale(0);
    }

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

.e-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-family: var(--font-mono);
    color: var(--text-sec);
}

.anim-eject-1 {
    animation: ejectUp 6s infinite 4.2s;
    opacity: 1;
}

.anim-eject-2 {
    animation: ejectUp 6s infinite 4.4s;
    opacity: 1;
}

.anim-eject-3 {
    animation: ejectUp 6s infinite 4.6s;
    opacity: 1;
}

.anim-eject-4 {
    animation: ejectUp 6s infinite 4.8s;
    opacity: 1;
}

@keyframes ejectUp {

    0%,
    5% {
        transform: translateY(0);
        opacity: 1;
        border-color: rgba(255, 255, 255, 0.1);
        color: var(--text-sec);
    }

    15%,
    85% {
        transform: translateY(-30px);
        opacity: 0;
        border-color: var(--accent-green);
        color: var(--accent-green);
    }

    100% {
        transform: translateY(0);
        opacity: 1;
        border-color: rgba(255, 255, 255, 0.1);
        color: var(--text-sec);
    }
}

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

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

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

    .benchmark-container {
        grid-template-columns: 1fr;
    }

    section {
        padding: 4rem 1.5rem;
    }
}