/* ============================================================================
   DOXAP Login — modern enterprise SaaS auth page.
   Two-column desktop layout with continuous animated gradient background,
   transparent SVG data-wave layer, frosted-glass login card on the right.
   ============================================================================ */

:root {
    --doxap-navy-950: #07122A;
    --doxap-navy-900: #0B0F1A;
    --doxap-navy-800: #101A3D;

    --doxap-blue-500: #4F64E5;
    --doxap-purple-500: #7C3AED;
    --doxap-green-500: #22C55E;

    --doxap-text-primary: #0F172A;
    --doxap-text-secondary: #64748B;
    --doxap-text-muted: #94A3B8;

    --doxap-surface: rgba(255, 255, 255, 0.88);
    --doxap-surface-strong: rgba(255, 255, 255, 0.96);
    --doxap-border: rgba(148, 163, 184, 0.32);

    --doxap-footer-bg: rgba(255, 255, 255, 0.72);
}

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

html, body { height: 100%; }

body.auth-page {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--doxap-text-primary);
    /* Uniform dark navy canvas — every section sees the same base color.
       Per-section ::before applies subtle centered tints. */
    background: #07122A;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* ─────────────── Animated background drift — DISABLED for 100vh slides ───────────────
   Was creating asymmetric light/dark bands across sections. Per-section ::before
   gradients now own the color treatment. Keep the element/animation for backwards
   compat but neutralize the visual. */
.auth-page__bg-drift {
    position: fixed;
    inset: -20%;
    pointer-events: none;
    z-index: 0;
    background: transparent;
    animation: none;
}
@keyframes doxap-background-drift {
    0%   { transform: translate3d(-2%, 1%, 0) scale(1);    opacity: 0.85; }
    100% { transform: translate3d(3%, -2%, 0) scale(1.06); opacity: 1;    }
}

/* ─────────────── Milky Way nebula bands ─────────────── */
/* Two slightly different diagonal streaks create depth — a galaxy slash. */
/* Milky-way diagonal streaks — neutralized for 100vh slides (was creating
   asymmetric color bands across sections). */
.auth-page__milky-way,
.auth-page__milky-way-2 {
    display: none;
}
@keyframes milky-drift {
    0%   { transform: rotate(-22deg) translate3d(-2%, 1%, 0); }
    100% { transform: rotate(-20deg) translate3d(2%, -1%, 0); }
}

/* ─────────────── Data-wave SVG layer — subtle texture in corner ─────────────── */
.auth-page__data-wave {
    position: fixed;
    left: 0;
    bottom: 0;
    width: min(60vw, 1000px);
    height: auto;
    opacity: 0.35;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* ─────────────── Constellation network (canvas) ─────────────── */
.auth-page__network {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Background layer, below the page content (.auth-page__scroller is z-index 2). */
    z-index: 1;
}

/* ─────────────── Floating particles (stars) ─────────────── */
.auth-page__particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    /* Stars belong to the background layer — below the page content
       (.auth-page__scroller is z-index: 2). */
    z-index: 1;
    overflow: hidden;
}
.auth-page__particles .particle {
    position: absolute;
    left: var(--x);
    top: var(--y);
    border-radius: 50%;
    opacity: calc(var(--o) / 100);
    animation: particle-twinkle var(--d) ease-in-out infinite alternate;
}

/* Cross-shaped lens-flare rays for the bright sparkles — horizontal and
   vertical thin lines that fade out, mimicking a starburst glint. Applied
   via pseudo-elements so we don't need extra DOM nodes. */
.particle--sparkle::before, .particle--sparkle::after,
.particle--green::before,   .particle--green::after,
.particle--cyan::before,    .particle--cyan::after,
.particle--purple::before,  .particle--purple::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
/* Horizontal flare = ::before, vertical flare = ::after */
.particle--sparkle::before, .particle--green::before,
.particle--cyan::before,    .particle--purple::before {
    width: 28px; height: 1px;
}
.particle--sparkle::after,  .particle--green::after,
.particle--cyan::after,     .particle--purple::after {
    width: 1px; height: 28px;
}
/* White sparkles */
.particle--sparkle::before { background: linear-gradient(to right,  transparent, rgba(255,255,255,0.9), transparent); }
.particle--sparkle::after  { background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.9), transparent); }
/* Green sparkles */
.particle--green::before   { background: linear-gradient(to right,  transparent, rgba(34,197,94,0.95),  transparent); width: 34px; }
.particle--green::after    { background: linear-gradient(to bottom, transparent, rgba(34,197,94,0.95),  transparent); height: 34px; }
/* Cyan sparkles */
.particle--cyan::before    { background: linear-gradient(to right,  transparent, rgba(103,232,249,0.95), transparent); width: 32px; }
.particle--cyan::after     { background: linear-gradient(to bottom, transparent, rgba(103,232,249,0.95), transparent); height: 32px; }
/* Purple sparkles */
.particle--purple::before  { background: linear-gradient(to right,  transparent, rgba(196,181,253,0.95), transparent); width: 34px; }
.particle--purple::after   { background: linear-gradient(to bottom, transparent, rgba(196,181,253,0.95), transparent); height: 34px; }

/* Tiny dust — barely visible, just adds depth */
.particle--dust {
    width: 1.5px;
    height: 1.5px;
    background: rgba(199, 210, 254, 0.95);
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
}
/* Medium stars — clearly visible white pinpoints */
.particle--star {
    width: 2.5px;
    height: 2.5px;
    background: white;
    box-shadow:
        0 0 6px rgba(255, 255, 255, 0.85),
        0 0 14px rgba(199, 210, 254, 0.55);
}
/* Bright sparkles — white hero dots with multi-color glow halo */
.particle--sparkle {
    width: 4px;
    height: 4px;
    background: white;
    box-shadow:
        0 0 8px rgba(255, 255, 255, 1),
        0 0 22px rgba(124, 58, 237, 0.6),
        0 0 40px rgba(79, 100, 229, 0.4);
    animation:
        particle-twinkle var(--d) ease-in-out infinite alternate,
        sparkle-pulse calc(var(--d) * 1.4) ease-in-out infinite;
}
/* Colored hero stars to match brand palette */
.particle--green {
    width: 4.5px; height: 4.5px;
    background: #22C55E;
    box-shadow:
        0 0 8px rgba(34, 197, 94, 1),
        0 0 24px rgba(34, 197, 94, 0.7),
        0 0 50px rgba(34, 197, 94, 0.35);
    animation:
        particle-twinkle var(--d) ease-in-out infinite alternate,
        sparkle-pulse calc(var(--d) * 1.6) ease-in-out infinite;
}
.particle--cyan {
    width: 4px; height: 4px;
    background: #67E8F9;
    box-shadow:
        0 0 8px rgba(103, 232, 249, 1),
        0 0 22px rgba(34, 211, 238, 0.7),
        0 0 44px rgba(6, 182, 212, 0.4);
    animation:
        particle-twinkle var(--d) ease-in-out infinite alternate,
        sparkle-pulse calc(var(--d) * 1.5) ease-in-out infinite;
}
.particle--purple {
    width: 4.5px; height: 4.5px;
    background: #C4B5FD;
    box-shadow:
        0 0 8px rgba(196, 181, 253, 1),
        0 0 24px rgba(167, 139, 250, 0.7),
        0 0 50px rgba(124, 58, 237, 0.45);
    animation:
        particle-twinkle var(--d) ease-in-out infinite alternate,
        sparkle-pulse calc(var(--d) * 1.7) ease-in-out infinite;
}
@keyframes particle-twinkle {
    0%   { transform: translateY(0) scale(1);   opacity: calc(var(--o) / 100); }
    100% { transform: translateY(-6px) scale(1.5); opacity: calc(var(--o) / 220); }
}
@keyframes sparkle-pulse {
    0%, 100% { filter: brightness(1); }
    50%      { filter: brightness(2); }
}

/* ─────────────── Top bar ─────────────── */
.auth-page__topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    /* Soft glass effect so the brand stays readable above any section. */
    background: linear-gradient(180deg, rgba(7, 18, 42, 0.65) 0%, rgba(7, 18, 42, 0) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.auth-page__brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: white;
    text-decoration: none;
    cursor: pointer;
}
.auth-page__brand-logo {
    /* Source asset is ~5.5:1 — width-constrained keeps the brand compact. */
    width: 170px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}
.auth-page__brand-tagline {
    font-size: 9.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 3px;
}

/* Top-right language switcher */
.auth-topbar__right { display: flex; align-items: center; gap: 12px; }
.auth-topbar__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: background 0.15s, border-color 0.15s;
}
.auth-topbar__link:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.4); color: #fff; }
@media (max-width: 560px) {
    .auth-topbar__right { gap: 8px; }
    .auth-topbar__link { padding: 6px 10px; font-size: 13px; }
    .auth-topbar__link span { display: none; }
}

.auth-lang-switcher { position: relative; }

