@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
    --bg-dark: #060814;
    --bg-slate: #0b0f19;
    --bg-panel: rgba(13, 17, 33, 0.7);
    --border-glow: rgba(99, 102, 241, 0.15);
    
    --primary: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.4);
    --secondary: #a855f7;
    --secondary-glow: rgba(168, 85, 247, 0.4);
    --teal: #14b8a6;
    --teal-glow: rgba(20, 184, 166, 0.4);
    
    --text-white: #f8fafc;
    --text-silver: #cbd5e1;
    --text-gray: #64748b;
    --text-dark: #475569;
    
    --font-outfit: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(99, 102, 241, 0.2) transparent;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.2);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.4);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-outfit);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Background Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
}

/* Grid overlay background */
.grid-bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
    mix-blend-mode: screen;
}

.ambient-indigo {
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -10%;
    left: 10%;
}

.ambient-purple {
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    bottom: -10%;
    right: 10%;
}

/* Fullscreen Snap Container */
.snap-scroll-container {
    width: 100%;
    height: auto;
    overflow: visible;
}

@media (min-width: 768px) {
    .snap-scroll-container {
        height: 100vh;
        overflow-y: scroll;
        scroll-behavior: smooth;
        scroll-snap-type: y mandatory;
    }
}

.snap-section {
    width: 100%;
    min-height: 100vh;
    padding: 100px 16px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .snap-section {
        scroll-snap-align: start;
        scroll-snap-stop: always;
        height: 100vh;
        padding: 0 24px;
    }
}

/* Frosted glass container */
.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.glass-card {
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(255, 255, 255, 0.035);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

/* Glowing text and borders */
.text-glow-indigo {
    text-shadow: 0 0 20px var(--primary-glow);
}
.text-glow-purple {
    text-shadow: 0 0 20px var(--secondary-glow);
}

.border-glow-indigo:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.border-glow-purple:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.border-glow-teal:hover {
    border-color: var(--teal);
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.2);
}

/* Navigation Header */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    z-index: 1000;
    background: rgba(6, 8, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .header-nav {
        padding: 0 16px;
    }
    .header-nav .btn-secondary,
    .header-nav .btn-primary {
        display: none;
    }
    .header-nav .lang-dropdown-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* ── Mobile Hamburger Button ── */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn .bar {
    width: 18px;
    height: 2px;
    background: var(--text-silver);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.mobile-menu-btn.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.open .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-menu-btn.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
    .mobile-menu-btn {
        display: flex;
    }
}

/* ── Mobile Navigation Overlay ── */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(6, 8, 20, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-nav-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

@media (max-width: 767px) {
    .mobile-nav-overlay {
        display: block;
    }
}

.mobile-nav-panel {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 1001;
    background: rgba(8, 10, 22, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 24px 20px 32px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: none;
}

.mobile-nav-panel.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

@media (max-width: 767px) {
    .mobile-nav-panel {
        display: block;
    }
}

/* Nav links in mobile panel */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-links a {
    color: var(--text-silver);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.2s ease;
    display: block;
}

.mobile-nav-links a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

/* Language selector in mobile panel */
.mobile-lang-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-gray);
    padding: 0 4px;
    margin-bottom: 12px;
}

.mobile-lang-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-lang-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-silver);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    transition: all 0.2s ease;
    text-align: center;
}

.mobile-lang-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.mobile-lang-pill.active {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    color: #818cf8;
}

.mobile-lang-pill .lang-flag {
    font-size: 20px;
    line-height: 1;
}

