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

:root {
    --primary: #6366f1;
    --primary-light: #a5b4fc;
    --bg: #f8fafc;
    --bg-white: #ffffff;
    --text: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    font-size: 16px;
}

/* Language Switcher */
.lang-switcher {
    position: fixed;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.3rem 0.5rem;
    box-shadow: var(--shadow);
    z-index: 1000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.lang-btn {
    background: none;
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.lang-flag {
    font-size: 0.95rem;
    line-height: 1;
}

.lang-btn:hover {
    color: var(--primary);
}

.lang-btn.active {
    background: var(--gradient);
    color: white;
}

.lang-divider {
    color: var(--border);
    font-size: 0.8rem;
    user-select: none;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 5rem 2rem 1rem;
    max-width: 780px;
    margin: 0 auto;
}

.hero-product {
    font-size: 4.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-headline {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.hero-pain,
.hero-pitch {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.6;
    max-width: 600px;
    text-align: left;
    margin-left: auto;
    margin-right: -3rem;
}

.hero-pain {
    margin-bottom: 1.25rem;
}

.hero-pitch {
    margin-bottom: 1.5rem;
}

.hero-features {
    list-style: none;
    max-width: 600px;
    margin: 0 -3rem 2.5rem auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
}

.hero-features li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.6;
}

.hero-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.15));
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 1px;
}

.hero-feature-icon i {
    width: 18px;
    height: 18px;
}

.brand-highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.cta-badge {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* CTA Button */
.cta-section {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--gradient);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.25rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.5);
    text-decoration: none;
}

.cta-button.hero-cta {
    display: flex;
    justify-content: center;
    max-width: 1400px;
    width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
    padding: 1.25rem 2.5rem;
    border-radius: 16px;
}

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

.cta-button:hover {
    box-shadow: 0 20px 50px -10px rgba(99, 102, 241, 0.6);
}

.cta-button i {
    width: 24px;
    height: 24px;
}

.cta-section.bottom {
    padding-bottom: 4rem;
}

.cta-section.bottom .cta-button {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Examples Marquee */
.examples-marquee {
    overflow: hidden;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    white-space: nowrap;
    transition: border-color 0.2s, color 0.2s;
}

.marquee-item:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

.marquee-item i {
    width: 24px;
    height: 24px;
    color: #FF0000;
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Section */
.how-it-works {
    padding: 3rem 2rem 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4rem;
}

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.step {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: 3rem;
    align-items: start;
}

.step:nth-child(even) {
    direction: rtl;
}

.step:nth-child(even) > * {
    direction: ltr;
}

/* Step Number */
.step-number-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.5);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient);
    border-radius: 27px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

.step-connector {
    width: 3px;
    height: 100px;
    background: linear-gradient(180deg, var(--primary-light) 0%, transparent 100%);
    margin-top: 1.5rem;
    border-radius: 2px;
}


/* Cards */
.step-content,
.step-visual {
    background: var(--bg-white);
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.step-content {
    padding: 2rem;
}

.step-header {
    margin-bottom: 1.75rem;
}

.step-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

/* Settings List */
.settings-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: var(--bg);
    border-radius: 14px;
    padding: 0.75rem;
}

.setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.75rem;
    background: transparent;
    border-radius: 10px;
    transition: all 0.2s;
}

.setting-row:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
}

.setting-label {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.setting-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    color: var(--primary);
}

.setting-icon i {
    width: 16px;
    height: 16px;
}

.setting-value {
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
}

.setting-value--success {
    color: var(--success);
}

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

.setting-check {
    width: 1.4rem;
    height: 1.4rem;
    stroke-width: 4;
}
/* === STEP 1: Upload Visual === */
.upload-visual {
    padding: 1.5rem;
}