/* ─── Resources (SEO guides / articles) ─── */
.resources-page { position: relative; z-index: 1; max-width: 1040px; margin: 0 auto; padding: 116px 24px 80px; }
.resources-hub__head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.resources-hub__eyebrow { display: inline-block; color: #34d399; letter-spacing: 2px; text-transform: uppercase; font-size: 13px; font-weight: 700; }
.resources-hub__title { color: #fff; font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin: 10px 0; line-height: 1.15; }
.resources-hub__subtitle { color: rgba(255, 255, 255, 0.7); font-size: 17px; line-height: 1.6; margin: 0; }
.resources-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.resource-card { display: flex; flex-direction: column; gap: 10px; padding: 24px; border-radius: 16px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); text-decoration: none; transition: transform 0.15s, border-color 0.15s, background 0.15s; }
.resource-card:hover { transform: translateY(-3px); border-color: rgba(52, 211, 153, 0.5); background: rgba(255, 255, 255, 0.06); }
.resource-card--cyan:hover { border-color: rgba(6, 182, 212, 0.5); }
.resource-card--purple:hover { border-color: rgba(124, 58, 237, 0.5); }
.resource-card__cat { align-self: flex-start; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #34d399; background: rgba(52, 211, 153, 0.12); padding: 3px 10px; border-radius: 999px; }
.resource-card__title { color: #fff; font-size: 19px; font-weight: 700; margin: 4px 0 0; line-height: 1.3; }
.resource-card__excerpt { color: rgba(255, 255, 255, 0.65); font-size: 14px; line-height: 1.6; flex: 1; margin: 0; }
.resource-card__more { color: #34d399; font-size: 13px; font-weight: 600; }

.resource-article { max-width: 760px; margin: 0 auto; background: #fff; border-radius: 18px; padding: clamp(28px, 5vw, 56px); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35); }
.resource-article--notfound { text-align: center; }
.resource-breadcrumb { display: flex; gap: 8px; font-size: 13px; color: #6b7280; margin-bottom: 20px; }
.resource-breadcrumb a { color: #4f46e5; text-decoration: none; }
.resource-breadcrumb a:hover { text-decoration: underline; }
.resource-breadcrumb__sep { color: #cbd5e1; }
.resource-article__title { color: #0f172a; font-size: clamp(26px, 4vw, 40px); font-weight: 800; line-height: 1.2; margin: 0 0 14px; }
.resource-article__meta { display: flex; gap: 8px; align-items: center; color: #94a3b8; font-size: 13px; margin-bottom: 18px; }
.resource-article__dot { color: #cbd5e1; }
.resource-article__lead { color: #334155; font-size: 19px; line-height: 1.6; font-weight: 500; margin: 0 0 8px; }
.resource-prose { color: #1f2937; font-size: 16.5px; line-height: 1.75; }
.resource-prose h2 { color: #0f172a; font-size: 23px; font-weight: 700; margin: 34px 0 12px; }
.resource-prose p { margin: 0 0 16px; }
.resource-prose ul { margin: 0 0 16px; padding-left: 22px; }
.resource-prose li { margin-bottom: 8px; }
.resource-prose a { color: #4f46e5; text-decoration: underline; text-underline-offset: 2px; }
.resource-prose strong { color: #0f172a; font-weight: 700; }
.resource-matrix-wrap { overflow-x: auto; border: 1px solid #e5e7eb; border-radius: 12px; margin: 0 0 22px; -webkit-overflow-scrolling: touch; }
.resource-matrix { border-collapse: collapse; width: 100%; min-width: 720px; font-size: 13.5px; }
.resource-matrix th, .resource-matrix td { padding: 8px 6px; text-align: center; border-top: 1px solid #eef1f5; white-space: nowrap; }
.resource-matrix thead th { border-top: 0; font-size: 12px; font-weight: 700; color: #475569; vertical-align: bottom; background: #f8fafc; }
.resource-matrix__cap { text-align: left !important; font-weight: 600; color: #334155; position: sticky; left: 0; background: #fff; box-shadow: 1px 0 0 #eef1f5; }
.resource-matrix thead th.resource-matrix__cap { background: #f8fafc; color: #475569; }
.resource-matrix__sec td { text-align: left; background: #f1f5f9; font-weight: 700; font-size: 11.5px; letter-spacing: 0.4px; text-transform: uppercase; color: #475569; padding: 7px 10px; }
.resource-matrix tbody td.resource-matrix__dx { background: #eef2ff; }
.resource-matrix thead th.resource-matrix__dx { color: #4338ca; background: #eef2ff; }
.resource-matrix .m-f { color: #16a34a; font-size: 15px; line-height: 1; }
.resource-matrix .m-p { color: #d97706; font-size: 15px; line-height: 1; }
.resource-matrix .m-n { color: #cbd5e1; font-size: 15px; line-height: 1; }
.resource-share { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 36px; padding-top: 22px; border-top: 1px solid #e5e7eb; }
.resource-share__label { font-size: 13px; font-weight: 600; color: #64748b; }
.resource-share__btns { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.resource-share__btn { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; border: 1px solid #e5e7eb; background: #fff; color: #64748b; cursor: pointer; transition: color 0.15s, border-color 0.15s, background 0.15s, transform 0.15s; }
.resource-share__btn:hover { transform: translateY(-2px); }
.resource-share__btn svg { width: 18px; height: 18px; }
.resource-share__btn--wa:hover   { color: #fff; background: #25D366; border-color: #25D366; }
.resource-share__btn--li:hover   { color: #fff; background: #0A66C2; border-color: #0A66C2; }
.resource-share__btn--x:hover    { color: #fff; background: #000000; border-color: #000000; }
.resource-share__btn--fb:hover   { color: #fff; background: #1877F2; border-color: #1877F2; }
.resource-share__btn--ig:hover   { color: #fff; background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; }
.resource-share__btn--mail:hover { color: #fff; background: #6366f1; border-color: #6366f1; }
.resource-share__toast { font-size: 12px; font-weight: 600; color: #16a34a; opacity: 0; transform: translateY(-2px); transition: opacity 0.2s, transform 0.2s; pointer-events: none; }
.resource-share__toast.is-visible { opacity: 1; transform: translateY(0); }
.resource-article__foot { margin-top: 32px; padding-top: 20px; border-top: 1px solid #e5e7eb; }
.resource-back { color: #4f46e5; font-weight: 600; text-decoration: none; }
.resource-back:hover { text-decoration: underline; }
.auth-lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font: inherit;
    font-size: 14px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.15s, border-color 0.15s;
}
.auth-lang-toggle:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.4); }
.auth-lang-toggle .auth-lang-current-flag {
    width: 18px; height: 13px;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.auth-lang-toggle .bi-chevron-down { font-size: 12px; opacity: 0.7; }

.auth-lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    padding: 6px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
    display: none;
    flex-direction: column;
    gap: 2px;
    z-index: 100;
}
.auth-lang-switcher.is-open .auth-lang-menu { display: flex; }
.auth-lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--doxap-text-primary);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.12s;
}
.auth-lang-item:hover { background: #f5f3ff; color: var(--doxap-text-primary); }
.auth-lang-item.is-active { font-weight: 600; color: var(--doxap-blue-500); }
.auth-lang-item .fi {
    width: 20px; height: 14px; border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

/* ─────────────── Scroll-snap landing ─────────────── */
html {
    /* `proximity` (not mandatory) so the footer below the last section is
       still reachable. We still snap when the user is close to a section
       boundary — the Apple-style "page snap" feel. */
    scroll-snap-type: y proximity;
    scroll-behavior: smooth;
}
.auth-page__scroller {
    position: relative;
    z-index: 2;
}
.auth-section {
    /* Topbar ~90px, footer ~42px, section-nav absolute at bottom 70 (~50px tall).
       padding-bottom: 140 = 42 footer + 50 nav + 48 breathing so content never
       slides behind the absolute section-nav. */
    height: 100vh;
    min-height: 100vh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 102px;
    padding-bottom: 170px;
    overflow: hidden;
}
.auth-section__inner {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(480px, 0.85fr);
    align-items: center;
    padding: 0 40px 80px;
    gap: 28px;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
}

/* Animated scroll-down indicator (Apple style) */
.scroll-indicator {
    position: absolute;
    bottom: 70px;   /* Above the fixed footer (~50px) with breathing room */
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
    z-index: 5;
}
.scroll-indicator:hover {
    color: white;
}
.scroll-indicator__label {
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
}
.scroll-indicator__chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0);   opacity: 0.85; }
    50%      { transform: translateY(8px); opacity: 1;    }
}

/* ─────────────── Left panel ─────────────── */
.auth-page__left { color: white; }
.auth-page__left-inner {
    max-width: 560px;
    padding-left: 24px;
    /* Stack inline-flex children (secure note, Book a Demo) on their own
       lines, each only as wide as its content. */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.auth-hero {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
}
.auth-hero__highlight {
    background: linear-gradient(90deg, #22C55E 0%, #06B6D4 50%, #4F64E5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}
.auth-intro {
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 460px;
}

.auth-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
    /* Align flush-left with the headline + intro above. */
    margin-left: 0;
}
.auth-benefit {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    color: white;
}
.auth-benefit__icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    background:
        radial-gradient(circle at center, rgba(34, 197, 94, 0.06), transparent 70%);
}
/* Gradient ring around the icon — matches the brand green→cyan→blue. */
.auth-benefit__icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 1.5px;
    background: linear-gradient(135deg, #22C55E 0%, #06B6D4 55%, #4F64E5 100%);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
.auth-benefit h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}
.auth-benefit p {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.auth-secure-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 500;
    /* Align with the headline/intro (no indent), add space above to separate
       from the benefits list. */
    margin-left: 0;
    margin-top: 12px;
}

/* Secondary CTA — Book a Demo. Glass / outline style so it complements the
   primary "Sign in" button on the right without competing with it. */
/* Unified Book-a-Demo button — same shape (page 1) + gradient (showcase pages)
   everywhere. Applied to .btn-book-demo AND .showcase-cta below. */
.btn-book-demo,
.showcase-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 12px;
    border: 0;
    background: linear-gradient(135deg, #22C55E 0%, #06B6D4 50%, #7C3AED 100%);
    color: #fff;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1px;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 10px 26px -10px rgba(34, 197, 94, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn-book-demo { margin-top: 24px; }
.btn-book-demo:hover,
.showcase-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px -10px rgba(34, 197, 94, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    color: #fff;
}
.btn-book-demo svg,
.showcase-cta svg { flex-shrink: 0; stroke-width: 2.2; }
.auth-secure-note svg { flex-shrink: 0; }

/* ─────────────── Right panel: login card ─────────────── */
.auth-page__right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.login-card {
    width: min(100%, 480px);
    padding: 40px 44px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: card-rise 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    /* Pull the card above the starfield/particles so no sparkle ever lands
       inside the sign-in form. */
    position: relative;
    z-index: 5;
}
@keyframes card-rise {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0);    }
}

.login-card__logo {
    text-align: center;
    margin-bottom: 20px;
}
.login-card__logo img {
    height: 32px;
    width: auto;
    display: block;
    margin: 0 auto;
}
.login-card__subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--doxap-text-secondary);
    margin-bottom: 28px;
}

/* ─────────────── Form ─────────────── */
.login-form .form-group { margin-bottom: 16px; }
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--doxap-text-primary);
    margin-bottom: 8px;
}
.input-wrapper { position: relative; }
.input-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: var(--doxap-text-muted);
    font-size: 16px;
    pointer-events: none;
    z-index: 2;
}
.login-form .form-control {
    width: 100%;
    padding: 13px 16px 13px 44px;
    border: 1.5px solid var(--doxap-border);
    border-radius: 12px;
    font-size: 15px;
    background: white;
    color: var(--doxap-text-primary);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.login-form .form-control:focus {
    outline: none;
    border-color: var(--doxap-blue-500);
    box-shadow: 0 0 0 4px rgba(79, 100, 229, 0.12);
}
.login-form .form-control::placeholder { color: var(--doxap-text-muted); }

.show-password {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--doxap-text-muted);
    cursor: pointer;
    padding: 4px 6px;
    font-size: 18px;
    z-index: 2;
    transition: color 0.15s;
}
.show-password:hover { color: var(--doxap-blue-500); }

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0 22px;
}
.remember-me {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--doxap-text-primary);
    cursor: pointer;
    margin: 0;
}
.remember-me input {
    accent-color: var(--doxap-blue-500);
    width: 16px;
    height: 16px;
}
.forgot-link {
    font-size: 14px;
    color: var(--doxap-blue-500);
    text-decoration: none;
    font-weight: 500;
}
.forgot-link:hover { color: var(--doxap-purple-500); }

.btn-signin {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(90deg, var(--doxap-blue-500) 0%, var(--doxap-purple-500) 100%);
    box-shadow: 0 10px 24px rgba(79, 100, 229, 0.28);
    transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
    position: relative;
    overflow: hidden;
}
.btn-signin:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(79, 100, 229, 0.36);
}
.btn-signin:active { transform: translateY(0); }
.btn-signin.is-loading { pointer-events: none; opacity: 0.85; }
.btn-signin.is-loading .btn-signin__label { visibility: hidden; }
.btn-signin.is-loading::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 20px; height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: white;
    border-radius: 50%;
    animation: btn-spin 0.7s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }

.login-card__access-helper {
    margin-top: 26px;
    text-align: center;
    border-top: 1px solid var(--doxap-border);
    padding-top: 20px;
}
.access-divider {
    display: block;
    font-size: 14px;
    color: var(--doxap-text-secondary);
    margin-bottom: 6px;
}
.access-link {
    font-size: 14px;
    color: var(--doxap-blue-500);
    font-weight: 500;
    text-decoration: none;
}
.access-link:hover { color: var(--doxap-purple-500); }

/* ─────────────── Section 2 — Middleware landing ─────────────── */
/* padding-bottom inherits 140px from .auth-section (clears section-nav + footer) */
.middleware-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    grid-template-columns: none;
    color: white;
    max-width: 1280px;
    flex: 1;
    width: 100%;
    margin: 0 auto;
}
.middleware-header {
    text-align: center;
    margin-bottom: 22px;
}
.middleware-eyebrow {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #4ade80;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.middleware-title {
    font-size: clamp(28px, 3.4vw, 38px);
    font-weight: 700;
    line-height: 1.12;
    color: white;
    margin: 0 auto 10px;
    max-width: 880px;
}
.middleware-title__highlight {
    background: linear-gradient(90deg, #22C55E 0%, #06B6D4 50%, #4F64E5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.middleware-subtitle {
    font-size: 14.5px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
    max-width: 720px;
    margin: 0 auto;
}

/* ─── NEW Diagram: Source ↔ Hub ↔ Target ─── */
.mw-diagram {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr) 64px minmax(0, 1fr);
    align-items: stretch;
    gap: 6px;
    margin: 0 auto 20px;
    max-width: 1200px;
}

.mw-card {
    position: relative;
    background: linear-gradient(180deg, rgba(11, 23, 65, 0.7) 0%, rgba(11, 23, 65, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 18px 18px 14px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.mw-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}
/* Subtle data-pattern overlay top-right */
.mw-card__corner {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.18), transparent 70%);
    pointer-events: none;
    filter: blur(8px);
}
.mw-card__corner--accent {
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.32), transparent 70%);
    width: 200px; height: 200px;
    top: -60px; right: -60px;
}
.mw-card__corner--purple {
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.22), transparent 70%);
}

.mw-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.mw-card__head-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.10);
    border: 1px solid rgba(34, 197, 94, 0.35);
}
.mw-card__eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: rgba(199, 210, 254, 0.7);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.mw-card__head h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: white;
}

.mw-list {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mw-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.mw-list li:hover {
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.32);
    transform: translateX(2px);
}
.mw-list__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border-radius: 6px;
    background: rgba(124, 58, 237, 0.10);
}
.mw-list__label {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}
.mw-list__chip {
    font-size: 10px;
    font-weight: 600;
    color: #c4b5fd;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.32);
    letter-spacing: 0.04em;
}

.mw-card__foot {
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.mw-card__foot-dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    box-shadow: 0 0 8px currentColor;
    animation: mw-pulse-dot 2.5s ease-in-out infinite;
}
.mw-card__foot-dot--green  { background: #22C55E; color: rgba(34, 197, 94, 0.7); }
.mw-card__foot-dot--purple { background: #C4B5FD; color: rgba(196, 181, 253, 0.7); }
@keyframes mw-pulse-dot {
    0%, 100% { opacity: 1;   transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(1.3); }
}

/* ─── CENTER HUB card ─── */
.mw-card--hub {
    background:
        linear-gradient(180deg, rgba(124, 58, 237, 0.12) 0%, rgba(11, 23, 65, 0.75) 100%);
    border: 1.5px solid rgba(124, 58, 237, 0.6);
    box-shadow:
        0 0 60px rgba(124, 58, 237, 0.35),
        inset 0 0 24px rgba(124, 58, 237, 0.08);
    text-align: center;
    align-items: stretch;
    animation: mw-hub-pulse 4s ease-in-out infinite;
}
@keyframes mw-hub-pulse {
    0%, 100% { box-shadow: 0 0 60px rgba(124, 58, 237, 0.35), inset 0 0 24px rgba(124, 58, 237, 0.08); }
    50%      { box-shadow: 0 0 90px rgba(124, 58, 237, 0.55), inset 0 0 28px rgba(124, 58, 237, 0.14); }
}
.mw-card__halo {
    position: absolute;
    inset: -20px;
    border-radius: 28px;
    background:
        radial-gradient(ellipse at center,
        rgba(124, 58, 237, 0.35) 0%,
        rgba(6, 182, 212, 0.18) 35%,
        transparent 70%);
    z-index: -1;
    filter: blur(28px);
}
.mw-hub__status {
    display: inline-flex;
    align-self: center;
    align-items: center;
    gap: 6px;
    margin: -4px auto 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    font-size: 10.5px;
    font-weight: 600;
    color: #4ade80;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.mw-hub__live {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: mw-live-pulse 1.6s ease-out infinite;
}
@keyframes mw-live-pulse {
    0%   { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0); }
}
.mw-hub__brand {
    display: block;
    width: 170px;
    height: auto;
    margin: 4px auto 8px;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.4));
}
.mw-hub__tagline {
    margin: 0 0 14px;
    font-size: 12px;
    color: rgba(199, 210, 254, 0.85);
    font-style: italic;
    letter-spacing: 0.02em;
}
.mw-hub__caps {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.mw-hub__caps li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(124, 58, 237, 0.32);
    font-size: 12.5px;
    font-weight: 600;
    color: white;
}
.mw-hub__caps-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border-radius: 6px;
    background: rgba(34, 197, 94, 0.12);
}
.mw-card__foot--accent {
    color: rgba(199, 210, 254, 0.8);
    border-top-color: rgba(124, 58, 237, 0.25);
    justify-content: center;
    text-transform: none;
    font-style: italic;
    font-size: 11px;
}

/* Connector lanes */
.mw-connector {
    display: flex;
    align-items: center;
}

@media (max-width: 1100px) {
    .mw-diagram { grid-template-columns: 1fr; gap: 16px; }
    .mw-connector { transform: rotate(90deg); height: 50px; width: 100%; }
}

/* Legacy `.middleware-diagram` left as no-op (still referenced by old CSS,
   but no markup uses it now — safe to keep until cleanup). */
.middleware-diagram { display: none; }
.middleware-diagram-OLD {
    display: grid;
    grid-template-columns: 1fr 60px 1fr 60px 1fr;
    align-items: stretch;
    gap: 8px;
    margin: 0 auto 40px;
    max-width: 1200px;
}
.middleware-node {
    /* Opaque dark tint — readable against the light side of the page gradient. */
    background: rgba(11, 23, 65, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    padding: 20px 20px;
    text-align: center;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.middleware-node:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, 0.55);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
.middleware-node h3 {
    font-size: 15.5px;
    font-weight: 700;
    margin: 10px 0 4px;
    color: white;
}
.middleware-node p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.45;
    margin: 0 0 12px;
}
.middleware-node__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.10), transparent 70%);
    border: 1px solid rgba(34, 197, 94, 0.30);
}
/* Center brand block — wide DOXAP.IO logo on its own (no surrounding box). */
.middleware-node__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px; /* same vertical footprint as the side icons */
    margin: 0 auto;
}
.middleware-node__brand img {
    width: 130px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}
.middleware-node__tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}
.middleware-node__tags li {
    padding: 3px 10px;
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
}
.middleware-node__tags--accent li {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(79, 100, 229, 0.18));
    border-color: rgba(124, 58, 237, 0.4);
    color: white;
}

/* Center node — same dimensions as the side cards. Brand accent carried by
   the border tint, inner halo and the wide DOXAP.IO logo only. */
.middleware-node--center {
    border-color: rgba(124, 58, 237, 0.55);
    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(124, 58, 237, 0.18) inset;
}
.middleware-node__halo {
    position: absolute;
    inset: -20px;
    border-radius: 28px;
    background: radial-gradient(ellipse at center,
        rgba(124, 58, 237, 0.28) 0%,
        rgba(34, 197, 94, 0.16) 35%,
        transparent 70%);
    z-index: -1;
    filter: blur(24px);
}

/* Animated flow connectors */
.middleware-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Three capabilities row */
.middleware-capabilities {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 1100px;
}
.middleware-capabilities li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.middleware-capability__icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.10), transparent 70%);
    border: 1px solid rgba(34, 197, 94, 0.35);
}
.middleware-capabilities h4 {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin: 0 0 4px;
}
.middleware-capabilities p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
    margin: 0;
}

.middleware-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}
.middleware-cta .btn-book-demo {
    margin-top: 0;
}
.middleware-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13.5px;
    text-decoration: none;
    transition: color 0.2s;
}
.middleware-back:hover { color: white; }

/* Responsive — middleware diagram stacks on mobile */
@media (max-width: 1100px) {
    .middleware-title { font-size: 38px; }
    .middleware-diagram {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .middleware-connector {
        transform: rotate(90deg);
        height: 60px;
        width: 60px;
    }
    .middleware-capabilities {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}
@media (max-width: 768px) {
    .middleware-title { font-size: 30px; }
    .middleware-subtitle { font-size: 16px; }
    .middleware-header { margin-bottom: 32px; }
}

/* ─────────────── Section 3 — Data Bridge landing ─────────────── */
.auth-section--databridge {
    padding-top: 76px;
    padding-bottom: 90px;
}
.databridge-inner {
    flex: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 0 24px;
}
.databridge-header {
    text-align: left;
    margin-bottom: 8px;
}
.databridge-eyebrow {
    color: #4F64E5;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
}
.databridge-title {
    margin: 4px 0 0;
    font-size: 32px;
    font-weight: 700;
    color: white;
    border-bottom: 2px solid rgba(124, 58, 237, 0.6);
    padding-bottom: 8px;
    display: inline-block;
}

/* Grid: 5 columns */
.databridge-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(0, 0.9fr)
        minmax(0, 1.1fr)
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);
    gap: 14px;
    align-items: stretch;
}

.databridge-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}
.databridge-col__header {
    text-align: center;
    margin-bottom: 4px;
}
.databridge-col__header h3 {
    font-size: 12px;
    font-weight: 700;
    color: #c7d2fe;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}
.databridge-col__header p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11.5px;
    font-style: italic;
}
.databridge-col__header--accent h3 { color: #c4b5fd; }
.databridge-col__header--bridge h3 { color: #67E8F9; font-size: 13px; }
.databridge-col__footer {
    margin-top: auto;
    padding-top: 8px;
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    font-style: italic;
}

/* Generic source/channel item */
.db-item {
    background: rgba(11, 23, 65, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    backdrop-filter: blur(8px);
    transition: border-color 0.2s, transform 0.2s;
}
.db-item:hover {
    border-color: rgba(124, 58, 237, 0.45);
    transform: translateY(-2px);
}
.db-item__main {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    flex: 1;
}
.db-item__title {
    font-size: 12.5px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}
.db-item__brands {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.3;
}
.db-item__logos {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-top: 2px;
}
.db-item__logos img {
    width: 16px;
    height: 16px;
    opacity: 0.85;
    object-fit: contain;
}
.db-item__chips {
    display: flex;
    gap: 3px;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 110px;
}
.db-chip {
    font-size: 9.5px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.35);
    color: #c4b5fd;
    letter-spacing: 0.02em;
}

/* Connection Library — column 2 */
.databridge-col--connectors {
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.06), rgba(124, 58, 237, 0.02));
    border: 1px solid rgba(124, 58, 237, 0.32);
    border-radius: 14px;
    padding: 14px 12px;
}
.db-connectors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.db-connector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.2s;
}
.db-connector:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.4);
}
.db-connector__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}
.db-connector--custom {
    grid-column: 1 / -1;
    justify-content: center;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.12), rgba(79, 100, 229, 0.12));
    border-color: rgba(124, 58, 237, 0.4);
    font-weight: 600;
}

