/* --- DRAG & DROP EDITOR PAGE STYLES --- */

/* Utility */
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.responsive-img { max-width: 100%; height: auto; display: block; }
.drop-shadow-glow { box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 40px rgba(0, 123, 255, 0.15); border-radius: 12px; }

/* --- Editor Hero Adjustments --- */
.editor-hero {
    padding: 10rem 0 6rem; /* Extra top padding to clear header */
}

.editor-hero .hero-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    line-height: 1.7;
}

/* --- Interactive Editor Window Mockup --- */
.editor-glass-window {
    background: rgba(13, 17, 22, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8), inset 0 0 30px rgba(255,255,255,0.02);
}

.window-header {
    background: rgba(5, 6, 8, 0.8);
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.window-header .dot {
    width: 12px; height: 12px; border-radius: 50%;
}
.window-header .close { background: #ff5f56; }
.window-header .min { background: #ffbd2e; }
.window-header .max { background: #27c93f; }

.window-title {
    flex: 1; text-align: center; font-family: monospace;
    font-size: 0.8rem; color: #8b949e; letter-spacing: 0.5px;
}

.window-body {
    position: relative;
    padding: 0; /* Image goes edge to edge inside body */
}

/* Floating Elements simulating drag action */
.floating-drag-item {
    position: absolute;
    background: rgba(0, 123, 255, 0.15);
    border: 1px solid var(--primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5), 0 0 15px var(--primary-glow);
    animation: floatDrag 5s ease-in-out infinite;
    cursor: grab;
    backdrop-filter: blur(4px);
}

.floating-drag-item iconify-icon { font-size: 1.2rem; }

.item-button { top: 20%; left: -5%; }
.item-image { bottom: 15%; right: -3%; }
.item-progress { top: 40%; right: -6%; }

.delay-1 { animation-delay: 0s; }
.delay-2 { animation-delay: 1.5s; }
.delay-3 { animation-delay: 3s; }

@keyframes floatDrag {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, -15px) scale(1.05); }
}

/* --- Workflow Grid (1, 2, 3 Steps) --- */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.workflow-step {
    position: relative;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.workflow-step:hover {
    background: rgba(0, 123, 255, 0.05);
    border-color: rgba(0, 123, 255, 0.3);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 10px;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    transition: color 0.3s ease;
    z-index: 0;
}

.workflow-step:hover .step-number {
    color: rgba(0, 123, 255, 0.05);
}

.step-icon {
    position: relative;
    z-index: 1;
    width: 60px; height: 60px;
    background: var(--bg-surface);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--primary);
    margin-bottom: 1.5rem;
    box-shadow: inset 0 0 15px rgba(0, 123, 255, 0.1);
}

.workflow-step h3, .workflow-step p {
    position: relative;
    z-index: 1;
}

.workflow-step h3 { font-size: 1.3rem; margin-bottom: 0.8rem; color: #fff; }
.workflow-step p { font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* --- Split Layout for Cloud Section --- */
.split-layout {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.split-layout.align-center {
    align-items: center;
}

.split-text { flex: 1; min-width: 300px; }
.split-visual { flex: 1; min-width: 300px; text-align: center; }

.split-text h2 { font-size: 2.5rem; margin-bottom: 1.2rem; }
.split-text p { font-size: 1.05rem; line-height: 1.7; }

.feature-list {
    list-style: none; padding: 0; margin: 0;
}

.feature-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 1rem; color: #fff; margin-bottom: 0.8rem;
}

.feature-list iconify-icon {
    color: var(--primary); font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(0, 123, 255, 0.5));
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .workflow-grid { grid-template-columns: 1fr; }
    .split-layout { flex-direction: column; text-align: center; }
    .feature-list li { justify-content: center; }
    .item-button, .item-image, .item-progress { display: none; } /* Hide floaters on tablet/mobile for clean UI */
}

@media (max-width: 768px) {
    .editor-hero { padding: 8rem 0 4rem; }
    .hero-title { font-size: 2.2rem; }
    .split-text h2 { font-size: 2rem; }
}

/* --- DRAG & DROP EDITOR PAGE STYLES --- */

/* Utility */
.justify-center { display: flex; justify-content: center; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.w-100 { width: 100%; }
.responsive-img { max-width: 100%; height: auto; display: block; }

/* --- Editor Hero Stacked Layout --- */
.editor-hero {
    padding: 10rem 0 6rem;
    position: relative;
}
.hero-top { margin-bottom: 3rem; }

/* Massive Homepage-Style Header */
.hero-title-massive {
    font-size: clamp(3rem, 6vw, 4.8rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.hero-bottom { max-width: 800px; margin: 0 auto; position: relative; z-index: 10; }
.editor-hero .hero-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Full Width Interactive Window Mockup */
.editor-hero-visual {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.editor-glass-window {
    background: rgba(13, 17, 22, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), inset 0 0 30px rgba(255,255,255,0.02);
}

.window-header {
    background: rgba(5, 6, 8, 0.8);
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.window-header .dot { width: 12px; height: 12px; border-radius: 50%; }
.window-header .close { background: #ff5f56; }
.window-header .min { background: #ffbd2e; }
.window-header .max { background: #27c93f; }

.window-title {
    flex: 1; text-align: center; font-family: monospace;
    font-size: 0.8rem; color: #8b949e; letter-spacing: 0.5px;
}

.window-body { position: relative; padding: 0; }

/* Floating Drag Items */
.floating-drag-item {
    position: absolute;
    background: rgba(0, 123, 255, 0.15);
    border: 1px solid var(--primary);
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5), 0 0 15px var(--primary-glow);
    animation: floatDrag 5s ease-in-out infinite;
    cursor: grab;
    backdrop-filter: blur(8px);
    z-index: 10;
}
.floating-drag-item iconify-icon { font-size: 1.3rem; }

.item-button { top: 25%; left: -2%; }
.item-image { bottom: 15%; right: -2%; }
.item-progress { top: 10%; right: 15%; }

.delay-1 { animation-delay: 0s; }
.delay-2 { animation-delay: -1.5s; }
.delay-3 { animation-delay: -3s; }

@keyframes floatDrag {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, -15px) scale(1.03); }
}

/* --- Workflow Section (Transparent Background to show Starfield) --- */
.workflow-section.has-dividers {
    background: var(--bg-subtle); /* Apply the subtle tint */
    backdrop-filter: blur(2px);   /* Very slight blur so stars are visible but text is hyper-readable */
    -webkit-backdrop-filter: blur(2px);
    position: relative;
    padding: 7rem 0;
}

/* Glowing Line Dividers */
.section-divider {
    position: absolute; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.4);
    z-index: 1;
}
.top-divider { top: 0; }
.bottom-divider { bottom: 0; }

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.workflow-step {
    position: relative;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03); /* Keep them slightly lighter for depth */
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.workflow-step:hover {
    background: rgba(0, 123, 255, 0.05);
    border-color: rgba(0, 123, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.step-number {
    position: absolute;
    top: -15px; right: 10px;
    font-size: 8rem; font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    transition: color 0.3s ease;
    z-index: 0;
}
.workflow-step:hover .step-number { color: rgba(0, 123, 255, 0.05); }

.step-icon {
    position: relative; z-index: 1;
    width: 60px; height: 60px;
    background: var(--bg-base);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--primary);
    margin-bottom: 1.5rem;
    box-shadow: inset 0 0 15px rgba(0, 123, 255, 0.1);
}

.workflow-step h3, .workflow-step p { position: relative; z-index: 1; }
.workflow-step h3 { font-size: 1.3rem; margin-bottom: 0.8rem; color: #fff; }
.workflow-step p { font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* --- Step 4: Huge Custom CSS Card --- */
.step-4-card {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding: 4rem;
    background: #0a0c10; /* Solid dark background per your screenshot */
    border: 1px solid var(--border-color);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.step-number-watermark {
    position: absolute;
    top: -15%; right: 10%;
    font-size: 22rem; 
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.step-4-content { flex: 1; position: relative; z-index: 2; }
.step-4-visual { flex: 1.2; position: relative; z-index: 2; }

.step-4-title { font-size: 2.2rem; margin-bottom: 1rem; color: #fff; }

.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 1rem; color: var(--text-muted); margin-bottom: 1rem;
}
.feature-list iconify-icon {
    color: var(--primary); font-size: 1.3rem;
    filter: drop-shadow(0 0 5px rgba(0, 123, 255, 0.4));
}

/* Developer CSS Syntax Mockup */
.mock-code-block {
    background: #050608;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.code-header {
    background: rgba(255,255,255,0.03);
    padding: 12px 15px;
    display: flex; align-items: center; gap: 8px;
    font-family: monospace; font-size: 0.8rem; color: #8b949e;
}
.code-header .dot { width: 12px; height: 12px; border-radius: 50%; }
.code-header .close { background: #ff5f56; }
.code-header .min { background: #ffbd2e; }
.code-header .max { background: #27c93f; }
.code-header span:last-child { margin-left: 15px; }

.code-body {
    padding: 2rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Matching your exact screenshot colors */
.code-selector { color: #ff7b72; } 
.code-prop { color: #79c0ff; }
.code-val { color: #e6edf3; } 
.indent { padding-left: 1.5rem; }

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .step-4-card { flex-direction: column; padding: 3rem; gap: 3rem; }
    .step-4-visual { width: 100%; }
    .step-number-watermark { font-size: 15rem; top: 0; right: 0; }
}
@media (max-width: 992px) {
    .workflow-grid { grid-template-columns: 1fr; }
    .item-button, .item-image, .item-progress { display: none; }
}
@media (max-width: 768px) {
    .editor-hero { padding: 8rem 0 4rem; }
    .hero-title-massive { font-size: 2.8rem; }
    .step-4-card { padding: 2rem; }
}

/* --- CREATIVE FLEXIBILITY SHOWCASE (Non-Bento Layout) --- */

.creative-flexibility-section {
    position: relative;
    padding: 6rem 0;
    z-index: 10;
}

.showcase-layout-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Base Card Styling - Luxurious and Spacious */
.showcase-card {
    background: rgba(13, 17, 22, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px; /* Larger, softer corners */
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.showcase-card:hover {
    background: rgba(13, 17, 22, 0.8);
    border-color: rgba(0, 123, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 0 30px rgba(0, 123, 255, 0.05);
    transform: translateY(-5px);
}

/* Massive Typography for Headers */
.massive-card-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.showcase-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.showcase-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px; height: 60px;
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 16px;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.showcase-card:hover .showcase-icon {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px var(--primary-glow);
}

/* --- Banner Card (Full Width) --- */
.banner-card {
    display: flex;
    align-items: center;
    padding: 5rem;
    gap: 5rem;
}

.banner-card .showcase-content {
    flex: 1.2;
}

.banner-card .showcase-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* --- Split Grid (50/50 Layout) --- */
.showcase-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.split-card {
    display: flex;
    flex-direction: column;
}

.split-card .showcase-content {
    padding: 3rem;
    flex: 1;
}

.split-card .showcase-visual.visual-top {
    height: 250px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* --- ANIMATIONS & VISUALS --- */

/* 1. Template Stack Animation (From previous iteration) */
.mock-template-stack { position: relative; width: 220px; height: 140px; }
.mock-template {
    position: absolute; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.05);
    background: #0d1116; box-shadow: 0 10px 20px rgba(0,0,0,0.5); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.t-back { inset: 0; transform: translateY(-20px) scale(0.85); opacity: 0.3; background: #1a1e24; }
.t-mid { inset: 0; transform: translateY(-10px) scale(0.95); opacity: 0.6; background: #14181d; }
.t-front {
    inset: 0; transform: translateY(0) scale(1.05); opacity: 1;
    background: rgba(13, 17, 22, 0.95); border-color: rgba(0, 123, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0,0,0,0.8), 0 0 20px rgba(0,123,255,0.2);
    display: flex; flex-direction: column; padding: 12px; gap: 8px;
}
.mt-header { height: 30px; background: rgba(255,255,255,0.05); border-radius: 4px; border: 1px dashed rgba(255,255,255,0.1); }
.mt-body { flex: 1; background: rgba(0,123,255,0.1); border-radius: 4px; }
.mt-footer { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.mt-progress { flex: 1; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; }
.mt-btn { height: 18px; width: 50px; background: var(--primary); border-radius: 4px; box-shadow: 0 0 8px rgba(0, 123, 255, 0.4); }

.banner-card:hover .t-back { transform: translateY(-35px) scale(0.85) translateX(-30px) rotate(-8deg); opacity: 0.7; border-color: rgba(255,255,255,0.15); }
.banner-card:hover .t-mid { transform: translateY(-15px) scale(0.95) translateX(30px) rotate(6deg); opacity: 0.9; border-color: rgba(255,255,255,0.15); }
.banner-card:hover .t-front { transform: translateY(10px) scale(1.1); box-shadow: 0 25px 50px rgba(0,0,0,0.9), 0 0 30px rgba(0,123,255,0.3); }

/* 2. Custom Artwork Dropzone Animation */
.mock-dropzone {
    width: 180px; height: 120px;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 12px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.drop-dashed-border {
    position: absolute; inset: 0;
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 12px;
    transition: all 0.4s ease;
}
.floating-file {
    font-size: 3rem; color: #8b949e;
    transition: all 0.4s ease;
    transform: translateY(0);
}

.split-card:hover .drop-dashed-border {
    border-color: var(--primary);
    background: rgba(0, 123, 255, 0.1);
}
.split-card:hover .floating-file {
    color: #fff;
    filter: drop-shadow(0 0 10px var(--primary-glow));
    animation: fileDrop 1.5s infinite;
}

@keyframes fileDrop {
    0% { transform: translateY(-15px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* 3. Cloud Grid Animation */
.mock-cloud-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    position: relative;
}
.cloud-item {
    width: 60px; height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    transition: all 0.4s ease;
}
.cloud-magnify {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 3.5rem; color: rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    pointer-events: none;
}

.split-card:hover .ci-1 { transform: translate(-10px, -10px); border-color: var(--primary); background: rgba(0, 123, 255, 0.2); }
.split-card:hover .ci-2 { transform: translate(10px, -10px); }
.split-card:hover .ci-3 { transform: translate(-10px, 10px); }
.split-card:hover .ci-4 { transform: translate(10px, 10px); border-color: var(--primary); background: rgba(0, 123, 255, 0.2); }
.split-card:hover .cloud-magnify {
    color: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
    filter: drop-shadow(0 0 15px var(--primary-glow));
}

/* --- Responsive Layout Adjustments --- */
@media (max-width: 992px) {
    .banner-card { flex-direction: column; padding: 3rem; gap: 3rem; text-align: center; }
    .showcase-split-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .massive-card-title { font-size: 1.8rem; }
    .banner-card { padding: 2rem; }
    .split-card .showcase-content { padding: 2rem; }
}

/* --- CLOUD TO NATIVE SECTION --- */

/* Reuse the massive title sizing for consistency */
.cloud-native-section .massive-card-title {
    margin-bottom: 1.5rem;
}

/* Pure CSS Cloud Compiler Animation */
.mock-compiler-window {
    background: rgba(13, 17, 22, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 0 20px rgba(0, 123, 255, 0.05);
    overflow: hidden;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.compiler-header {
    background: rgba(5, 6, 8, 0.9);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: monospace;
    font-size: 0.8rem;
}

.compiler-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #27c93f;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.status-dot.pulsing {
    width: 8px; height: 8px;
    background: #27c93f;
    border-radius: 50%;
    box-shadow: 0 0 10px #27c93f;
    animation: blink 1.5s infinite;
}

.compiler-title {
    color: #8b949e;
}

.compiler-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.compile-target {
    display: flex;
    align-items: center;
    gap: 15px;
}

.target-icon {
    font-size: 1.8rem;
    color: #fff;
    width: 30px;
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.2));
}

.compile-track {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

.compile-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
    box-shadow: 0 0 15px var(--primary-glow);
    position: relative;
}

/* Add a glowing bright leading edge to the progress bars */
.compile-fill::after {
    content: '';
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 20px;
    background: linear-gradient(90deg, transparent, #fff);
    opacity: 0.5;
}

.target-ext {
    font-family: monospace;
    color: var(--primary);
    font-weight: bold;
    font-size: 0.9rem;
    width: 45px;
    text-align: left;
}

/* Animations for the compile bars */
.win-fill { animation: compileLoad 4s ease-in-out infinite; }
.mac-fill { animation: compileLoad 4.5s ease-in-out infinite; animation-delay: 1s; }
.lin-fill { animation: compileLoad 3.5s ease-in-out infinite; animation-delay: 2s; }

@keyframes compileLoad {
    0% { width: 0%; }
    40% { width: 70%; }
    60% { width: 70%; } /* Pauses briefly as if 'processing' */
    90% { width: 100%; }
    100% { width: 100%; }
}

/* --- Bottom CTA Section --- */
.section-footer-cta {
    margin-top: 6rem;
    padding-top: 5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

/* Subtle upward glow from the border */
.section-footer-cta::before {
    content: '';
    position: absolute; top: 0; left: 50%;
    transform: translateX(-50%);
    width: 300px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.4);
}

.section-footer-cta .btn-lg {
    padding: 1rem 2.5rem;
    border-radius: 8px;
}

/* Mobile Adjustments for Cloud section */
@media (max-width: 992px) {
    .cloud-native-section .split-layout { flex-direction: column; text-align: center; }
    .cloud-native-section .feature-list li { justify-content: center; }
    .target-ext { text-align: center; }
}

/* Padding helper for the internal split layout */
.py-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* The semi-transparent background wrapper */
.cloud-content-bg {
    background: rgba(10, 12, 16, 0.4); /* Same subtle tint as Deployment section */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    width: 100%;
}

/* Removes the top border from the CTA since the wrapper above has one */
.section-footer-cta {
    border-top: none;
    margin-top: 6rem;
    padding-bottom: 4rem;
}