/* Upload Options */
.upload-options {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.upload-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.upload-option:hover {
    border-color: var(--primary-light);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
}

.upload-option.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

.upload-option span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.upload-option.active span {
    color: var(--primary);
    font-weight: 600;
}

.option-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-icon i {
    width: 20px;
    height: 20px;
}

.option-icon.twitch {
    background: linear-gradient(135deg, #9146FF20, #9146FF40);
    color: #9146FF;
}

.option-icon.youtube {
    background: linear-gradient(135deg, #FF000020, #FF000040);
    color: #FF0000;
}

.option-icon.storage {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.3));
    color: var(--primary);
}

/* Video File Card */
.video-file-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.video-file-thumb {
    width: 100px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.video-file-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-file-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

.video-file-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.video-file-play i {
    width: 12px;
    height: 12px;
    color: var(--primary);
    margin-left: 2px;
}

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

.video-file-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-file-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.video-duration-badge {
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* === STEP 2: Processing Visual === */
.processing-visual {
    padding: 1.5rem;
}

.timeline-section {
    margin-bottom: 1rem;
}

/* Video Timeline */
.video-timeline {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.track {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.track-content {
    flex: 1;
    height: 32px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

/* Film Strip Style Video Track */
.video-track .track-content {
    height: 48px;
    background: #334155;
    border-radius: 6px;
    display: flex;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Film perforations (sprocket holes) */
.video-track .track-content::before,
.video-track .track-content::after {
    content: '';
    position: absolute;
    left: 4px;
    right: 4px;
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        #1e293b 0px,
        #1e293b 6px,
        transparent 6px,
        transparent 14px
    );
    z-index: 2;
}

.video-track .track-content::before {
    top: 2px;
}

.video-track .track-content::after {
    bottom: 2px;
}

.track-segment {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.track-segment.keep {
    background: linear-gradient(180deg, #818cf8 0%, #6366f1 100%);
}

.track-segment.cut {
    background: #334155;
    opacity: 0.6;
}

/* Film frames inside segments */
.track-segment::before {
    content: '';
    position: absolute;
    top: 9px;
    bottom: 9px;
    left: 2px;
    right: 2px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 16px,
        rgba(255,255,255,0.12) 16px,
        rgba(255,255,255,0.12) 18px
    );
}

/* Audio Track - Waveform Style */
.audio-track .track-content {
    height: 44px;
    background: linear-gradient(180deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.audio-waveform {
    display: flex;
    align-items: flex-end;
    height: 100%;
    padding: 0;
    gap: 0;
}

.audio-waveform .wave-bar {
    flex: 1;
    background: #6366f1;
}

.audio-waveform .wave-bar.silent {
    background: rgba(99, 102, 241, 0.2);
}

/* Markers Track */
.markers-track .track-content {
    background: transparent;
    height: 24px;
}

.marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(251, 191, 36, 0.3);
}

.marker i {
    width: 10px;
    height: 10px;
    color: white;
}

.playhead {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ef4444;
    z-index: 10;
}

.playhead::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #ef4444;
}

/* Processing Columns */
.processing-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: var(--bg);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
}

.column-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.column-header i {
    width: 16px;
    height: 16px;
}

.cut-column .column-header {
    color: var(--danger);
}

.generate-column .column-header {
    color: var(--success);
}

.column-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.column-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    padding-left: 0.75rem;
    position: relative;
}

.column-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.5;
}

/* === STEP 3: Output Visual === */
.output-visual {
    padding: 1.5rem;
}

.output-pack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Main Video Block */
.main-video-block {
    background: var(--bg);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border: 1px solid var(--border);
}

.block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.5rem;
}

.block-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text);
}

.block-title i {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

/* Main Video Output */
.main-output {
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
}

.main-output-thumb {
    width: 100%;
    height: 160px;
    position: relative;
    overflow: hidden;
}

.main-output-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-output-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
}

.main-output-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.2s;
}

.main-output-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.main-output-play i {
    width: 24px;
    height: 24px;
    color: var(--primary);
    margin-left: 3px;
}

.output-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.saved-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.25));
    color: var(--success);
    padding: 0.5rem 0.875rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.saved-badge i {
    width: 14px;
    height: 14px;
}

.timecodes-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.timecode-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.timecode-time {
    font-family: 'Monaco', 'Menlo', monospace;
    font-weight: 600;
    color: var(--primary);
    min-width: 55px;
}

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

.timecode-ellipsis {
    color: var(--text-muted);
    font-size: 1rem;
    letter-spacing: 2px;
}

/* Highlights Section */
.highlights-section {
    background: var(--bg);
    border-radius: 16px;
    padding: 1.25rem;
}

.highlights-header {
    margin-bottom: 1rem;
}

.highlights-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.highlights-title i {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.clips-count-badge {
    background: var(--gradient);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.highlight-cards {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.highlight-card {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.highlight-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}

.highlight-video {
    width: 140px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.highlight-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

.highlight-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.highlight-play i {
    width: 12px;
    height: 12px;
    color: var(--primary);
    margin-left: 2px;
}

.highlight-duration {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 1;
}

.highlight-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.highlight-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
}

.highlight-thumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.thumb-options {
    display: flex;
    gap: 0.35rem;
}

.thumb-option {
    width: 44px;
    height: 26px;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.thumb-option:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.thumb-option:first-child {
    border-color: var(--primary);
}

.thumb-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.tag {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    color: var(--primary);
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Description Preview */
.description-preview {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-style: italic;
}

/* Download Button */
.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--bg-white);
    color: var(--text);
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--shadow);
    margin-top: 0.5rem;
}

.download-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.download-btn i {
    width: 20px;
    height: 20px;
}

/* === Config Page === */
.config-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.config-card {
    background: var(--bg-white);
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.config-card h1 {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.config-placeholder,
.config-thanks {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.config-card .cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.2s;
}

.back-link:hover {
    opacity: 0.8;
}

.back-link i {
    width: 18px;
    height: 18px;
}

/* Footer */
.site-footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 2rem 1.5rem;
    margin-top: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    text-align: center;
}

.footer-column h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-links i {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1100px) {
    .step {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step:nth-child(even) {
        direction: ltr;
        grid-template-columns: 1fr;
    }

    .step-number-container {
        flex-direction: row;
        justify-content: center;
        padding-top: 0;
        order: -1;
    }

    .step-connector {
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-light), transparent);
        margin-top: 0;
        margin-left: 1.5rem;
    }

    .step-content {
        order: 0;
    }

    .step-visual {
        order: 1;
    }

    .hero-product {
        font-size: 3.5rem;
    }

    .hero-headline {
        font-size: 1.75rem;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 4rem 1.5rem 2rem;
    }

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

    .hero-headline {
        font-size: 1.4rem;
    }

    .hero-pain,
    .hero-pitch {
        font-size: 1rem;
    }

    .hero-features li {
        font-size: 0.9rem;
    }

    .hero-feature-icon {
        width: 32px;
        height: 32px;
    }

    .hero-feature-icon i {
        width: 16px;
        height: 16px;
    }

    .marquee-item {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .processing-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .highlight-card {
        flex-direction: column;
    }

    .highlight-video {
        width: 100%;
        height: 120px;
    }

    .video-track .track-content {
        height: 40px;
    }

    .audio-track .track-content {
        height: 36px;
    }
}
