.story-eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--a3-border);
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(15,23,42,.56);
    color: color-mix(in srgb, var(--a3-primary), #ffffff 28%);
    font-size: .66rem;
    font-weight: 720;
    letter-spacing: .11em;
    text-transform: uppercase;
    backdrop-filter: blur(18px);
}

.story-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--a3-primary);
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--a3-primary), transparent 82%);
}

.story-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 0 19px;
    font-size: .86rem;
    font-weight: 720;
    text-decoration: none;
    transition: .2s ease;
}

.story-btn.primary {
    background: linear-gradient(135deg, var(--a3-primary), var(--a3-primary-dark));
    color: #ffffff;
    box-shadow: 0 18px 38px color-mix(in srgb, var(--a3-primary), transparent 70%);
}

.story-btn.secondary {
    border: 1px solid var(--a3-border-strong);
    background: rgba(255,255,255,.07);
    color: #e5eefb;
}

.story-btn:hover {
    transform: translateY(-2px);
}

.story-btn-demo {
    border-color: color-mix(in srgb, var(--a3-primary), transparent 42%) !important;
    background: color-mix(in srgb, var(--a3-primary), transparent 88%) !important;
}

.story-demo-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--a3-primary);
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--a3-primary), transparent 35%);
    animation: story-demo-pulse 1.8s ease-out infinite;
}

@keyframes story-demo-pulse {
    70%, 100% { box-shadow: 0 0 0 9px transparent; }
}

.story-btn.primary:hover {
    color: #ffffff;
}

.story-image-placeholder {
    min-height: 100%;
    display: grid;
    place-items: center;
    gap: 4px;
    border: 1px dashed rgba(255,255,255,.22);
    border-radius: inherit;
    background:
        radial-gradient(circle at 70% 18%, color-mix(in srgb, var(--a3-primary), transparent 76%), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    color: var(--a3-muted);
    text-align: center;
}

.story-image-placeholder strong {
    color: #f8fafc;
    font-weight: 680;
}

.story-image-placeholder span {
    font-size: .78rem;
}

.story-section {
    padding: clamp(70px, 9vw, 126px) 0;
}

.story-section-title {
    max-width: 760px;
}

.story-section-title h2 {
    margin: 16px 0 0;
    color: #f8fafc;
    font-size: clamp(2rem, 5vw, 4.35rem);
    font-weight: 620;
    letter-spacing: -.065em;
    line-height: .98;
}

.story-section-title p {
    margin: 18px 0 0;
    color: var(--a3-muted);
    font-size: 1rem;
    line-height: 1.75;
}
