/* Seqlense GDPR additions to the shared design system.
   seqlense.css is kept byte-identical to ../landing-page so it can be
   resynced from there; anything GDPR-specific has to live in this file. */

/* Pattern lifted from the landing page, which carries it in its own head. */
.sq-skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10001;
    padding: .75rem 1.5rem;
    border-radius: .5rem;
    background: var(--sq-accent);
    color: #fff;
    font-family: 'Instrument Sans', sans-serif;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    transition: top .2s ease;
}

.sq-skip-link:focus {
    top: 1rem;
}

/* The shared .sq-pricing-grid is a hard three columns; GDPR ships two tiers.
   Mirrors the shared 1024px breakpoint so the collapse still happens. */
.sq-pricing-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 860px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .sq-pricing-grid-2 {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

/* .sq-btn-secondary carries a 1.5px border and .sq-btn-primary carries none,
   so two cards whose CTAs differ in variant sit 3px out of line. */
.sq-pricing-cta.sq-btn-primary {
    border: 1.5px solid transparent;
}

/* seqlense.css styles .sq-legal-body but not links inside it, so they fall
   back to the browser default blue. */
.sq-legal-body a {
    color: var(--sq-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.sq-legal-body a:hover {
    color: var(--sq-accent-hover);
}

/* The shared .sq-hero-grid draws 0.03-alpha lines and then animates the whole
   element between 0.03 and 0.06 opacity, so the two multiply out to roughly
   0.001 and nothing is visible. Restore a mesh that actually paints, and mask
   it toward the title rather than letting it run flat to the edges. */
.sq-hero-grid {
    background-image:
        linear-gradient(rgba(0, 0, 0, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, .04) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: none;
    opacity: 1;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}

/* .sq-page-hero centers its contents with text-align, which has no effect on
   the shared actions row because that row is a flex container. */
.sq-page-hero .sq-product-hero-actions {
    justify-content: center;
}

/* .sq-page-hero-subtitle carries no bottom margin because the shared page
   heroes end on it; this one is followed by a call to action. */
.sq-page-hero-subtitle + .sq-product-hero-actions {
    margin-top: 2rem;
}

/* Product demo video. The recording already carries its own window chrome
   and wallpaper, so this frames it without adding a second one. */
.sq-demo {
    position: relative;
    z-index: 2;
    max-width: 940px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sq-demo-frame {
    border-radius: var(--sq-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: var(--sq-shadow-xl);
    background: var(--sq-gray-50, #f4f4f3);
}

.sq-demo-frame video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1184 / 720;
}

.sq-demo-caption {
    margin: 1.25rem auto 0;
    max-width: 640px;
    text-align: center;
    font-size: .85rem;
    line-height: 1.6;
    color: var(--sq-gray-400);
}