/* Data Bridge — column 3 hero */
.databridge-col--bridge {
    align-items: center;
}
.db-bridge-card {
    width: 100%;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.06), rgba(11, 23, 65, 0.7));
    border: 1.5px solid rgba(103, 232, 249, 0.5);
    border-radius: 16px;
    padding: 16px 14px;
    position: relative;
    box-shadow: 0 0 60px rgba(6, 182, 212, 0.25), inset 0 0 30px rgba(103, 232, 249, 0.08);
    text-align: center;
}
.db-bridge-card__halo {
    position: absolute;
    inset: -10px;
    border-radius: 22px;
    background: radial-gradient(ellipse at center,
        rgba(6, 182, 212, 0.28) 0%,
        rgba(34, 197, 94, 0.14) 35%,
        transparent 70%);
    z-index: -1;
    filter: blur(28px);
}
.db-bridge-card__logo {
    width: 130px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    margin: 6px auto 12px;
    display: block;
}
.db-bridge-capabilities {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.db-bridge-capabilities li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    background: rgba(11, 23, 65, 0.55);
    border: 1px solid rgba(103, 232, 249, 0.25);
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 500;
    color: white;
}
.db-bridge-card__tag {
    margin: 8px 0 8px;
    font-size: 11px;
    color: #67E8F9;
    font-style: italic;
}
.db-bridge-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(11, 23, 65, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.8);
}

