/* CSS Variables */
:root {
    --bg-main: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --bg-glass-hover: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.06);
    
    --primary: #FF5722;      /* Vibrant Orange / Rocket Color */
    --primary-glow: rgba(255, 87, 34, 0.3);
    --secondary: #FFB300;    /* Yellow/Orange */
    --secondary-glow: rgba(255, 179, 0, 0.3);
    --accent: #F43F5E;       /* Rose */
    
    --text-main: #0F172A;
    --text-muted: #475569;
    
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;

    --font-main: 'Outfit', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-login {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #0F172A;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.btn-login:hover {
    background: #F8FAFC;
    border-color: #CBD5E1;
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
    border-radius: 16px;
}

.glow-btn {
    position: relative;
    overflow: hidden;
}
.glow-btn::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}
.glow-btn:hover::before {
    opacity: 1;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-icon {
    font-size: 28px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
}

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.15; /* Subtle for light theme */
}

.glow-1 {
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary);
}

.glow-2 {
    bottom: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--secondary);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 87, 34, 0.15);
    border: 1px solid rgba(255, 87, 34, 0.3);
    border-radius: 20px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 24px;
}

.hero-title span {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 48px;
}

.cta-note {
    font-size: 13px;
    color: var(--text-muted);
    padding-left: 8px;
}

.stats-row {
    display: flex;
    gap: 48px;
}

.stat-item h3 {
    font-size: 36px;
    color: var(--text-main);
    display: inline-block;
}

