/* Onlinemagneet marketing — demo tour + homepage */
:root {
    --om-orange: #FF6B35;
    --om-ink: #0F172A;
    --om-muted: #64748B;
    --om-line: #E2E8F0;
    --om-bg: #F8FAFC;
    --om-gradient: linear-gradient(135deg, #FF6B35 0%, #E63946 100%);
    --om-hero: linear-gradient(135deg, #0F1419 0%, #1A1F2E 50%, #0F1419 100%);
}

.om-demo-page {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
}

body.om-site.om-demo-page {
    color: #f8fafc;
}

.om-demo-hero {
    background: var(--om-hero);
    color: #fff;
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.om-demo-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.2), transparent 50%);
    pointer-events: none;
}

.om-demo-hero .container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.om-demo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.35);
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.om-demo-hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 1rem;
    letter-spacing: -0.03em;
}

.om-demo-hero h1 span {
    background: var(--om-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.om-demo-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 0 auto 2rem;
}

.om-demo-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.om-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--om-gradient);
    color: #fff;
    padding: 0.9rem 1.75rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.35);
    transition: transform 0.2s;
}

.om-btn-primary:hover { transform: translateY(-2px); }

.om-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    padding: 0.9rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
}

.om-demo-sticky-nav {
    position: sticky;
    top: 5.5rem;
    z-index: 100;
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--om-line);
    padding: 0.65rem 0;
    overflow-x: auto;
}

.om-demo-sticky-nav ul {
    display: flex;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0 1rem;
    max-width: 1100px;
    margin-inline: auto;
    min-width: max-content;
}

.om-demo-sticky-nav a {
    display: inline-flex;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--om-muted);
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid transparent;
}

.om-demo-sticky-nav a:hover,
.om-demo-sticky-nav a.is-active {
    color: var(--om-orange);
    background: #fff7ed;
    border-color: #fed7aa;
}

.om-demo-section {
    padding: 4rem 0;
    color: #f8fafc;
}

.om-demo-section h2 {
    color: #ffffff;
}

.om-demo-section p,
.om-demo-section .om-demo-bullets li {
    color: rgba(255, 255, 255, 0.82);
}

.om-demo-section--light {
    background: #fff;
    color: var(--om-ink);
}

.om-demo-section--light h2 {
    color: var(--om-ink);
}

.om-demo-section--light p,
.om-demo-section--light .om-demo-bullets li {
    color: #334155;
}

.om-demo-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.om-demo-section-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.22fr;
    gap: 2.5rem 3rem;
    align-items: center;
}

.om-demo-section-visual {
    width: 100%;
    min-width: 0;
}

@media (min-width: 901px) {
    .om-demo-section-visual .om-app-showcase--macbook {
        width: 100%;
    }
}

.om-demo-section-grid.reverse {
    direction: rtl;
}

.om-demo-section-grid.reverse > * {
    direction: ltr;
}

.om-demo-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--om-orange);
    margin-bottom: 0.75rem;
}

.om-demo-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.om-demo-section p {
    margin: 0 0 1rem;
    font-size: 1.05rem;
}

.om-demo-bullets {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}

.om-demo-bullets li {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.om-demo-bullets i {
    color: var(--om-orange);
    margin-top: 0.2rem;
}

.om-shot-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--om-line);
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
    background: #fff;
    line-height: 0;
}

.om-shot-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.om-shot-frame--browser .om-shot-chrome {
    background: #1e293b;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.om-shot-chrome span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #475569;
}

.om-shot-chrome span:first-child { background: #ef4444; }
.om-shot-chrome span:nth-child(2) { background: #f59e0b; }
.om-shot-chrome span:nth-child(3) { background: #22c55e; }

.om-shot-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--om-muted);
    font-size: 0.9rem;
    padding: 2rem;
    text-align: center;
    line-height: 1.5;
}

.om-demo-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 3rem 0 0;
}

.om-demo-flow-step {
    text-align: center;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid var(--om-line);
    border-radius: 14px;
}

.om-demo-flow-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--om-gradient);
    color: #fff;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.65rem;
}

.om-demo-cta {
    background: var(--om-hero);
    color: #fff;
    text-align: center;
    padding: 4rem 1.5rem;
}

.om-demo-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin: 0 0 0.75rem;
}

.om-demo-cta p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    margin: 0 auto 1.5rem;
}

.om-home-carousel {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.om-home-carousel img {
    width: 100%;
    display: block;
}

.om-home-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.om-home-carousel-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
}

.om-home-carousel-dots button.active {
    background: var(--om-orange);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 900px) {
    .om-demo-section-grid,
    .om-demo-section-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 1.75rem;
    }

    .om-demo-section-grid .om-demo-section-copy {
        order: 2;
    }

    .om-demo-section-grid > div:last-child,
    .om-demo-section-grid .om-demo-section-visual {
        order: 1;
    }

    .om-demo-sticky-nav {
        top: calc(3.25rem + env(safe-area-inset-top, 0px));
    }

    .om-demo-hero {
        padding: 3.5rem 0 2.5rem;
    }

    .om-demo-hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .om-demo-hero-ctas .om-btn-primary,
    .om-demo-hero-ctas .om-btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .om-demo-section {
        padding: 3rem 0;
    }

    .om-demo-section .container {
        padding: 0 1rem;
    }

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

@media (max-width: 560px) {
    .om-demo-flow {
        grid-template-columns: 1fr;
    }
}