/* Integrators — column 4 */
.db-integrator {
    background: rgba(11, 23, 65, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(8px);
    transition: border-color 0.2s, transform 0.2s;
}
.db-integrator:hover {
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateY(-2px);
}
.db-integrator img { opacity: 0.85; }
.db-integrator--muted {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    font-size: 12px;
}
.db-integrator--custom {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.10), rgba(79, 100, 229, 0.10));
    border-color: rgba(124, 58, 237, 0.4);
    color: #c4b5fd;
}

/* Bottom features bar */
.databridge-features {
    margin-top: 8px;
    background: rgba(11, 23, 65, 0.55);
    border: 1px solid rgba(79, 100, 229, 0.45);
    border-radius: 14px;
    padding: 16px 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.db-feature {
    display: flex;
    gap: 14px;
    align-items: center;
}
.db-feature__icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.10), transparent 70%);
    border: 1px solid rgba(34, 197, 94, 0.35);
}
.db-feature h4 {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.db-feature p {
    margin: 2px 0 0;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .databridge-grid { grid-template-columns: 1fr; }
    .databridge-features { grid-template-columns: 1fr; gap: 14px; }
}

/* ─────────────── Contact Us / Book a Demo modal — modern glassmorphism ─────────────── */
.contactus-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 18, 42, 0.55);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.contactus-overlay.is-open { display: flex; opacity: 1; }

.contactus-modal {
    /* Translucent dark glass card */
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%),
        rgba(15, 23, 50, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border-radius: 22px;
    box-shadow:
        0 40px 100px -20px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 1px 0 0 rgba(255, 255, 255, 0.1) inset;
    padding: 34px 32px 28px;
    width: min(100%, 480px);
    position: relative;
    color: rgba(255, 255, 255, 0.92);
    animation: card-rise 0.32s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.contactus-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.65);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.contactus-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}
.contactus-modal h2 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}
.contactus-subtitle {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}
.contactus-form .form-group { margin-bottom: 14px; }
.contactus-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}
.contactus-form input,
.contactus-form textarea,
.contactus-form select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    font: inherit;
    font-size: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.contactus-form input::placeholder,
.contactus-form textarea::placeholder { color: rgba(255, 255, 255, 0.3); }
.contactus-form textarea { resize: vertical; min-height: 96px; }
.contactus-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 36px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23cbd5e1' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px 18px;
    background-color: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}
.contactus-form select option { background: #0f1732; color: #fff; }
.contactus-form input:focus,
.contactus-form textarea:focus,
.contactus-form select:focus {
    outline: none;
    border-color: rgba(34, 197, 94, 0.55);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
    background: rgba(255, 255, 255, 0.06);
}
.contactus-result {
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 13.5px;
    margin-bottom: 12px;
    border: 1px solid transparent;
}
.contactus-result.is-success {
    background: rgba(34, 197, 94, 0.12);
    color: #86efac;
    border-color: rgba(34, 197, 94, 0.4);
}
.contactus-result.is-error {
    background: rgba(244, 63, 94, 0.12);
    color: #fda4af;
    border-color: rgba(244, 63, 94, 0.4);
}
.contactus-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 22px;
}
.contactus-cancel {
    padding: 11px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.contactus-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}
.contactus-actions .btn-signin {
    width: auto;
    min-width: 140px;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, #22C55E 0%, #06B6D4 50%, #7C3AED 100%);
    border: 0;
    box-shadow: 0 10px 26px -10px rgba(34, 197, 94, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}
.contactus-actions .btn-signin:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px -10px rgba(34, 197, 94, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

/* ─────────────── Footer ─────────────── */
.auth-footer {
    /* Pinned to viewport bottom — visible on every landing section. */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 12px 40px;
    background: var(--doxap-footer-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 13px;
    color: var(--doxap-text-secondary);
}
.auth-footer__secure {
    display: flex;
    align-items: center;
    gap: 8px;
}
.auth-footer__secure .bi-shield-check { color: var(--doxap-green-500); font-size: 16px; }
.auth-footer__links {
    display: flex;
    align-items: center;
    gap: 12px;
}
.auth-footer__links a {
    color: var(--doxap-text-secondary);
    text-decoration: none;
}
.auth-footer__links a:hover { color: var(--doxap-blue-500); }
.auth-footer__sep { color: var(--doxap-text-muted); }
.auth-footer__copyright { text-align: right; }

/* ─────────────── Responsive ─────────────── */
/* ─────────────── Responsive ─────────────── */
/* Tablet (≤1100px): compress + slightly smaller hero typography. */
@media (max-width: 1100px) {
    .auth-page__left-inner { padding-left: 0; }
    .auth-hero { font-size: 40px; }
    .auth-intro { font-size: 16px; }
    .auth-benefits { margin-left: 0; }
    .auth-secure-note { margin-left: 0; }
    .auth-section__inner {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 440px);
        gap: 28px;
        padding: 0 24px 60px;
    }
    .login-card { padding: 32px 28px; }
}

/* Narrow desktop / wide tablet (≤960px): single column, login card centered,
   marketing left panel hidden, footer stacks. */
@media (max-width: 960px) {
    .auth-page__topbar { padding: 14px 20px; }
    .auth-page__brand-tagline { display: none; }
    .auth-page__brand-logo { width: 130px; }

    .auth-section__inner {
        grid-template-columns: minmax(0, 1fr);
        padding: 0 20px 40px;
        gap: 24px;
        justify-items: center;
    }
    .auth-page__left { display: none; }
    .auth-page__right { width: 100%; padding: 12px 0; }

    .auth-page__data-wave { width: 140vw; opacity: 0.45; }

    .login-card {
        width: min(100%, 440px);
        padding: 28px 24px;
        border-radius: 20px;
        margin: 0 auto;
    }

    .auth-section { padding-top: 84px; padding-bottom: 96px; }
    .scroll-indicator { bottom: 60px; }
    .scroll-indicator__label { font-size: 12px; }

    .auth-footer {
        grid-template-columns: minmax(0, 1fr);
        text-align: center;
        gap: 6px;
        padding: 10px 16px;
        font-size: 12px;
    }
    .auth-footer__links { justify-content: center; }
    .auth-footer__copyright { text-align: center; }

    /* Middleware section: stack the 3 cards vertically. */
    .mw-diagram {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .mw-connector { display: none; }
    .middleware-title { font-size: 30px; }
    .middleware-subtitle { font-size: 14.5px; }
    .middleware-capabilities {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* True mobile (≤480px): tighten card padding + Contact modal padding. */
@media (max-width: 480px) {
    .auth-page__topbar { padding: 12px 14px; }
    .auth-page__brand-logo { width: 100px; }
    .auth-lang-toggle { padding: 6px 10px; font-size: 13px; }
    /* Hide the language NAME, keep the flag + chevron — saves precious width. */
    .auth-lang-toggle .auth-lang-current-name { display: none; }
    .auth-lang-menu { min-width: 160px; right: -8px; }

    .auth-section { padding-top: 72px; padding-bottom: 88px; }
    .auth-section__inner { padding: 0 14px 24px; }

    .login-card {
        padding: 22px 18px;
        border-radius: 16px;
        width: 100%;
        max-width: 100%;
    }
    .login-card__logo img { height: 28px; }
    .login-card__subtitle { font-size: 14px; margin-bottom: 22px; }
    .login-form .form-control { font-size: 14.5px; padding: 12px 14px 12px 40px; }
    .input-icon { left: 12px; font-size: 15px; }
    .form-label { font-size: 13px; }
    .form-row { flex-direction: column; align-items: flex-start; gap: 8px; }
    .forgot-link { font-size: 13px; }
    .btn-signin { min-height: 48px; font-size: 15px; }

    /* Contact / Book a Demo modal */
    .contactus-overlay { padding: 14px; }
    .contactus-modal { padding: 22px 18px; border-radius: 16px; }
    .contactus-modal h2 { font-size: 19px; }
    .contactus-subtitle { font-size: 13px; }

    /* Section 2 mobile */
    .middleware-title { font-size: 26px; }
    .middleware-subtitle { font-size: 13.5px; }
    .mw-card { padding: 16px 14px; }
    .mw-card__head h3 { font-size: 14px; }
    .mw-list li { padding: 7px 10px; }
    .mw-list__label { font-size: 12.5px; }

    .auth-footer { font-size: 11.5px; padding: 8px 12px; }
    .auth-footer__secure { display: none; }   /* save space — shield line not critical on mobile */
}

/* Very small screens (≤360px): final squeeze. */
@media (max-width: 360px) {
    .auth-page__topbar { padding: 10px 10px; }
    .auth-page__brand-logo { width: 80px; }
    .auth-lang-toggle { padding: 4px 8px; }
    .login-card { padding: 18px 14px; }
    .login-card__subtitle { font-size: 13px; }
    .btn-signin { min-height: 44px; font-size: 14px; }
}

/* ─────────────── Accessibility ─────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
.login-form .form-control:focus-visible,
.btn-signin:focus-visible,
.show-password:focus-visible,
.auth-lang-toggle:focus-visible,
.auth-lang-item:focus-visible,
.forgot-link:focus-visible,
.access-link:focus-visible {
    outline: 2px solid var(--doxap-blue-500);
    outline-offset: 2px;
}

/* ═════════════════════════════════════════════════════════════════════════
   SHOWCASE SECTIONS — Apple-style: full-viewport sections, tinted backgrounds,
   varied indentation patterns. Each section snaps to viewport height.
   ═════════════════════════════════════════════════════════════════════════ */

/* Base — strict 100vh fit: flex column that GROWS inner content + pins section-nav at the bottom.
   Topbar measured ~90px (logo 30 + tagline 14 + gap 4 + padding 40), footer ~42px.
   Padding = topbar/footer height + breathing room. */
.auth-section--showcase {
    height: 100vh;
    min-height: 100vh;
    padding-top: 102px;
    padding-bottom: 170px;
    overflow: hidden;
    isolation: isolate;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Per-section background tints — soft centered washes, subtle so the section
   feels like ONE uniform dark canvas (no harsh light/dark splits). */
.auth-section--showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 50%, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
}
.auth-section--data-bridge::before  { background: radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.06) 0%, transparent 70%); }
.auth-section--cockpit::before      { background: radial-gradient(ellipse at 50% 50%, rgba(99, 102, 241, 0.07) 0%, transparent 70%); }
.auth-section--coverage::before     { background: radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.07) 0%, transparent 70%); }
.auth-section--catalog::before      { background: radial-gradient(ellipse at 50% 50%, rgba(34, 197, 94, 0.06) 0%, transparent 70%); }
.auth-section--inventory::before    { background: radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.07) 0%, transparent 70%); }
.auth-section--connection::before   { background: radial-gradient(ellipse at 50% 50%, rgba(124, 58, 237, 0.07) 0%, transparent 70%); }
.auth-section--pnl::before          { background: radial-gradient(ellipse at 50% 50%, rgba(124, 58, 237, 0.07) 0%, transparent 70%); }
.auth-section--ticketing::before    { background: radial-gradient(ellipse at 50% 50%, rgba(244, 114, 182, 0.06) 0%, transparent 70%); }
.auth-section--orders::before       { background: radial-gradient(ellipse at 50% 50%, rgba(34, 197, 94, 0.05) 0%, transparent 70%); }
.auth-section--trustedby::before    { background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%); }
.auth-section--testimonial::before  { background: radial-gradient(ellipse at 50% 50%, rgba(124, 58, 237, 0.06) 0%, transparent 70%); }

/* Shared inner — flex grows inside section, leaves room for section-nav at bottom */
.showcase-inner {
    flex: 1;
    min-height: 0;
    width: 100%;
    margin: 0 auto;
}

/* Mock window — capped height, centered vertically in row. Internal content
   is content-sized (no flex stretch) so cards aren't artificially tall. */