.mobile-lang-pill .lang-code {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

/* Mobile CTA buttons in panel */
.mobile-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-btn-signin {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    transition: all 0.2s ease;
}

.mobile-btn-signin:hover {
    background: rgba(255, 255, 255, 0.08);
}

.mobile-btn-start {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
    transition: all 0.2s ease;
}

.mobile-btn-start:hover {
    box-shadow: 0 12px 28px rgba(99, 102, 241, 0.5);
    transform: translateY(-1px);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.03em;
    color: var(--text-white);
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    color: var(--text-silver);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Custom Dropdown Selector for Languages */
.lang-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.lang-dropdown-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-silver);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.lang-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.lang-dropdown-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.lang-dropdown-wrapper.open .lang-dropdown-btn svg {
    transform: rotate(180deg);
}

.lang-dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #0d111d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 6px;
    min-width: 120px;
    display: none;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 100;
    backdrop-filter: blur(20px);
}

.lang-dropdown-wrapper.open .lang-dropdown-content {
    display: flex;
}

.lang-dropdown-item {
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-silver);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.lang-dropdown-item.active {
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary);
}

/* Action Buttons */
.btn-secondary {
    color: var(--text-silver);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.btn-secondary:hover {
    color: #fff;
}

.btn-primary {
    background: #fff;
    color: var(--bg-dark);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 100px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
}

/* Hero Content Grid */
.hero-wrapper {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

@media (min-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hero-text {
    text-align: left;
}

.hero-badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero-badge.indigo {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #818cf8;
}

.hero-badge.emerald {
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    color: #2dd4bf;
}

.hero-badge.amber {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.hero-title {
    font-size: 36px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
    background: linear-gradient(to bottom right, #ffffff 40%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 64px;
    }
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-silver);
    margin-bottom: 28px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 20px;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        align-items: center;
    }
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    padding: 16px 32px;
    border-radius: 100px;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.35);
    transition: all 0.3s ease;
    text-align: center;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.5);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    padding: 16px 32px;
    border-radius: 100px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Decipher Blocks (G-D-E) */
.decipher-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .decipher-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.decipher-card {
    padding: 20px;
    text-align: left;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.decipher-letter {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
}

.decipher-card:nth-child(2) .decipher-letter {
    background: linear-gradient(135deg, var(--secondary) 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.decipher-card:nth-child(3) .decipher-letter {
    background: linear-gradient(135deg, #ec4899 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.decipher-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 4px;
}

.decipher-desc {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 600;
    line-height: 1.5;
}

/* Dashboard Terminal Mockup */
.mockup-terminal {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(13, 17, 33, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.terminal-header {
    height: 48px;
    background: rgba(6, 8, 20, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.terminal-dot.red { background-color: #ef4444; }
.terminal-dot.yellow { background-color: #f59e0b; }
.terminal-dot.green { background-color: #10b981; }

.terminal-address {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 4px 20px;
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--text-gray);
    font-weight: 600;
}

.terminal-body {
    padding: 24px;
}

/* Stats Cards inside mockup */
.mockup-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

@media (min-width: 640px) {
    .mockup-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mockup-stat-card {
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: left;
}

.mockup-stat-icon {
    font-size: 18px;
    margin-bottom: 8px;
    display: block;
}

.mockup-stat-val {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}

.mockup-stat-label {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-gray);
    letter-spacing: 0.05em;
}

/* Mockup Table Rows */
.mockup-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-table-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    font-size: 12px;
}

.mockup-client-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mockup-client-badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 800;
    font-family: var(--font-mono);
}

.mockup-client-badge.paid { background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); color: #34d399; }
.mockup-client-badge.sent { background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.2); color: #818cf8; }
.mockup-client-badge.disputed { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2); color: #f87171; }

.mockup-client-name {
    font-weight: 800;
    color: #fff;
}

.mockup-date {
    color: var(--text-gray);
    font-weight: 500;
}

.mockup-amount {
    font-weight: 800;
    color: #fff;
}

/* Statistics Viewport (Dense Info) */
.section-stats-bar {
    max-width: 1000px;
    width: 100%;
    margin-bottom: 24px;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .stats-bar-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stats-bar-item {
    text-align: center;
    padding: 20px;
    background: rgba(13, 17, 33, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stats-bar-val {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-bar-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-gray);
    letter-spacing: 0.05em;
    line-height: 1.3;
}

/* Feature Viewport CSS */
.viewport-title-wrap {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.viewport-badge {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #818cf8;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.viewport-badge.purple {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.2);
    color: #c084fc;
}

.viewport-badge.pink {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.2);
    color: #f472b6;
}

.viewport-title {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .viewport-title {
        font-size: 40px;
    }
}

.viewport-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
    line-height: 1.6;
}

.features-dense-grid {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .features-dense-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-dense-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-rich-card {
    padding: 28px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.feature-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 24px;
    user-select: none;
}

.feature-rich-card.glow-indigo .feature-icon-wrapper {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.feature-rich-card.glow-emerald .feature-icon-wrapper {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.feature-rich-card.glow-amber .feature-icon-wrapper {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.feature-rich-card.glow-teal .feature-icon-wrapper {
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.feature-rich-card.glow-rose .feature-icon-wrapper {
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.2);
}

.feature-rich-card.glow-purple .feature-icon-wrapper {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.feature-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.feature-rich-card:hover .feature-title {
    color: var(--primary);
}

.feature-rich-card.glow-emerald:hover .feature-title { color: #10b981; }
.feature-rich-card.glow-amber:hover .feature-title { color: #f59e0b; }
.feature-rich-card.glow-teal:hover .feature-title { color: #14b8a6; }
.feature-rich-card.glow-rose:hover .feature-title { color: #f43f5e; }
.feature-rich-card.glow-purple:hover .feature-title { color: #a855f7; }

.feature-desc {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 600;
    line-height: 1.6;
}

/* Security / Cloud storage layout */
.security-dense-wrapper {
    max-width: 800px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .security-dense-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.security-glass-box {
    padding: 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.security-box-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
}

.security-box-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.security-box-desc {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 600;
    line-height: 1.6;
}

/* Stepper process section */
.stepper-process-wrapper {
    position: relative;
    max-width: 1000px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .stepper-process-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Connector line */
.stepper-line {
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.4) 0%, rgba(168, 85, 247, 0.4) 50%, rgba(236, 72, 153, 0.4) 100%);
    z-index: -1;
    display: none;
}

@media (min-width: 768px) {
    .stepper-line {
        display: block;
    }
}

.stepper-card {
    padding: 24px;
    text-align: left;
}

.stepper-num {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
    display: block;
}

.stepper-card:nth-child(2) .stepper-num { color: var(--primary); }
.stepper-card:nth-child(3) .stepper-num { color: var(--secondary); }
.stepper-card:nth-child(4) .stepper-num { color: #f472b6; }

.stepper-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.stepper-desc {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 600;
    line-height: 1.6;
}

/* Pricing Switch System */
.pricing-slider-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
    user-select: none;
}

.pricing-slider-bg {
    position: relative;
    display: inline-flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4px;
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.pricing-bubble {
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    width: calc(50% - 4px);
    background: var(--primary);
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.pricing-slider-bg.annual .pricing-bubble {
    transform: translateX(100%);
}

.pricing-toggle-tab {
    position: relative;
    z-index: 2;
    background: none;
    border: none;
    padding: 10px 24px;
    font-family: var(--font-outfit);
    font-size: 12px;
    font-weight: 800;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    outline: none;
}

.pricing-toggle-tab.active {
    color: #fff;
}

.discount-pill {
    background: #fff;
    color: var(--primary);
    font-size: 9px;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Pricing Cards Layout */
.pricing-cards-container {
    max-width: 1000px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .pricing-cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card-glass {
    padding: 36px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-radius: 20px;
}

/* Special Pro Card border glow */
.pricing-card-glass.pro-border {
    border: 2px solid var(--primary);
    background: rgba(13, 17, 33, 0.8);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
}

.pro-popular-label {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-bottom-left-radius: 10px;
}

.pricing-card-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-silver);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.pricing-card-glass.pro-border .pricing-card-title {
    color: #818cf8;
}

.pricing-value-wrap {
    margin-bottom: 16px;
    min-height: 60px;
}

.price-text-holder {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-integer {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.price-period {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 700;
}

.price-discount-note {
    font-size: 10px;
    font-weight: 700;
    color: var(--teal);
    margin-top: 4px;
    display: block;
}

.price-discount-note.hidden {
    display: none;
}

.pricing-card-desc {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
}

.pricing-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.pricing-feature-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-silver);
}

.pricing-feature-line svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--text-gray);
}

.pricing-card-glass.pro-border .pricing-feature-line svg {
    color: var(--primary);
}

.btn-pricing-action {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-card-glass:not(.pro-border) .btn-pricing-action {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.pricing-card-glass:not(.pro-border) .btn-pricing-action:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card-glass.pro-border .btn-pricing-action {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.pricing-card-glass.pro-border .btn-pricing-action:hover {
    background: #4f46e5;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.45);
}

/* Double Viewport section: FAQ & Feedback */
.faq-feedback-grid {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 1024px) {
    .faq-feedback-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

/* FAQ items */
.faq-box-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-collapsible-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-collapsible-card:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.06);
}

.faq-header-trigger {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-outfit);
    font-size: 14px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.faq-cross {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-cross::before, .faq-cross::after {
    content: '';
    position: absolute;
    background: var(--primary);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-cross::before {
    width: 2px;
    height: 14px;
    left: 6px;
    top: 0;
}

.faq-cross::after {
    width: 14px;
    height: 2px;
    left: 0;
    top: 6px;
}

.faq-body-drawer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 24px;
    color: var(--text-silver);
    font-size: 12px;
    line-height: 1.6;
    font-weight: 600;
}

/* Open state FAQ */
.faq-collapsible-card.open {
    background: rgba(99, 102, 241, 0.02);
    border-color: rgba(99, 102, 241, 0.2);
}

.faq-collapsible-card.open .faq-body-drawer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-collapsible-card.open .faq-cross::before {
    transform: rotate(90deg);
}

.faq-collapsible-card.open .faq-cross::after {
    transform: rotate(90deg);
}

/* Feedback panel form */
.feedback-container {
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(13, 17, 33, 0.4);
    backdrop-filter: blur(20px);
}

.feedback-section-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.feedback-subtitle {
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

/* Type Tabs */
.feedback-tabs-row {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    user-select: none;
}

.feedback-type-tab {
    padding: 6px 14px;
    border-radius: 100px;
    font-family: var(--font-outfit);
    font-size: 10px;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.01);
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.feedback-type-tab:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
}

.feedback-type-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

/* Form Inputs */
.feedback-input-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.feedback-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px 16px;
    font-family: var(--font-outfit);
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.feedback-input::placeholder {
    color: var(--text-gray);
}

.feedback-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.025);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.1);
}

.feedback-textarea {
    resize: none;
    min-height: 90px;
}

.feedback-char-count-line {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-gray);
    margin-top: -8px;
    padding-left: 2px;
}

.feedback-submit-btn {
    width: 100%;
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    background: #fff;
    color: var(--bg-dark);
    font-family: var(--font-outfit);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.feedback-submit-btn:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.15);
}

.feedback-submit-btn:disabled {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-gray);
    cursor: not-allowed;
}

/* Success Card */
.feedback-success-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.feedback-success-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 24px;
    margin-bottom: 20px;
}

.feedback-success-title {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}

.feedback-success-desc {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 600;
    line-height: 1.6;
}

/* Cookies alert */
#cookie-alert-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(13, 17, 33, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 24px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 10000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.cookie-alert-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-silver);
    line-height: 1.5;
}

.btn-cookie-accept {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-family: var(--font-outfit);
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
    outline: none;
}

.btn-cookie-accept:hover {
    background: #4f46e5;
}

/* Footer snaps */
.footer-snap-section {
    min-height: 35vh;
    border-t: 1px solid rgba(255, 255, 255, 0.05);
    background: #03050c;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    .footer-snap-section {
        scroll-snap-align: end;
        scroll-snap-stop: always;
        height: 35vh;
        padding: 40px;
    }
}

.footer-content-wrap {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-top-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 24px;
    width: 100%;
}

@media (min-width: 768px) {
    .footer-top-row {
        flex-direction: row;
        align-items: flex-start;
    }
}

.footer-brand-side {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-brand-side {
        text-align: left;
    }
}

.footer-brand-info {
    font-size: 10px;
    color: var(--text-gray);
    font-weight: 600;
    margin-top: 8px;
    max-width: 300px;
    line-height: 1.5;
}

.footer-links-side {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer-links-side a {
    color: var(--text-gray);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-side a:hover {
    color: #fff;
}

.footer-copyright {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    user-select: none;
}

/* ==========================================
   Product Updates (Changelog) Section
   ========================================== */
#updates {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.updates-timeline-container {
    width: 100%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 32px;
    margin-top: 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.updates-timeline-container:hover {
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.1), 0 0 30px rgba(99, 102, 241, 0.02);
}

.updates-timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.updates-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.7);
    animation: updates-pulse 2s infinite;
}

@keyframes updates-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(20, 184, 166, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(20, 184, 166, 0);
    }
}

.updates-meta-text {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-silver);
}

.btn-updates-view-all {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 100px;
    font-family: var(--font-outfit);
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.btn-updates-view-all:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.2);
}

.updates-timeline-scroll-wrap {
    max-height: 2000px;
    overflow-y: hidden;
    padding-right: 8px;
    position: relative;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.updates-timeline-scroll-wrap.collapsed {
    max-height: 380px;
    overflow-y: hidden;
}

/* Timeline Layout */
.updates-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.updates-list::before {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 15px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(168, 85, 247, 0.4) 50%, rgba(20, 184, 166, 0.1) 100%);
    opacity: 0.2;
}

.update-item {
    position: relative;
    display: flex;
    gap: 24px;
    padding-left: 36px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.update-item:hover {
    transform: translateX(4px);
}

.update-timeline-node {
    position: absolute;
    left: 11px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
    z-index: 2;
    transition: all 0.3s ease;
}

.update-item:hover .update-timeline-node {
    background: var(--primary);
    border-color: #fff;
    box-shadow: 0 0 12px var(--primary);
    transform: scale(1.25);
}

.update-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.update-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.update-date {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-gray);
    font-family: var(--font-mono);
}

.update-tag {
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2px 8px;
    border-radius: 4px;
}

.update-tag.feat {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #818cf8;
}

.update-tag.fix {
    background: rgba(244, 63, 94, 0.08);
    border: 1px solid rgba(244, 63, 94, 0.2);
    color: #fb7185;
}

.update-tag.docs {
    background: rgba(20, 184, 166, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.2);
    color: #2dd4bf;
}

.update-tag.refactor {
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: #c084fc;
}

.update-tag.perf {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.update-tag.other {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-silver);
}

.update-msg {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1.5;
}

.update-commit-link {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: var(--text-gray);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1px 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.update-commit-link:hover {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.2);
}

/* Skeletons */
.update-skeleton-item {
    display: flex;
    gap: 24px;
    padding-left: 36px;
    padding-bottom: 24px;
}

.update-skeleton-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skeleton-text {
    height: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    animation: skeleton-glow 1.5s infinite ease-in-out;
}

.skeleton-text.short { width: 30%; }
.skeleton-text.medium { width: 70%; }
.skeleton-text.long { width: 95%; }

@keyframes skeleton-glow {
    0% { opacity: 0.3; }
    50% { opacity: 0.7; }
    100% { opacity: 0.3; }
}


@media (max-width: 767px) {
    .updates-timeline-container {
        padding: 20px;
        margin-top: 20px;
        border-radius: 16px;
    }
    .update-item {
        gap: 16px;
        padding-left: 28px;
    }
    .updates-list::before {
        left: 11px;
    }
    .update-timeline-node {
        left: 7px;
    }
}

