.intro-centered-simple__content-area {
    max-width: 48rem;
}

.intro-centered-simple__text-block {
    max-width: 42rem;
}

.members-dual-ring__portrait {
    width: 6rem;
    height: 6rem;
}

/* process editor — brand mark sizing */
.process-editor__brand {
    letter-spacing: 0.04em;
}

/* process editor — hero bar between mega words */
.process-editor__hero-bar {
    flex: 1 1 6rem;
    height: 0.65rem;
    min-width: 3rem;
    max-width: 100%;
    align-self: flex-end;
    margin-bottom: 0.35em;
}

/* process editor — oversized condensed display type */
.process-editor__mega {
    letter-spacing: -0.06em;
    line-height: 0.82;
}

.process-editor__mega--lead {
    font-size: clamp(3.5rem, 16vw, 11rem);
}


.process-editor__mega--stack {
    font-size: clamp(3rem, 13vw, 9rem);
    margin-top: -0.08em;
}

/* process editor — italic accent word in kicker */
.process-editor__kicker {
    font-size: clamp(1.75rem, 4.5vw, 3.75rem);
}

.process-editor__kicker-accent {
    display: inline-block;
    font-size: clamp(2.25rem, 6vw, 5rem);
    line-height: 0.95;
    vertical-align: baseline;
    margin-inline: 0.15em;
}

/* process editor — vertical step nav */
.process-editor__nav-btn {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    cursor: pointer;
    outline-offset: -2px;
    transition: opacity 200ms ease, transform 200ms ease;
}

.process-editor__nav-btn.is-active {
    transform: translateX(0.25rem);
}

.process-editor__nav-btn.is-active .process-editor__nav-label {
    color: var(--tw-primary-900, var(--bs-primary));
    font-weight: 700;
}

.process-editor__nav-btn:not(.is-active) .process-editor__nav-label {
    opacity: 0.72;
}

.process-editor__panel {
    animation: process-editor-panel-in 280ms ease;
}

@keyframes process-editor-panel-in {
    from {
        opacity: 0;
        transform: translateY(0.5rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1023px) {
    .process-editor__hero-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-editor__hero-bar {
        width: 70%;
        flex: none;
        margin-bottom: 0;
    }

    .process-editor__kicker {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .process-editor__nav-btn,
    .process-editor__panel {
        animation: none;
        transition: none;
    }

    .process-editor__nav-btn.is-active {
        transform: none;
    }
}

/* pricing-glow — decorative blobs */
.pricing-glow__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    z-index: 0;
}

.pricing-glow__blob--a {
    width: 32rem;
    height: 32rem;
    top: -10rem;
    right: -10rem;
}

.pricing-glow__blob--b {
    width: 24rem;
    height: 24rem;
    bottom: -8rem;
    left: -8rem;
}

/* pricing-glow — glassmorphism backdrop */
.pricing-glow__card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* pricing-glow — second card overlaps first on desktop */
.pricing-glow__card--overlap {
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .pricing-glow__card--overlap {
        margin-top: 0;
    }
}

/* pricing-glow — disclaimer pulsing border animation */
.pricing-glow__disclaimer {
    animation: glow-border-pulse 3s ease-in-out infinite;
}

@keyframes glow-border-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 transparent;
    }
    50% {
        box-shadow: 0 0 18px 4px rgba(99, 102, 241, 0.18);
    }
}

/* pricing-glow — pulsing dot */
.pricing-glow__pulse-dot {
    width: 0.625rem;
    height: 0.625rem;
    flex-shrink: 0;
    animation: dot-pulse 1.8s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%,
    100% { opacity: 1; transform: scale(1); }
    50%  { opacity: 0.5; transform: scale(1.5); }
}

/* pricing-glow — UA reset ul */
.pricing-glow__feat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* pricing-glow — card hover */
.pricing-card-hover {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

@media (hover: hover) {
    .pricing-card-hover:hover {
        box-shadow: 0 20px 48px -14px rgba(15, 23, 42, 0.2);
        transform: translateY(-4px);
    }
}

/* pricing-glow — CTA */
.pricing-glow__cta {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.pricing-glow__cta--on-primary {
    border-color: rgba(255, 255, 255, 0.9) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55), 0 0.5rem 1.25rem rgba(0, 0, 0, 0.12);
}

@media (hover: hover) {
    .pricing-glow__cta:hover {
        opacity: 0.9;
        transform: translateY(-1px);
    }
}