.showcase-mock {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}
.showcase-mock .mock-window {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}
.showcase-mock .mock-window__bar { flex-shrink: 0; }
/* Uniform body height across every split-layout mock so all schemas read at the
   same scale; inner content flexes to fill it (see per-module flex:1 regions). */
.showcase-mock .mock-window__body {
    height: clamp(400px, 56vh, 540px);
    min-height: 0;
    max-height: none;
    flex: 1 1 auto;
}

/* ─── Pattern A: balanced 2-col (text + mock side by side) ─── */
.showcase-layout-split .showcase-inner {
    max-width: 1320px;
    padding: 0 56px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    grid-template-rows: 1fr;
    gap: 56px;
    align-items: stretch;
}
.showcase-layout-split.showcase-text-right .showcase-inner > .showcase-text { order: 2; padding-left: 16px; }
.showcase-layout-split.showcase-text-right .showcase-inner > .showcase-mock { order: 1; }
.showcase-layout-split.showcase-text-left  .showcase-inner > .showcase-text { order: 1; padding-right: 16px; }
.showcase-layout-split.showcase-text-left  .showcase-inner > .showcase-mock { order: 2; }

/* ─── Pattern B: full-bleed mock (mock extends past container edge) ─── */
.showcase-layout-bleed-right .showcase-inner,
.showcase-layout-bleed-left  .showcase-inner {
    max-width: 1480px;
    display: grid;
    grid-template-rows: 1fr;
    gap: 48px;
    align-items: stretch;
}
.showcase-layout-bleed-right .showcase-inner {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.5fr);
    padding-left: 56px;
    padding-right: 24px;
}
.showcase-layout-bleed-right .showcase-mock { margin-right: -56px; }

.showcase-layout-bleed-left .showcase-inner {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.78fr);
    padding-left: 24px;
    padding-right: 56px;
}
.showcase-layout-bleed-left .showcase-mock { margin-left: -56px; }

/* ─── Data Bridge schema hero — image-first, fills 100vh ─── */
.databridge-inner {
    max-width: 1480px;
    width: 100%;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
}
.databridge-eyebrow { margin-bottom: 0; }

.databridge-figure {
    flex: 1;
    min-height: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.databridge-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 14px;
    box-shadow:
        0 30px 80px -20px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 640px) {
    .databridge-inner { padding: 0 16px; gap: 14px; }
    .databridge-image { border-radius: 10px; }
}

/* ─── Pattern C: centered, typography-first (used for Trusted By + Testimony) ─── */
.showcase-layout-centered .showcase-inner {
    max-width: 1100px;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 28px;
}
.showcase-layout-centered .showcase-text { max-width: 720px; padding: 0; }
.showcase-layout-centered .showcase-desc { margin: 0 auto; max-width: 600px; }
.showcase-layout-centered .showcase-mock { width: 100%; max-width: 980px; }

.showcase-text {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.showcase-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--doxap-cyan-400, #2DD4BF);
    padding: 6px 14px;
    border: 1px solid rgba(45, 212, 191, 0.35);
    border-radius: 999px;
    background: rgba(45, 212, 191, 0.08);
    margin-bottom: 18px;
}

.showcase-title {
    font-size: clamp(32px, 4.4vw, 56px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0 0 22px;
    color: #fff;
}
.showcase-title__highlight {
    background: linear-gradient(90deg, #22C55E 0%, #06B6D4 50%, #4F64E5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.showcase-layout-centered .showcase-title {
    font-size: clamp(40px, 5.2vw, 68px);
    letter-spacing: -0.03em;
}

.showcase-desc {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    max-width: 460px;
}
.showcase-layout-centered .showcase-desc { font-size: 18px; }

.showcase-cta__arrow { transition: transform 0.18s ease; }
.showcase-cta:hover .showcase-cta__arrow { transform: translateX(3px); }

/* ─── Per-section nav bar (chevrons + Book a Demo) — absolutely pinned at section bottom
   so it's always visible regardless of content height. Section has overflow: hidden so
   content extending past the nav area is cleanly clipped. */
.section-nav {
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    z-index: 5;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.section-nav__side {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 96px;
}
.section-nav__side--right { justify-content: flex-end; }

.section-nav__chevron {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.section-nav__chevron--up   { animation: scroll-bounce-up   2s ease-in-out infinite; }
.section-nav__chevron--down { animation: scroll-bounce      2s ease-in-out infinite; }
.section-nav__chevron:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}
.section-nav__chevron svg { width: 28px; height: 28px; stroke-width: 2.2; }
@keyframes scroll-bounce-up {
    0%, 100% { transform: translateY(0);   opacity: 0.85; }
    50%      { transform: translateY(-8px); opacity: 1;   }
}

.section-nav__hint {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

/* Bottom nav on bleed layouts still respects max-width 1320 */
.showcase-layout-bleed-right .section-nav,
.showcase-layout-bleed-left  .section-nav { max-width: 1480px; }

@media (max-width: 1180px) {
    .section-nav { padding: 0 36px; }
}
@media (max-width: 960px) {
    .section-nav { padding: 0 24px; margin-top: 12px; }
    .section-nav__side { min-width: 0; }
    .section-nav__hint { display: none; }
}
@media (max-width: 480px) {
    .section-nav__chevron { width: 38px; height: 38px; }
}

/* ─── Mock browser window ─── */

.showcase-mock {
    perspective: 1400px;
}

.mock-window {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 30px 80px -10px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.04),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.06);
    transform: rotateY(-2deg) rotateX(2deg);
    transition: transform 0.6s ease;
}

.showcase-text-left .mock-window  { transform: rotateY( 2deg) rotateX(2deg); }

.showcase-mock:hover .mock-window {
    transform: rotateY(0) rotateX(0);
}

.mock-window__bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    background: rgba(7, 18, 42, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-window__dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}
.mock-window__dot--r { background: #ff5f57; }
.mock-window__dot--y { background: #febc2e; }
.mock-window__dot--g { background: #28c840; }

.mock-window__url {
    margin-left: 12px;
    font-size: 11px;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.4);
    font-family: ui-monospace, "SF Mono", Consolas, monospace;
}

.mock-window__body {
    display: flex;
    height: clamp(280px, 48vh, 460px);
    background: #f4f6fa;  /* light admin content area */
}
.showcase-layout-centered .mock-window__body { height: clamp(300px, 52vh, 520px); }
.showcase-layout-bleed-right .mock-window__body,
.showcase-layout-bleed-left  .mock-window__body { height: clamp(300px, 56vh, 540px); }

/* ─── Sidebar (shared across all modules) — stays dark navy like real admin ─── */

.mock-sidebar {
    width: 56px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 0;
    gap: 14px;
    background: #0b1530;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.mock-sidebar__logo {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #22C55E 0%, #06B6D4 50%, #7C3AED 100%);
    margin-bottom: 8px;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
}

.mock-sidebar__item {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    position: relative;
}
.mock-sidebar__item::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.18);
}
.mock-sidebar__item--active {
    background: rgba(34, 197, 94, 0.18);
    box-shadow: inset 2px 0 0 #22C55E, 0 0 0 1px rgba(34, 197, 94, 0.3);
}
.mock-sidebar__item--active::after { background: #22C55E; }

/* ─── Content area ─── */

.mock-content {
    flex: 1;
    min-width: 0;
    min-height: 0;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    color: #1e293b;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.mock-content--split {
    flex-direction: row;
    padding: 0;
    gap: 0;
}

/* ─── Reusable atoms — dark-on-light (realistic admin) ─── */

.mock-line {
    display: inline-block;
    height: 8px;
    background: rgba(15, 23, 42, 0.16);
    border-radius: 4px;
}
.mock-line--30 { width: 30%; }
.mock-line--40 { width: 40%; }
.mock-line--50 { width: 50%; }
.mock-line--60 { width: 60%; }
.mock-line--70 { width: 70%; }
.mock-line--80 { width: 80%; }
.mock-line--dim { background: rgba(15, 23, 42, 0.08); height: 6px; }
.mock-line--accent {
    background: linear-gradient(90deg, #22C55E 0%, #06B6D4 100%);
    height: 9px;
}

.mock-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 4px;
}

.mock-search {
    flex: 1;
    height: 28px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    position: relative;
    max-width: 240px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}
.mock-search::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border: 1.5px solid rgba(15, 23, 42, 0.4);
    border-radius: 50%;
}

.mock-chip {
    height: 24px;
    width: 56px;
    border-radius: 5px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
}
.mock-chip--accent {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.18) 0%, rgba(6, 182, 212, 0.18) 100%);
    border: 1px solid rgba(34, 197, 94, 0.45);
}