.stat-item span {
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Hero Visuals */
.hero-visual {
    position: relative;
}

.dashboard-mockup {
    border-radius: 16px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.mockup-header {
    height: 32px;
    background: #F1F5F9;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.dots span:nth-child(1) { background: #FF5F56; }
.dots span:nth-child(2) { background: #FFBD2E; }
.dots span:nth-child(3) { background: #27C93F; }

.mockup-url {
    margin: 0 auto;
    font-size: 11px;
    color: var(--text-muted);
    background: #E2E8F0;
    padding: 2px 40px;
    border-radius: 10px;
}

.mockup-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1.25; /* Cropping aspect ratio */
    overflow: hidden;
    background: var(--bg-main);
}

.mockup-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 230%; /* Adjusted to 230% as requested */
    height: auto;
    display: block;
}

.floating-card {
    position: absolute;
    padding: 16px;
    display: flex;
    gap: 16px;
    align-items: center;
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -10%;
    animation-delay: 3s;
}

.card-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon.alert {
    background: rgba(239, 68, 68, 0.2);
}

.card-text h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.card-text p {
    font-size: 12px;
    color: var(--text-muted);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Features */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

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

.feature-showcase {
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin-top: 40px;
}

.showcase-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.showcase-row.reverse {
    flex-direction: row-reverse;
}

.showcase-text {
    flex: 1;
}

.showcase-text h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.showcase-text p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    background: rgba(16, 185, 129, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.showcase-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    padding: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.img-crop {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
}

.img-crop img {
    position: absolute;
    width: 280%; /* Default scale to zoom in */
    max-width: none;
}

.img-crop.top-left img {
    top: -5%;
    left: 0;
}

.img-crop.top-right img {
    top: -5%;
    right: 0;
}

.img-crop.center-zoom img {
    top: -15%;
    left: -10%;
    width: 220%;
}

/* How it Works */
.how-it-works {
    background: linear-gradient(to bottom, var(--bg-main), var(--bg-secondary));
}

.steps-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-line {
    position: absolute;
    left: 24px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    opacity: 0.3;
}

.step {
    display: flex;
    gap: 32px;
    align-items: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--bg-main);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 0 15px var(--primary-glow);
}

.step-content {
    flex: 1;
    padding: 32px;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

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

/* CTA Section */
.cta-box {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(37, 99, 235, 0.1));
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.cta-box h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto; margin-right: auto;
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 24px;
    background: var(--bg-main);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.link-group h4 {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--text-main);
}

.link-group a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: color 0.2s;
}

.link-group a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px; right: 20px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--danger);
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input {
    padding: 12px 16px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    background: #FFFFFF;
    color: var(--text-main);
}

.form-group input:focus {
    border-color: var(--primary);
}

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

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

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .stats-row {
        justify-content: center;
    }

    .showcase-row, .showcase-row.reverse {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    
    .hero-title { font-size: 40px; }
    
    .feature-showcase {
        gap: 80px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Competitor Mockup Styles */
.competitor-mockup {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
    width: 100%;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.competitor-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.comp-header {
    display: flex;
    padding: 16px 20px;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
    font-size: 11px;
    font-weight: 700;
    color: #64748B;
    letter-spacing: 0.5px;
}

.comp-row {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #F1F5F9;
    transition: background 0.2s;
}

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

.comp-row.winner {
    background: linear-gradient(to right, rgba(245, 158, 11, 0.05), transparent);
}

.comp-col-rank { width: 60px; text-align: center; }
.comp-col-seller { flex: 1; display: flex; flex-direction: column; gap: 4px; text-align: left; }
.comp-col-stock { width: 80px; text-align: center; }
.comp-col-price { width: 120px; text-align: right; font-weight: 700; font-size: 16px; color: #0F172A; }

.winner-price {
    color: #F59E0B;
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    font-weight: 700;
    font-size: 15px;
    color: #475569;
}

.winner-badge {
    background: #F59E0B;
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.seller-name {
    font-size: 15px;
    font-weight: 600;
    color: #1E293B;
}

.seller-score {
    display: inline-block;
    background: #F1F5F9;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    color: #64748B;
    font-weight: 600;
    width: fit-content;
}

.stock-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}

.stock-badge.high { background: #D1FAE5; color: #059669; }
.stock-badge.medium { background: #FEF3C7; color: #D97706; }
.stock-badge.low { background: #FEE2E2; color: #DC2626; }

/* Profit Mockup Styles */
.profit-mockup {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    font-family: 'Outfit', sans-serif;
    padding: 24px;
    width: 100%;
    transform: perspective(1000px) rotateY(5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.profit-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.profit-product {
    display: flex;
    gap: 20px;
    align-items: center;
}

.profit-img {
    width: 80px;
    height: 80px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
}

.profit-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profit-title {
    font-size: 16px;
    font-weight: 600;
    color: #0F172A;
    margin: 0;
    text-align: left;
}

.profit-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.p-tag {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.p-tag.brand { background: #EFF6FF; color: #3B82F6; }
.p-tag.barcode { background: #ECFDF5; color: #10B981; }
.p-tag.category { background: #F5F3FF; color: #8B5CF6; }
.p-tag.commision { background: #FEF3C7; color: #D97706; }

.profit-calc {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
}

.calc-cost {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cost-label {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}

.cost-input-wrapper {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 6px 12px;
}

.cost-input {
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    width: 55px;
    font-family: inherit;
    padding: 0;
}

.cost-currency {
    font-size: 14px;
    font-weight: 600;
    color: #64748B;
}

.calc-divider {
    width: 1px;
    height: 24px;
    background: #E2E8F0;
}

.calc-net {
    font-size: 14px;
    font-weight: 600;
    color: #64748B;
}

.net-val {
    color: #10B981;
    font-weight: 700;
    font-size: 16px;
}

.calc-profit {
    background: #D1FAE5;
    color: #059669;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}

/* Product List Mockup Styles */
.product-list-mockup {
    background: #F8FAFC;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    font-family: 'Outfit', sans-serif;
    width: 100%;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    position: relative;
    max-height: 480px;
    overflow: hidden;
}

.product-list-mockup::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 100px;
    background: linear-gradient(to bottom, rgba(248, 250, 252, 0), rgba(248, 250, 252, 1));
    pointer-events: none;
    z-index: 20;
}

.product-list-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.pl-header {
    display: flex;
    padding: 4px 16px;
    font-size: 11px;
    font-weight: 700;
    color: #64748B;
    letter-spacing: 0.5px;
}

.pl-row {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    padding: 12px 16px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.pl-row.winner {
    border-color: #10B981;
}

.pl-row.loser {
    border-color: #F87171;
}

.pl-status-dot {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.pl-row.winner .pl-status-dot { background: #10B981; }
.pl-row.loser .pl-status-dot { background: #F87171; }

.pl-col-img { width: 50px; flex-shrink: 0; }
.pl-img {
    width: 40px; height: 40px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}

.pl-col-detail { flex: 2.5; display: flex; flex-direction: column; gap: 4px; padding-right: 12px; text-align: left;}
.pl-title { font-size: 13px; font-weight: 600; color: #0F172A; margin: 0; display: flex; align-items: center; gap: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.pl-edit-icon { font-size: 12px; }

.pl-tags { display: flex; gap: 8px; align-items: center; }
.pl-store { font-size: 11px; color: #475569; font-weight: 500; }
.pl-brand { font-size: 10px; background: #F1F5F9; padding: 2px 6px; border-radius: 6px; color: #64748B; font-weight: 600;}

.pl-barcode { font-size: 10px; border: 1px solid #E2E8F0; padding: 2px 6px; border-radius: 6px; color: #94A3B8; width: fit-content; background: #FFFFFF; font-weight: 500;}

.pl-col-bb { flex: 1; text-align: center; display: flex; flex-direction: column; gap: 2px; }
.pl-price { font-size: 12px; font-weight: 600; color: #0F172A; }
.pl-seller { font-size: 10px; color: #64748B; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 90px; margin: 0 auto; }

.pl-col-action { width: 30px; text-align: right; color: #94A3B8; font-size: 14px; cursor: pointer; padding-right: 8px; }

.pl-variance-badge {
    position: absolute;
    top: -10px;
    left: 12px;
    background: #3B82F6;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    z-index: 10;
}

/* Landing page refresh */
.landing-page {
    background:
        radial-gradient(circle at 7% 14%, rgba(255, 87, 34, 0.08), transparent 28%),
        radial-gradient(circle at 93% 9%, rgba(255, 179, 0, 0.1), transparent 25%),
        #FFFFFF;
}

.landing-page .nav-container {
    height: 76px;
}

.landing-page .nav-links {
    gap: 28px;
}

.landing-page .nav-actions {
    gap: 10px;
}

.landing-page .btn-primary:hover {
    background: linear-gradient(135deg, #EA4818, #F59E0B);
}

.landing-page .btn-outline {
    background: #FFFFFF;
    border-color: #E2E8F0;
}

.landing-page .btn-outline:hover {
    background: #F8FAFC;
    border-color: #CBD5E1;
    transform: translateY(-2px);
}

.landing-page .hero {
    min-height: auto;
    padding: 148px 0 98px;
}

.landing-page .hero-container {
    grid-template-columns: minmax(420px, 0.9fr) minmax(480px, 1.1fr);
    gap: 68px;
}

.landing-page .badge {
    background: #FFF4EE;
    border-color: #FFD5C7;
    letter-spacing: 0.01em;
}

.landing-page .hero-title {
    max-width: 555px;
    font-size: clamp(48px, 4.7vw, 62px);
    letter-spacing: -0.055em;
    line-height: 1.05;
    margin-bottom: 22px;
}

.landing-page .hero-subtitle {
    max-width: 510px;
    font-size: 19px;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 30px;
}

.landing-page .hero-cta {
    flex-direction: row;
    gap: 12px;
    margin-bottom: 32px;
}

.landing-page .hero-cta .btn-large {
    padding: 15px 24px;
    font-size: 16px;
}

.hero-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-assurances span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.hero-assurances span::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--success);
    border-radius: 50%;
}

.landing-page .hero-visual {
    padding-top: 30px;
}

.visual-label {
    position: absolute;
    z-index: 12;
    top: 0;
    left: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #334155;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.08);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.12);
}

.landing-page .dashboard-mockup {
    transform: perspective(1100px) rotateY(-8deg) rotateX(2deg);
    border-color: #E2E8F0;
    box-shadow: 0 30px 65px rgba(15, 23, 42, 0.12);
}

.landing-page .dashboard-mockup:hover {
    transform: perspective(1100px) rotateY(-2deg) rotateX(1deg);
}

.landing-page .floating-card {
    background: #FFFFFF;
    border-color: #E2E8F0;
    padding: 12px 14px;
}

.landing-page .card-1 {
    top: 26%;
    left: -4%;
}

.landing-page .card-2 {
    bottom: 10%;
    right: -3%;
}

.landing-page .card-icon {
    width: 39px;
    height: 39px;
    font-size: 18px;
    color: var(--success);
    font-weight: 800;
}

.landing-page .card-icon.alert {
    color: var(--danger);
}

.platform-section {
    padding: 34px 0 96px;
}

.platform-heading {
    display: grid;
    grid-template-columns: 1.05fr 0.8fr;
    align-items: end;
    gap: 72px;
    margin-bottom: 38px;
}

.section-kicker {
    color: var(--primary) !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 14px !important;
}

.platform-heading h2 {
    font-size: clamp(34px, 4vw, 44px);
    letter-spacing: -0.04em;
}

.platform-description {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
}

.platform-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 14px;
}

.platform-card {
    min-height: 232px;
    padding: 25px 22px;
    background: #FFFFFF;
    border: 1px solid #E8EEF5;
    border-radius: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.platform-card.featured {
    grid-row: span 2;
    background: #0F172A;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
}

.platform-card.accent-card {
    grid-column: span 2;
    min-height: 190px;
    background: #FFF7ED;
    border-color: #FED7AA;
}

.card-number {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}

.platform-card.featured .card-number {
    color: #FDBA74;
}

.platform-card h3 {
    font-size: 21px;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.platform-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.55;
}

.platform-card.featured p {
    color: #CBD5E1;
    max-width: 480px;
}

.url-preview {
    margin-top: auto;
    padding: 12px 14px;
    border-radius: 11px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
}

.url-preview span {
    color: #CBD5E1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.url-preview strong {
    flex-shrink: 0;
    color: #86EFAC;
}

.landing-page .features {
    padding-top: 84px;
    background: linear-gradient(180deg, #FBFCFE 0%, #FFFFFF 100%);
    border-top: 1px solid #F1F5F9;
}

.landing-page .section-header h2 {
    letter-spacing: -0.04em;
}

.landing-page .cta-box {
    position: relative;
    overflow: hidden;
    padding: 76px 40px;
    background: #0F172A;
    border-color: #1E293B;
}

.landing-page .cta-box::after {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 179, 0, 0.3), transparent 68%);
}

.landing-page .cta-box h2 {
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.045em;
}

.landing-page .cta-box p:not(.section-kicker) {
    position: relative;
    z-index: 1;
    color: #CBD5E1;
}

.landing-page .cta-box .btn {
    position: relative;
    z-index: 1;
}

@media (max-width: 1080px) {
    .landing-page .hero-container {
        grid-template-columns: 1fr;
        gap: 58px;
        text-align: left;
    }

    .landing-page .hero-content,
    .landing-page .hero-title,
    .landing-page .hero-subtitle {
        max-width: 700px;
    }

    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .platform-card.featured,
    .platform-card.accent-card {
        grid-column: span 2;
        grid-row: auto;
    }

    .platform-card.featured .url-preview {
        margin-top: 22px;
    }
}

@media (max-width: 768px) {
    .landing-page .nav-container {
        height: 68px;
    }

    .landing-page .logo {
        font-size: 20px;
    }

    .landing-page .logo-icon {
        font-size: 22px;
    }

    .landing-page .nav-actions .btn-primary {
        display: none;
    }

    .landing-page .hero {
        padding: 112px 0 62px;
    }

    .landing-page .hero-title {
        font-size: clamp(38px, 11vw, 46px);
    }

    .landing-page .hero-subtitle {
        font-size: 17px;
    }

    .landing-page .hero-cta {
        flex-direction: column;
    }

    .landing-page .hero-cta .btn {
        width: 100%;
    }

    .landing-page .hero-visual {
        padding-top: 36px;
    }

    .landing-page .floating-card {
        display: none;
    }

    .visual-label {
        left: 12px;
    }

    .platform-section {
        padding: 10px 0 68px;
    }

    .platform-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

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

    .platform-card.featured {
        grid-column: span 1;
    }

    .platform-card.accent-card {
        grid-column: span 1;
    }

    .url-preview {
        flex-direction: column;
        align-items: flex-start;
    }
}