.mock-badge {
    display: inline-block;
    height: 5px;
    width: 30px;
    border-radius: 999px;
    margin-top: 4px;
}
.mock-badge--green  { background: #22C55E; }
.mock-badge--cyan   { background: #06B6D4; }
.mock-badge--purple { background: #7C3AED; }

.mock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.mock-dot--green  { background: #22C55E; box-shadow: 0 0 6px rgba(34, 197, 94, 0.6); }
.mock-dot--cyan   { background: #06B6D4; box-shadow: 0 0 6px rgba(6, 182, 212, 0.6); }
.mock-dot--purple { background: #7C3AED; box-shadow: 0 0 6px rgba(124, 58, 237, 0.6); }

.mock-pill {
    display: inline-block;
    padding: 3px 10px;
    font-size: 9px;
    height: 18px;
    width: 56px;
    border-radius: 999px;
}
.mock-pill--open    { background: rgba(34, 197, 94, 0.18);  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.45); }
.mock-pill--pending { background: rgba(245, 158, 11, 0.18); box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.45); }
.mock-pill--closed  { background: rgba(15, 23, 42, 0.06);   box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.15); }

.mock-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
}
.mock-avatar--xs    { width: 18px; height: 18px; margin-right: 8px; vertical-align: middle; }
.mock-avatar--green  { background: linear-gradient(135deg, #22C55E, #16a34a); }
.mock-avatar--cyan   { background: linear-gradient(135deg, #06B6D4, #0891B2); }
.mock-avatar--purple { background: linear-gradient(135deg, #7C3AED, #5B21B6); }

/* ─── Catalog (product grid with SVG illustrations) ─── */

.mock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    flex: 1;
    min-height: 0;
}

.mock-product {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 10px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.mock-product__img {
    width: 100%;
    aspect-ratio: 1.5 / 1;
    border-radius: 6px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    margin-bottom: 4px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}
.mock-product__img svg {
    width: 48%;
    height: 48%;
    opacity: 0.85;
}

/* ─── Inventory Dashboard ─── */

.mock-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.mock-kpi {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 8px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
    min-height: 0;
}
.mock-kpi::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #22C55E 0%, #06B6D4 100%);
    opacity: 0.4;
}

.mock-kpi__value {
    width: 60%;
    height: 14px;
    border-radius: 4px;
    background: rgba(15, 23, 42, 0.45);
}
.mock-kpi__value--accent {
    background: linear-gradient(135deg, #22C55E 0%, #06B6D4 100%);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.25);
}

.mock-kpi__icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    color: rgba(15, 23, 42, 0.3);
}
.mock-kpi__delta {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 600;
    color: #16a34a;
}
.mock-kpi__delta--down { color: #dc2626; }

/* ─── Cockpit (orchestration schema) mock ─── */
.mock-cockpit__content { display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.mock-ck-status { display: flex; align-items: center; gap: 8px; }
.mock-ck-stat { display: inline-flex; align-items: center; gap: 6px; height: 16px; padding: 0 8px; border-radius: 999px; background: rgba(15, 23, 42, 0.05); }
.mock-ck-stat__dot { width: 6px; height: 6px; border-radius: 50%; }
.mock-ck-stat--ok   .mock-ck-stat__dot { background: #22C55E; }
.mock-ck-stat--sync .mock-ck-stat__dot { background: #06B6D4; }
.mock-ck-stat--warn .mock-ck-stat__dot { background: #f59e0b; }
.mock-ck-stat::after { content: ""; display: block; width: 30px; height: 5px; border-radius: 3px; background: rgba(15, 23, 42, 0.13); }
.mock-ck-status__spacer { flex: 1; }
.mock-ck-clock { width: 46px; height: 8px; border-radius: 4px; background: rgba(15, 23, 42, 0.08); }

.mock-ck-flow { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 2px 0; }
.mock-ck-col { display: flex; flex-direction: column; gap: 7px; }
.mock-ck-node {
    width: 46px; height: 24px; border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 700; color: #fff;
    background: rgba(15, 23, 42, 0.18);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
}
.mock-ck-node--green  { background: linear-gradient(135deg, #16a34a, #22C55E); }
.mock-ck-node--cyan   { background: linear-gradient(135deg, #0891B2, #06B6D4); }
.mock-ck-node--purple { background: linear-gradient(135deg, #6D28D9, #7C3AED); }
.mock-ck-link { position: relative; width: 26px; height: 2px; flex-shrink: 0; }
.mock-ck-link__dash {
    position: absolute; inset: 0;
    background-image: linear-gradient(90deg, rgba(99, 102, 241, 0.55) 60%, transparent 0);
    background-size: 8px 2px; background-repeat: repeat-x;
}
.mock-ck-link::after {
    content: ""; position: absolute; right: -2px; top: 50%; transform: translateY(-50%);
    border-left: 6px solid rgba(99, 102, 241, 0.75);
    border-top: 4px solid transparent; border-bottom: 4px solid transparent;
}
.mock-ck-hub {
    position: relative; width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #6366f1, #7c3aed);
    box-shadow: 0 8px 22px rgba(99, 102, 241, 0.4);
}
.mock-ck-hub svg { width: 24px; height: 24px; stroke: #fff; }
.mock-ck-hub__pulse {
    position: absolute; inset: -6px; border-radius: 20px;
    border: 2px solid rgba(124, 58, 237, 0.45);
    animation: ckPulse 2.4s ease-out infinite;
}
@keyframes ckPulse {
    0%   { transform: scale(0.92); opacity: 0.7; }
    100% { transform: scale(1.16); opacity: 0; }
}
/* panels */
.mock-ck-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mock-ck-panel {
    background: #fff; border: 1px solid rgba(15, 23, 42, 0.07); border-radius: 10px;
    padding: 9px 10px; display: flex; flex-direction: column; gap: 8px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.mock-ck-panel__title { width: 40%; height: 6px; border-radius: 3px; background: rgba(15, 23, 42, 0.13); }
.mock-ck-ttl { font-size: 9px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; color: rgba(15, 23, 42, 0.5); }
.mock-ck-flow-legend { display: flex; justify-content: space-between; margin-top: 2px; font-size: 7.5px; font-weight: 600; letter-spacing: 0.3px; text-transform: uppercase; color: rgba(15, 23, 42, 0.34); }
.mock-ck-panel--flow { align-items: stretch; }
.mock-ck-panel--flow .mock-ck-flow { flex: 1; }

/* action center alerts */
.mock-ck-alert { display: flex; align-items: center; gap: 7px; }
.mock-ck-alert__dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.mock-ck-alert__dot--red   { background: #ef4444; }
.mock-ck-alert__dot--amber { background: #f59e0b; }
.mock-ck-alert__dot--cyan  { background: #06B6D4; }
.mock-ck-alert__dot--green { background: #22C55E; }
.mock-ck-alert__txt { font-size: 10px; font-weight: 600; color: #475569; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* business pulse */
.mock-ck-pulse-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.mock-ck-metric { display: flex; flex-direction: column; gap: 4px; background: rgba(15, 23, 42, 0.03); border-radius: 8px; padding: 7px; }
.mock-ck-metric__num { width: 64%; height: 9px; border-radius: 4px; background: rgba(15, 23, 42, 0.2); }
.mock-ck-metric__num--accent { background: linear-gradient(135deg, #16a34a, #0891B2); }
.mock-ck-metric__label { font-size: 9px; font-weight: 700; letter-spacing: 0.3px; text-transform: uppercase; color: rgba(15, 23, 42, 0.5); }
.mock-ck-metric__label--accent { color: #0891B2; }
.mock-ck-spark { width: 100%; height: 16px; display: block; }
.mock-ck-metric__delta { font-size: 9px; font-weight: 700; color: #16a34a; }
.mock-ck-metric__delta--down { color: #dc2626; }

/* data streams */
.mock-ck-stream { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mock-ck-stream__name { font-size: 10px; font-weight: 600; color: #475569; }
.mock-ck-pill { font-size: 8px; font-weight: 700; letter-spacing: 0.3px; text-transform: uppercase; padding: 2px 7px; border-radius: 999px; flex-shrink: 0; }
.mock-ck-pill--ok   { color: #16a34a; background: rgba(34, 197, 94, 0.14); }
.mock-ck-pill--sync { color: #0891B2; background: rgba(6, 182, 212, 0.14); }
.mock-ck-pill--warn { color: #d97706; background: rgba(245, 158, 11, 0.16); }

/* quick access */
.mock-ck-qa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.mock-ck-qa { display: flex; align-items: center; justify-content: center; height: 22px; border-radius: 7px; background: rgba(15, 23, 42, 0.05); border: 1px solid rgba(15, 23, 42, 0.06); font-size: 8.5px; font-weight: 600; color: #64748b; }

/* row 3: stream health / errors / last orders */
.mock-ck-row--3 { grid-template-columns: repeat(3, 1fr); }
.mock-ck-bar { display: flex; align-items: center; gap: 7px; }
.mock-ck-bar__label { width: 42px; flex-shrink: 0; font-size: 9px; font-weight: 600; color: #475569; }
.mock-ck-bar__track { position: relative; flex: 1; height: 7px; border-radius: 4px; background: rgba(15, 23, 42, 0.08); overflow: hidden; }
.mock-ck-bar__fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 4px; }
.mock-ck-bar__fill--green { background: linear-gradient(90deg, #16a34a, #22C55E); }
.mock-ck-bar__fill--cyan  { background: linear-gradient(90deg, #0891B2, #06B6D4); }
.mock-ck-bar__fill--amber { background: linear-gradient(90deg, #d97706, #f59e0b); }
.mock-ck-bar__pct { width: 24px; flex-shrink: 0; text-align: right; font-size: 9px; font-weight: 700; color: #475569; }

.mock-ck-errline { display: flex; align-items: center; gap: 7px; }
.mock-ck-errline__txt { flex: 1; min-width: 0; font-size: 10px; font-weight: 600; color: #475569; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-ck-count { flex-shrink: 0; font-size: 9px; font-weight: 700; color: #dc2626; background: rgba(239, 68, 68, 0.1); border-radius: 999px; padding: 1px 7px; }
.mock-ck-count--amber { color: #d97706; background: rgba(245, 158, 11, 0.13); }

.mock-ck-order { display: flex; align-items: center; gap: 8px; }
.mock-ck-order__sku { width: 16px; height: 16px; border-radius: 4px; flex-shrink: 0; background: rgba(15, 23, 42, 0.12); }
.mock-ck-order__sku--green  { background: linear-gradient(135deg, #16a34a, #22C55E); }
.mock-ck-order__sku--cyan   { background: linear-gradient(135deg, #0891B2, #06B6D4); }
.mock-ck-order__sku--purple { background: linear-gradient(135deg, #6D28D9, #7C3AED); }
.mock-ck-order__name { flex: 1; min-width: 0; font-size: 10px; font-weight: 600; color: #475569; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-ck-order__amt { flex-shrink: 0; font-size: 9.5px; font-weight: 700; color: #0f172a; }

/* ─── Coverage (comparison matrix board, on-brand dark, no app window) ─── */
.coverage-inner { display: flex; flex-direction: column; align-items: center; }
.auth-section--coverage .showcase-text { margin-bottom: 0; }
.auth-section--coverage .showcase-title { font-size: clamp(24px, 3.2vw, 38px); margin-bottom: 8px; }
.auth-section--coverage .showcase-desc { margin-bottom: 0; }
.coverage-board { width: 100%; max-width: 940px; margin: 18px auto 0; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 12px 16px 14px; }
.coverage-board__scroll { max-height: 50vh; overflow: auto; }
.coverage-board__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.coverage-board__title { font-size: 13px; font-weight: 700; color: #e2e8f0; letter-spacing: 0.3px; }
.coverage-legend { display: flex; gap: 14px; font-size: 11px; color: rgba(255, 255, 255, 0.55); }
.coverage-legend i { font-style: normal; margin-right: 3px; }
.coverage-legend .f { color: #22c55e; }
.coverage-legend .p { color: #f59e0b; }
.coverage-legend .n { color: rgba(255, 255, 255, 0.3); }
.coverage-board__scroll { overflow-x: auto; }
.cov-table { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 13px; color: #e2e8f0; }
.cov-table th, .cov-table td { padding: 7px 8px; text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.07); }
.cov-table thead th { border-top: 0; font-size: 11.5px; font-weight: 700; color: rgba(255, 255, 255, 0.55); vertical-align: bottom; }
.cov-table .cov-cap { text-align: left; font-weight: 600; color: #f1f5f9; white-space: nowrap; }
.cov-table thead .cov-cap { color: rgba(255, 255, 255, 0.55); }
.cov-table thead th.cov-dx { color: #a5b4fc; }
.cov-table td.cov-dx, .cov-table th.cov-dx { background: rgba(99, 102, 241, 0.16); }
.cov-sec td { text-align: left; background: rgba(255, 255, 255, 0.04); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255, 255, 255, 0.5); font-weight: 700; padding: 6px 10px; }
.cov-table .f { color: #22c55e; font-size: 14px; }
.cov-table .p { color: #f59e0b; font-size: 14px; }
.cov-table .n { color: rgba(255, 255, 255, 0.25); font-size: 14px; }
.coverage-board__link { display: inline-flex; align-items: center; gap: 4px; margin-top: 14px; font-size: 14px; font-weight: 600; color: #22d3ee; text-decoration: none; }
.coverage-board__link:hover { color: #67e8f9; text-decoration: underline; }

.mock-chart-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 10px;
    flex: 1;
    min-height: 0;
}

.mock-chart {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 10px;
    padding: 10px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.mock-chart--line svg { width: 100%; height: 100%; display: block; }
.mock-chart--small { height: 60px; flex-shrink: 0; padding: 8px; }

.mock-chart--bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 6px;
}
.mock-bar {
    width: 100%;
    max-width: 14px;
    background: linear-gradient(180deg, #06B6D4 0%, #0891B2 100%);
    border-radius: 2px 2px 0 0;
    min-height: 4px;
}

.mock-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mock-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 8px;
}
.mock-bar-inline {
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #22C55E, #06B6D4);
    margin-left: auto;
    max-width: 80px;
}

/* ─── Connection Library ─── */

.mock-grid--connectors {
    grid-template-columns: repeat(4, 1fr);
}

.mock-connector-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    border-radius: 8px;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.mock-connector-card__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    margin-bottom: 4px;
    position: relative;
}
.mock-connector-card__icon::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 3px;
    background: rgba(15, 23, 42, 0.28);
}
.mock-connector-card__icon--green  { background: rgba(34, 197, 94, 0.2);  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.35); }
.mock-connector-card__icon--cyan   { background: rgba(6, 182, 212, 0.2);  box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.35); }
.mock-connector-card__icon--purple { background: rgba(124, 58, 237, 0.2); box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.35); }

.mock-status {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.mock-status--on  { background: #22C55E; box-shadow: 0 0 6px #22C55E; }
.mock-status--off { background: rgba(15, 23, 42, 0.18); }

/* ─── P&L (table) ─── */

.mock-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.mock-table th,
.mock-table td {
    padding: 7px 6px;
    text-align: left;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.mock-table th {
    background: rgba(15, 23, 42, 0.025);
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}
.mock-table tbody tr:hover { background: rgba(15, 23, 42, 0.02); }
.mock-table__row--total td {
    border-top: 1px solid rgba(34, 197, 94, 0.4);
    border-bottom: none;
    background: rgba(34, 197, 94, 0.07);
}

.mock-table--orders td { padding: 8px 6px; vertical-align: middle; }

/* ─── Ticketing ─── */

.mock-ticket-list {
    width: 38%;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(15, 23, 42, 0.015);
    overflow-y: hidden;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mock-ticket-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    cursor: pointer;
}
.mock-ticket-row--active {
    background: rgba(34, 197, 94, 0.08);
    box-shadow: inset 3px 0 0 #22C55E;
}
.mock-ticket-row__main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mock-conversation {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px 20px;
    gap: 14px;
    overflow: hidden;
}

.mock-msg {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}
.mock-msg--out { justify-content: flex-end; }

.mock-bubble {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    border-radius: 12px 12px 12px 4px;
    padding: 10px 14px;
    max-width: 70%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.mock-bubble .mock-line { background: rgba(15, 23, 42, 0.18); height: 6px; }
.mock-bubble--out {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25) 0%, rgba(6, 182, 212, 0.25) 100%);
    border-radius: 12px 12px 4px 12px;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.mock-reply-box {
    margin-top: auto;
    height: 60px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 8px;
    padding: 14px;
    display: flex;
    align-items: flex-start;
}

/* ─── Realism atoms (numbers, labels, toggles, tags) shared by the mocks ─── */

/* KPI numeric tiles (Inventory + P&L) */
.mock-kpi__label { font-size: 9px; letter-spacing: 0.3px; text-transform: uppercase; color: rgba(15, 23, 42, 0.45); font-weight: 600; }
.mock-kpi__num { font-size: 17px; font-weight: 700; color: #0f172a; line-height: 1.1; letter-spacing: -0.3px; }
.mock-kpi__num--accent { background: linear-gradient(135deg, #16a34a, #0891B2); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mock-kpis--3 { grid-template-columns: repeat(3, 1fr); }

/* Status tags */
.mock-tag { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 999px; white-space: nowrap; flex-shrink: 0; }
.mock-tag--ok    { color: #15803d; background: rgba(34, 197, 94, 0.14); }
.mock-tag--low   { color: #b45309; background: rgba(245, 158, 11, 0.16); }
.mock-tag--out   { color: #b91c1c; background: rgba(220, 38, 38, 0.12); }
.mock-tag--info  { color: #0e7490; background: rgba(6, 182, 212, 0.14); }
.mock-tag--muted { color: rgba(15, 23, 42, 0.55); background: rgba(15, 23, 42, 0.06); }

/* Orders table headers */
.mock-table--orders th { font-size: 10px; font-weight: 700; color: rgba(15, 23, 42, 0.4); text-align: left; }
.mock-table--orders th.mock-th-num { text-align: right; }

/* Pricing matrix (multi-channel / country / price) */
.mock-table--pricing { table-layout: fixed; }
.mock-table--pricing th { font-size: 10px; font-weight: 700; color: rgba(15, 23, 42, 0.4); text-align: left; }
.mock-table--pricing th.mock-th-num { text-align: right; }
.mock-table--pricing th:nth-child(1), .mock-table--pricing td:nth-child(1) { width: 28%; }
.mock-table--pricing th:nth-child(2), .mock-table--pricing td:nth-child(2) { width: 19%; }
.mock-table--pricing th:nth-child(3), .mock-table--pricing td:nth-child(3) { width: 12%; }
.mock-table--pricing th:nth-child(4), .mock-table--pricing td:nth-child(4) { width: 20%; }
.mock-table--pricing th:nth-child(5), .mock-table--pricing td:nth-child(5) { width: 21%; }
.mock-thumb--xs { width: 16px; height: 16px; border-radius: 4px; display: inline-block; vertical-align: middle; margin-right: 8px; }
.mock-table--pricing .mock-td-label .mock-line { vertical-align: middle; }
.mock-chan-badge { display: inline-block; font-size: 8px; font-weight: 700; letter-spacing: 0.2px; padding: 2px 6px; border-radius: 5px; white-space: nowrap; }
.mock-chan-badge--amazon  { color: #b45309; background: rgba(245, 158, 11, 0.16); }
.mock-chan-badge--zalando { color: #be185d; background: rgba(236, 72, 153, 0.14); }
.mock-chan-badge--shopify { color: #15803d; background: rgba(34, 197, 94, 0.16); }
.mock-flag { width: 18px; height: 13px; border-radius: 2px; display: inline-block; vertical-align: middle; margin-right: 6px; box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08); }
.mock-cc { font-size: 11px; font-weight: 600; color: rgba(15, 23, 42, 0.65); vertical-align: middle; }
.mock-price-old { font-size: 10px; color: rgba(15, 23, 42, 0.4); text-decoration: line-through; }
.mock-price-new { font-size: 12px; font-weight: 700; color: #16a34a; }

/* Data Streams — visual flow + stream list */
.mock-flow { display: flex; align-items: center; gap: 6px; padding: 4px 2px 12px; }
.mock-node { font-size: 10px; font-weight: 700; color: #0f172a; background: #fff; border: 1px solid rgba(15, 23, 42, 0.1); border-radius: 7px; padding: 7px 10px; box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05); white-space: nowrap; }
.mock-node--src { border-color: rgba(34, 197, 94, 0.5); box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.18); }
.mock-node--out { border-color: rgba(124, 58, 237, 0.5); box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.18); }
.mock-flow__link { flex: 1; height: 2px; min-width: 10px; background: linear-gradient(90deg, rgba(34, 197, 94, 0.5), rgba(6, 182, 212, 0.6)); border-radius: 2px; position: relative; }
.mock-flow__link::after { content: ""; position: absolute; right: -1px; top: 50%; transform: translateY(-50%); border-left: 5px solid rgba(6, 182, 212, 0.75); border-top: 3px solid transparent; border-bottom: 3px solid transparent; }
.mock-rows--streams .mock-row { gap: 10px; }
.mock-stream-name { font-size: 11px; font-weight: 600; color: #0f172a; }
.mock-stream-sched { margin-left: auto; font-size: 10px; color: rgba(15, 23, 42, 0.45); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* Use Cases — centered card grid */
.usecases-inner { gap: 28px; max-width: 1180px; }
.usecases-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; width: 100%; padding: 0; margin: 0; text-align: left; }
.usecase-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-left-width: 3px; border-radius: 14px; padding: 20px 22px; transition: transform 0.25s ease, background 0.25s ease; }
.usecase-card:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.06); }
.usecase-card--green  { border-left-color: #22C55E; }
.usecase-card--cyan   { border-left-color: #06B6D4; }
.usecase-card--purple { border-left-color: #7C3AED; }
.usecase-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 8px; }
.usecase-card p { font-size: 14px; line-height: 1.5; color: rgba(255, 255, 255, 0.62); margin: 0; }
.usecases-result { font-size: clamp(16px, 1.6vw, 20px); font-weight: 600; color: rgba(255, 255, 255, 0.9); max-width: 760px; margin: 6px auto 0; text-align: center; }

/* Toolbar tabs (Connection + P&L) */
.mock-tab { font-size: 10px; font-weight: 600; color: rgba(15, 23, 42, 0.5); padding: 4px 8px; border-radius: 6px; white-space: nowrap; }
.mock-tab--active { color: #0f172a; background: rgba(15, 23, 42, 0.06); }

/* Stock list (Inventory) */
.mock-rows--stock .mock-row { gap: 12px; }
.mock-thumb { width: 26px; height: 26px; border-radius: 6px; flex-shrink: 0; background: linear-gradient(135deg, #eef2f7, #dbe3ec); border: 1px solid rgba(15, 23, 42, 0.06); }
.mock-qty { margin-left: auto; font-size: 12px; font-weight: 700; color: #0f172a; font-variant-numeric: tabular-nums; white-space: nowrap; }
.mock-qty em { font-style: normal; font-weight: 500; color: rgba(15, 23, 42, 0.4); font-size: 10px; }
.mock-stockbar { width: 84px; height: 5px; border-radius: 999px; background: rgba(15, 23, 42, 0.08); overflow: hidden; flex-shrink: 0; }
.mock-stockbar > span { display: block; height: 100%; border-radius: 999px; }
.mock-stockbar--ok  > span { background: #22C55E; }
.mock-stockbar--low > span { background: #F59E0B; }
.mock-stockbar--out > span { background: #DC2626; }

/* Connector monogram icon + toggle + labels + "Etc…" card (Connection) */
.mock-connector-card { min-width: 0; }
.mock-connector-card__head { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.mock-connector-card__icon { width: 32px; height: 32px; margin-bottom: 0; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: #fff; }
.mock-connector-card__icon::after { display: none; }
.mock-connector-card__icon--green  { background: linear-gradient(135deg, #22C55E, #16a34a); }
.mock-connector-card__icon--cyan   { background: linear-gradient(135deg, #06B6D4, #0891B2); }
.mock-connector-card__icon--purple { background: linear-gradient(135deg, #7C3AED, #5B21B6); }
.mock-conn-name { font-size: 12px; font-weight: 700; color: #0f172a; line-height: 1.2; }
.mock-conn-cat { font-size: 10px; color: rgba(15, 23, 42, 0.45); line-height: 1.2; }
.mock-toggle { width: 26px; height: 15px; border-radius: 999px; background: rgba(15, 23, 42, 0.15); position: relative; flex-shrink: 0; transition: background 0.2s; }
.mock-toggle::after { content: ""; position: absolute; top: 2px; left: 2px; width: 11px; height: 11px; border-radius: 50%; background: #fff; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25); transition: transform 0.2s; }
.mock-toggle--on { background: #22C55E; }
.mock-toggle--on::after { transform: translateX(11px); }
.mock-connector-card--more { align-items: center; justify-content: center; text-align: center; border-style: dashed; background: rgba(15, 23, 42, 0.015); box-shadow: none; gap: 4px; }
.mock-connector-card__plus { font-size: 16px; font-weight: 800; color: #0891B2; }
.mock-connector-card--more .mock-conn-cat { text-align: center; }

/* P&L financial table */
.mock-table--pnl th { font-size: 10px; font-weight: 700; color: rgba(15, 23, 42, 0.4); text-align: right; }
.mock-table--pnl th.mock-th-label { text-align: left; }
.mock-td-label { font-size: 11px; font-weight: 600; color: rgba(15, 23, 42, 0.7); }
.mock-num-cell { text-align: right; font-size: 11px; font-weight: 600; color: rgba(15, 23, 42, 0.78); font-variant-numeric: tabular-nums; }
.mock-num-cell--neg { color: rgba(15, 23, 42, 0.42); }
.mock-table--pnl .mock-table__row--total .mock-num-cell { color: #16a34a; font-weight: 800; }
.mock-table--pnl .mock-table__row--total .mock-td-label { color: #0f172a; font-weight: 800; }

/* Messaging conversation (Ticketing) */
.mock-avatar--sm { width: 22px; height: 22px; }
.mock-chan { font-size: 9px; font-weight: 700; color: rgba(15, 23, 42, 0.5); background: rgba(15, 23, 42, 0.05); padding: 2px 6px; border-radius: 5px; flex-shrink: 0; white-space: nowrap; }
.mock-convo-head { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid rgba(15, 23, 42, 0.07); background: rgba(15, 23, 42, 0.015); }
.mock-convo-head__meta { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.mock-convo-name { font-size: 12px; font-weight: 700; color: #0f172a; }
.mock-convo-sub { font-size: 10px; color: rgba(15, 23, 42, 0.5); }
.mock-conversation { padding: 0; }
.mock-conversation .mock-msg { padding: 0 18px; }
.mock-conversation .mock-msg:first-of-type { margin-top: 14px; }
.mock-time { font-size: 9px; color: rgba(15, 23, 42, 0.4); align-self: flex-end; margin-top: 2px; }
.mock-reply-box { margin: auto 18px 16px; align-items: center; gap: 10px; }
.mock-reply-placeholder { font-size: 11px; color: rgba(15, 23, 42, 0.4); flex: 1; }
.mock-send { width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #22C55E, #06B6D4); }
.mock-send svg { width: 15px; height: 15px; }

/* ─── Trusted By (logos schematic grid) ─── */

/* Marquee: a single row of partner tiles scrolling continuously, with soft
   fade-outs on both edges. Grayscale at rest → full colour on hover; the whole
   belt pauses on hover. The logo set is rendered twice in the markup so the
   -50% translate loops seamlessly. */
.trustedby-marquee {
    width: 100%;
    max-width: 1100px;
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
            mask: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}

.trustedby-track {
    display: flex;
    width: max-content;
    animation: trustedby-scroll 46s linear infinite;
}
.trustedby-marquee:hover .trustedby-track {
    animation-play-state: paused;
}

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

.trustedby-logo {
    flex: 0 0 auto;
    width: 158px;
    height: 80px;
    margin-right: 18px;          /* uniform gap → seamless -50% loop */
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px -14px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.trustedby-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(34, 197, 94, 0.4);
}
.trustedby-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.8;
    transition: filter 0.25s ease, opacity 0.25s ease;
}
.trustedby-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* No motion: fall back to a centered static wrap. */
@media (prefers-reduced-motion: reduce) {
    .trustedby-marquee { -webkit-mask: none; mask: none; max-width: 1000px; }
    .trustedby-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
}

/* ─── Testimonial card ─── */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    align-items: stretch;
}

.testimonial-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 32px 36px 28px;
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.55);
    position: relative;
    text-align: left;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
    color: #FBBF24;
}
.testimonial-stars svg { width: 18px; height: 18px; }

.testimonial-quote {
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0 0 24px;
    flex: 1;
    letter-spacing: -0.005em;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.testimonial-author__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22C55E 0%, #06B6D4 50%, #7C3AED 100%);
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}
.testimonial-author__meta { display: flex; flex-direction: column; gap: 2px; }
.testimonial-author__name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.1px;
}
.testimonial-author__role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 640px) {
    .trustedby-logo { width: 132px; height: 64px; margin-right: 12px; padding: 12px 16px; }
    .testimonial-grid { grid-template-columns: 1fr; gap: 16px; }
    .usecases-grid { grid-template-columns: 1fr; gap: 12px; }
    .usecase-card { padding: 16px 18px; }
    .testimonial-card { padding: 28px 24px 24px; border-radius: 18px; }
    .testimonial-quote { font-size: 16px; margin-bottom: 18px; }
    .testimonial-author { gap: 10px; padding-top: 14px; margin-top: 16px; }
    .testimonial-author__avatar { width: 40px; height: 40px; }
}

/* ═════════════════════════════════════════════════════════════════════════
   SHOWCASE — Responsive
   ═════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1180px) {
    .showcase-layout-split  .showcase-inner { padding: 0 36px; gap: 40px; grid-template-columns: 1fr 1fr; }
    .showcase-layout-bleed-right .showcase-inner { padding-left: 40px; }
    .showcase-layout-bleed-left  .showcase-inner { padding-right: 40px; }
    .showcase-layout-bleed-right .showcase-mock,
    .showcase-layout-bleed-left  .showcase-mock { margin-left: 0; margin-right: 0; }
    .showcase-title { font-size: clamp(28px, 3.6vw, 44px); }
    .showcase-layout-centered .showcase-title { font-size: clamp(34px, 4.4vw, 54px); }
    .mock-content { padding: 14px 16px; gap: 10px; }
    .mock-grid--connectors { grid-template-columns: repeat(3, 1fr); }
    .mock-kpis { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
    .auth-section--showcase { padding-top: 88px; padding-bottom: 100px; }
    .showcase-layout-split  .showcase-inner,
    .showcase-layout-bleed-right .showcase-inner,
    .showcase-layout-bleed-left  .showcase-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 24px;
        max-width: 720px;
    }
    .showcase-layout-split.showcase-text-right .showcase-inner > .showcase-text,
    .showcase-layout-split.showcase-text-right .showcase-inner > .showcase-mock,
    .showcase-layout-split.showcase-text-left  .showcase-inner > .showcase-text,
    .showcase-layout-split.showcase-text-left  .showcase-inner > .showcase-mock {
        order: initial;
        padding: 0;
    }
    .showcase-layout-split .showcase-text,
    .showcase-layout-bleed-right .showcase-text,
    .showcase-layout-bleed-left  .showcase-text {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    .showcase-desc { margin: 0 auto; }
    .mock-window { transform: none !important; }
}

@media (max-width: 640px) {
    .auth-section--showcase { padding: 36px 16px; }
    .showcase-title { font-size: clamp(22px, 6vw, 28px); }
    .showcase-desc { font-size: 15px; }
    .mock-window__body { height: 320px; }
    .mock-window__url { display: none; }
    .mock-sidebar { width: 40px; gap: 10px; padding: 10px 0; }
    .mock-sidebar__logo { width: 22px; height: 22px; }
    .mock-sidebar__item { width: 18px; height: 18px; }
    .mock-content { padding: 10px 12px; gap: 8px; }
    .mock-grid { grid-template-columns: repeat(2, 1fr); }
    .mock-grid--connectors { grid-template-columns: repeat(2, 1fr); }
    .mock-kpis { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .mock-kpi { padding: 7px 8px; }
    .mock-toolbar .mock-chip:nth-child(n+3) { display: none; }
    .mock-chart-row { grid-template-columns: 1fr; }
    .mock-chart--bars { display: none; }
    .mock-rows .mock-row:nth-child(n+3) { display: none; }
    .mock-table th:nth-child(n+5),
    .mock-table td:nth-child(n+5) { display: none; }
    .mock-ticket-list { width: 45%; padding: 6px 2px; }
    .mock-ticket-row { padding: 6px 8px; gap: 6px; }
    .mock-conversation { padding: 12px; gap: 10px; }
    .mock-reply-box { height: 40px; padding: 10px; }
}

@media (max-width: 480px) {
    .mock-window__body { height: 280px; }
    .mock-product:nth-child(n+5) { display: none; }
    .mock-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .mock-connector-card:nth-child(n+5) { display: none; }
    .mock-table tbody tr:nth-child(n+5) { display: none; }
    .mock-ticket-row:nth-child(n+4) { display: none; }
}

/* ════════════════════════════════════════════════════════════════════════
   Section navigator — light, airy vertical dock pinned to the right edge.
   Appears from section 2 onward (data-hidden toggled by login.js).
   (inline --pos / --pos2 vars on the items are unused now — kept harmless.)
   ════════════════════════════════════════════════════════════════════════ */
.arc-nav {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 6;
    pointer-events: none;            /* re-enabled per-link */
    opacity: 1;
    transition: opacity 0.45s ease, transform 0.45s ease;
}
.arc-nav[data-hidden="true"] {
    opacity: 0;
    transform: translateY(-50%) translateX(36px);
    pointer-events: none;
}
.arc-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}
.arc-nav__item {
    display: flex;
    justify-content: flex-end;
}
.arc-nav__link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    width: 184px;
    padding: 9px 18px 9px 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-right: none;
    border-radius: 12px 0 0 12px;
    background: rgba(8, 16, 34, 0.30);
    -webkit-backdrop-filter: blur(9px) saturate(120%);
    backdrop-filter: blur(9px) saturate(120%);
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: transform 0.25s ease, color 0.25s ease,
                border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    pointer-events: auto;
}
.arc-nav__link:hover {
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-6px);
}
.arc-nav__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    font-size: 16px;
    flex: 0 0 auto;
    opacity: 0.85;
}
.arc-nav__label {
    flex: 1 1 auto;
    white-space: nowrap;
}
.arc-nav__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex: 0 0 auto;
    background: #06B6D4;
    box-shadow: 0 0 10px 1px rgba(6, 182, 212, 0.9);
    opacity: 0;
    transform: scale(0.4);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ── Active item — brighter, cyan-lit border + dot, nudged out ── */
.arc-nav__link.is-active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: -2px 0 18px -6px rgba(6, 182, 212, 0.4);
    transform: translateX(-8px);
}
.arc-nav__link.is-active .arc-nav__icon {
    opacity: 1;
    color: #22D3EE;
}
.arc-nav__link.is-active .arc-nav__dot {
    opacity: 1;
    transform: scale(1);
}

/* Tablet / narrow desktop — the showcase columns need the room; drop the dock. */
@media (max-width: 1180px) {
    .arc-nav { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .arc-nav, .arc-nav__link { transition: opacity 0.2s ease, color 0.2s ease; }
}

/* ════════════════════════════════════════════════════════════════════════
   Contact section — standalone last page with the form (replaces the modal
   as the menu's Contact destination; modal still serves Book a Demo).
   ════════════════════════════════════════════════════════════════════════ */
.auth-section--contact::before {
    background: radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
}
.auth-section--contact .showcase-title {
    font-size: clamp(28px, 3.4vw, 44px);
    margin-bottom: 10px;
}
.auth-section--contact .showcase-inner { gap: 20px; }

.contact-card {
    width: min(100%, 660px);
    margin: 0 auto;
    text-align: left;
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%),
        rgba(15, 23, 50, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 26px 28px 22px;
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    backdrop-filter: blur(18px) saturate(140%);
    box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6), 0 1px 0 0 rgba(255, 255, 255, 0.08) inset;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}
.contact-actions {
    justify-content: flex-end;
    margin-top: 4px;
}
.contact-actions .btn-signin { min-width: 190px; }

@media (max-width: 600px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-actions .btn-signin { width: 100%; }
}

/* ════════════════════════════════════════════════════════════════════════
   Small-screen layout fix — on tablet/phone the strict 100vh + absolute
   bottom nav made "Book a Demo" overlap the (cramped) content. Below 960px:
   sections grow with their content, the per-section nav flows in-document
   (so it sits BELOW content), and split showcases stack to one column.
   ════════════════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
    .auth-section,
    .auth-section--showcase {
        height: auto;
        min-height: 100vh;
        overflow: visible;
        padding-top: 84px;
        padding-bottom: 64px;
    }

    /* Per-section nav: in-flow, centered, clears the fixed footer. */
    .section-nav {
        position: static;
        margin: 20px auto 0;
        padding: 0 24px;
    }

    /* Split showcases → single column (text above its mock). */
    .showcase-layout-split .showcase-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 24px;
    }
    .showcase-layout-split.showcase-text-right .showcase-inner > .showcase-text,
    .showcase-layout-split.showcase-text-left  .showcase-inner > .showcase-text {
        order: 1;
        padding: 0;
    }
    .showcase-layout-split.showcase-text-right .showcase-inner > .showcase-mock,
    .showcase-layout-split.showcase-text-left  .showcase-inner > .showcase-mock {
        order: 2;
    }
    .showcase-layout-bleed-right .showcase-mock,
    .showcase-layout-bleed-left  .showcase-mock { margin-left: 0; margin-right: 0; }

    /* Mock window no longer forced to a tall fixed height. */
    .showcase-mock .mock-window__body {
        height: auto;
        min-height: 260px;
        max-height: 62vh;
    }

    /* Footer: keep it ONE compact row (no 3-row stack that grew too tall). */
    .auth-footer {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 16px;
        padding: 8px 16px;
        font-size: 12px;
    }
    .auth-footer__secure { display: none; }   /* non-essential line; reclaim height */
    .auth-footer__copyright { text-align: center; }
}
