:root {
    --vxp-brand-ink: #071024;
    --vxp-brand-blue: #1050f0;
    --vxp-brand-cyan: #00b0f0;
    --vxp-brand-violet: #8b3df0;
    --vxp-brand-magenta: #d030f0;
    --vxp-bg: #f6f8fc;
    --vxp-surface: #ffffff;
    --vxp-surface-soft: #eef3ff;
    --vxp-surface-strong: #e7edfa;
    --vxp-ink: #0b1224;
    --vxp-muted: #5e697f;
    --vxp-line: #dfe5f0;
    --vxp-line-strong: #cbd4e5;
    --vxp-shadow-sm: 0 12px 32px rgba(31, 45, 78, 0.07);
    --vxp-shadow-lg: 0 32px 80px rgba(8, 18, 48, 0.16);
    --vxp-radius-sm: 14px;
    --vxp-radius-md: 22px;
    --vxp-radius-lg: 34px;
    --vxp-container: 1240px;
    --si-primary: var(--vxp-brand-blue);
    --si-info: var(--vxp-brand-cyan);
    --si-primary-rgb: 16, 80, 240;
    --si-info-rgb: 0, 176, 240;
    --si-link-color: var(--vxp-brand-blue);
    --si-link-hover-color: #7832dc;
    --si-focus-ring-color: rgba(16, 80, 240, 0.25);
    --si-body-font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

[data-bs-theme="dark"] {
    --vxp-bg: #080d19;
    --vxp-surface: #101727;
    --vxp-surface-soft: #141d31;
    --vxp-surface-strong: #1a243a;
    --vxp-ink: #f5f7ff;
    --vxp-muted: #a4aec1;
    --vxp-line: #253047;
    --vxp-line-strong: #34415c;
    --vxp-shadow-sm: 0 16px 38px rgba(0, 0, 0, 0.22);
    --vxp-shadow-lg: 0 36px 90px rgba(0, 0, 0, 0.32);
    --si-body-color: #dbe1ec;
    --si-body-bg: #080d19;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--vxp-ink);
    background: var(--vxp-bg);
    font-family: var(--si-body-font-family);
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 6% 4%, rgba(16, 80, 240, 0.07), transparent 25rem),
        radial-gradient(circle at 94% 12%, rgba(139, 61, 240, 0.055), transparent 25rem);
}

img {
    max-width: 100%;
}

a {
    text-underline-offset: 0.18em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--vxp-ink);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

p {
    color: var(--vxp-muted);
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl,
.page-section > * {
    width: min(var(--vxp-container), calc(100% - 40px));
    max-width: var(--vxp-container);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2000;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: #fff;
    background: var(--vxp-brand-blue);
    transform: translateY(-140%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    color: #fff;
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid rgba(0, 176, 240, 0.75);
    outline-offset: 3px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 13px;
    font-weight: 750;
    letter-spacing: -0.01em;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
    border-color: #2e63f3;
    background: linear-gradient(135deg, #1b5af6, #6547ed);
    box-shadow: 0 12px 28px rgba(16, 80, 240, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
    border-color: #3e6cf5;
    background: linear-gradient(135deg, #0f4fe9, #7139e4);
    box-shadow: 0 16px 36px rgba(16, 80, 240, 0.34);
}

.btn-lg {
    min-height: 52px;
    padding: 0.82rem 1.25rem;
    font-size: 0.98rem;
}

.btn-ghost-light {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn-ghost-light:hover,
.btn-ghost-light:focus {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.12);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--vxp-brand-blue);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--vxp-brand-cyan), var(--vxp-brand-violet));
}

.eyebrow:has(i)::before {
    display: none;
}

.eyebrow--light,
.section-kicker.text-light {
    color: #9fc8ff !important;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #22c58b;
    box-shadow: 0 0 0 5px rgba(34, 197, 139, 0.12);
}

.status-dot--violet {
    background: #a875ff;
    box-shadow: 0 0 0 5px rgba(168, 117, 255, 0.13);
}

/* Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1080;
    min-height: 82px;
    padding: 0;
    border-bottom: 1px solid rgba(202, 212, 230, 0.68);
    background: rgba(255, 255, 255, 0.89);
    box-shadow: 0 6px 24px rgba(20, 35, 64, 0.045);
    backdrop-filter: saturate(150%) blur(18px);
}

[data-bs-theme="dark"] .site-header {
    border-bottom-color: rgba(61, 75, 102, 0.55);
    background: rgba(8, 13, 25, 0.9);
}

.site-nav {
    min-height: 82px;
    display: flex;
    align-items: center;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.brand-mark--wordmark {
    width: clamp(132px, 11vw, 164px);
    height: auto;
}

.site-nav .navbar-nav {
    gap: 0.35rem;
}

.site-nav .nav-link {
    position: relative;
    padding: 0.65rem 0.85rem !important;
    color: var(--vxp-muted);
    font-size: 0.91rem;
    font-weight: 750;
}

.site-nav .nav-link::after {
    content: "";
    position: absolute;
    right: 0.9rem;
    bottom: 0.28rem;
    left: 0.9rem;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--vxp-brand-cyan), var(--vxp-brand-violet));
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: var(--vxp-ink);
}

.site-nav .nav-link.active::after,
.site-nav .nav-link:hover::after {
    transform: scaleX(1);
}

.site-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-left: auto;
}

.site-nav__cta {
    min-height: 40px;
    padding-inline: 0.9rem;
}

.theme-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    height: 40px;
    padding: 0 0.52rem;
    border: 1px solid var(--vxp-line);
    border-radius: 12px;
    background: var(--vxp-surface-soft);
    cursor: pointer;
}

.theme-switcher__icon {
    color: var(--vxp-muted);
    font-size: 0.95rem;
}

.theme-switcher__input.form-check-input {
    width: 2.4rem;
    height: 1.2rem;
    margin: 0;
    cursor: pointer;
}

[data-bs-theme="light"] .theme-switcher__icon--light,
[data-bs-theme="dark"] .theme-switcher__icon--dark {
    color: var(--vxp-brand-blue);
}

.navbar-toggler {
    width: 42px;
    height: 42px;
    padding: 0.55rem;
    border: 1px solid var(--vxp-line);
    border-radius: 12px;
}

/* Home hero */
.vxp-hero,
.vxp-page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 82% 18%, rgba(139, 61, 240, 0.2), transparent 31rem),
        radial-gradient(circle at 8% 10%, rgba(16, 80, 240, 0.24), transparent 28rem),
        linear-gradient(135deg, #07142f 0%, #060b18 52%, #101027 100%);
}

.vxp-hero::before,
.vxp-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(116, 151, 226, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(116, 151, 226, 0.18) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 85%);
}

.vxp-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
    min-height: 650px;
    padding-block: clamp(4.5rem, 7vw, 7rem) 3rem;
}

.vxp-hero__copy {
    position: relative;
    z-index: 2;
}

.vxp-hero__copy h1,
.vxp-page-hero__copy h1 {
    max-width: 12ch;
    margin: 1.25rem 0 1.4rem;
    color: #fff;
    font-size: clamp(3.2rem, 5.25vw, 5.3rem);
    letter-spacing: -0.06em;
    line-height: 0.99;
}

.vxp-hero__copy > p,
.vxp-page-hero__copy > p {
    max-width: 650px;
    margin: 0;
    color: rgba(225, 232, 248, 0.78);
    font-size: clamp(1.05rem, 1.25vw, 1.18rem);
    line-height: 1.75;
}

.vxp-hero__actions,
.vxp-page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.vxp-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 590px;
    margin: 2.5rem 0 0;
}

.vxp-metrics > div {
    padding: 0 1.2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.vxp-metrics > div:first-child {
    padding-left: 0;
    border-left: 0;
}

.vxp-metrics dt {
    color: #fff;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.vxp-metrics dd {
    margin: 0.2rem 0 0;
    color: rgba(218, 226, 242, 0.62);
    font-size: 0.79rem;
    font-weight: 650;
}

.vxp-hero__visual,
.mobile-hero-visual {
    position: relative;
    min-width: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 48px 100px rgba(0, 0, 0, 0.38);
}

.vxp-hero__visual::after,
.mobile-hero-visual::after,
.lab-visual::after {
    content: "";
    position: absolute;
    inset: 10px;
    pointer-events: none;
    border-radius: 28px;
    background: linear-gradient(180deg, transparent 45%, rgba(4, 9, 23, 0.34));
}

.vxp-hero__visual > img,
.mobile-hero-visual > img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 29px;
    object-fit: cover;
}

.vxp-float-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    color: #fff;
    background: rgba(8, 15, 34, 0.8);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(16px);
    font-size: 0.82rem;
}

.vxp-float-card strong {
    margin-right: 0.2rem;
}

.vxp-float-card i {
    color: #6cbdff;
    font-size: 1.2rem;
}

.vxp-float-card--top {
    top: 32px;
    left: -18px;
}

.vxp-float-card--bottom {
    right: -18px;
    bottom: 36px;
}

.vxp-hero__rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(16px);
}

.vxp-hero__rail a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
    padding: 1.05rem 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.vxp-hero__rail a:first-child {
    border-left: 0;
}

.vxp-hero__rail a > i {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 12px;
    color: #8fc8ff;
    background: rgba(117, 176, 255, 0.1);
    font-size: 1.25rem;
}

.vxp-hero__rail span {
    min-width: 0;
    font-size: 0.84rem;
    font-weight: 750;
}

.vxp-hero__rail small {
    display: block;
    margin-bottom: 0.08rem;
    color: rgba(208, 220, 243, 0.55);
    font-size: 0.67rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Sections */
.vxp-section {
    padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.vxp-section--tint {
    border-block: 1px solid var(--vxp-line);
    background: var(--vxp-surface-soft);
}

.vxp-section--compact {
    padding-block: clamp(3rem, 5vw, 5rem);
}

.vxp-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 3rem;
    align-items: end;
    margin-bottom: clamp(2.2rem, 4vw, 3.5rem);
}

.vxp-section-head h2,
.lab-copy h2,
.value-grid__intro h2,
.mobile-flow__copy h2 {
    max-width: 14ch;
    margin: 0.9rem 0 0;
    font-size: clamp(2.3rem, 4vw, 3.8rem);
    letter-spacing: -0.055em;
}

.vxp-section-head > p {
    max-width: 500px;
    margin: 0;
    font-size: 1.02rem;
}

.vxp-section-head--center {
    grid-template-columns: 1fr;
    max-width: 760px;
    gap: 1rem;
    margin-inline: auto;
    text-align: center;
}

.vxp-section-head--center h2,
.vxp-section-head--center > p {
    max-width: none;
}

.vxp-section-head--center .eyebrow {
    justify-content: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.product-card {
    --accent-start: #1050f0;
    --accent-end: #00b0f0;
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 475px;
    flex-direction: column;
    overflow: hidden;
    padding: clamp(1.35rem, 2.8vw, 2rem);
    border: 1px solid var(--vxp-line);
    border-radius: var(--vxp-radius-md);
    background: var(--vxp-surface);
    box-shadow: var(--vxp-shadow-sm);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-card::before,
.card-accent::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
}

.product-card::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 260px;
    height: 260px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-end) 10%, transparent), transparent 68%);
}

.product-card:hover {
    z-index: 2;
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--accent-start) 30%, var(--vxp-line));
    box-shadow: 0 26px 60px rgba(25, 39, 74, 0.13);
}

.product-card--featured {
    grid-column: 1 / -1;
    min-height: 430px;
}

.product-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.product-card__tag,
.product-card__status,
.tool-card__meta,
.roadmap-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--vxp-muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.product-card__tag {
    color: var(--accent-start);
}

.product-card__logo {
    display: grid;
    min-height: 122px;
    margin-bottom: 1.35rem;
    padding: 1.35rem;
    place-items: center;
    border: 1px solid #e8edf6;
    border-radius: 17px;
    background: linear-gradient(145deg, #fff, #f5f8ff);
}

.product-card--featured .product-card__logo {
    min-height: 145px;
}

.product-card__logo img {
    width: auto;
    max-width: min(300px, 84%);
    max-height: 76px;
    object-fit: contain;
}

.product-card--featured .product-card__logo img {
    max-height: 92px;
}

.software-card-logo--vexpdf {
    transform: scale(1.16);
}

.product-card__body {
    position: relative;
    z-index: 1;
}

.product-card__body h3,
.product-card__body .h3 {
    margin: 0 0 0.65rem;
    font-size: 1.45rem;
}

.product-card__body p {
    margin: 0 0 1rem;
}

.product-card__body ul {
    display: grid;
    gap: 0.45rem;
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
}

.product-card__body li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    color: var(--vxp-muted);
    font-size: 0.85rem;
}

.product-card__body li i {
    margin-top: 0.16rem;
    color: #12a974;
    font-size: 1rem;
}

.product-card__link {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--vxp-line);
    color: var(--vxp-ink);
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
}

.product-card__link i {
    transform: rotate(45deg);
    color: var(--accent-start);
    font-size: 1.35rem;
}

.product-card__link:hover {
    color: var(--accent-start);
}

.vxp-section-action {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--vxp-brand-blue);
    font-weight: 800;
    text-decoration: none;
}

.text-link:hover {
    color: var(--vxp-brand-violet);
}

/* AI Lab */
.lab-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.lab-visual {
    position: relative;
    padding: 9px;
    overflow: hidden;
    border: 1px solid var(--vxp-line-strong);
    border-radius: var(--vxp-radius-lg);
    background: var(--vxp-surface);
    box-shadow: var(--vxp-shadow-lg);
}

.lab-visual img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 26px;
    object-fit: cover;
}

.lab-visual__badge,
.mobile-hero-visual__badge {
    position: absolute;
    z-index: 2;
    top: 28px;
    left: 28px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    background: rgba(5, 12, 29, 0.78);
    backdrop-filter: blur(14px);
    font-size: 0.74rem;
    font-weight: 800;
}

.lab-copy > p {
    max-width: 590px;
    margin: 1.25rem 0 1.7rem;
    font-size: 1.02rem;
}

.lab-points {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.6rem;
}

.lab-points > div {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.85rem;
    border: 1px solid var(--vxp-line);
    border-radius: 15px;
    background: color-mix(in srgb, var(--vxp-surface) 80%, transparent);
}

.lab-points i {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 12px;
    color: var(--vxp-brand-blue);
    background: rgba(16, 80, 240, 0.09);
    font-size: 1.15rem;
}

.lab-points span,
.lab-points small {
    display: block;
}

.lab-points strong {
    display: block;
    color: var(--vxp-ink);
    font-size: 0.9rem;
}

.lab-points small {
    margin-top: 0.15rem;
    color: var(--vxp-muted);
    font-size: 0.75rem;
}

/* Tool cards */
.tool-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.tool-card {
    --accent-start: #1050f0;
    --accent-end: #00b0f0;
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--vxp-line);
    border-radius: 20px;
    background: var(--vxp-surface);
    box-shadow: var(--vxp-shadow-sm);
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--accent-start) 35%, var(--vxp-line));
    box-shadow: 0 22px 48px rgba(25, 39, 74, 0.12);
}

.tool-card > a {
    position: relative;
    display: flex;
    min-height: 265px;
    flex-direction: column;
    padding: 1.45rem;
    color: inherit;
    text-decoration: none;
}

.tool-card > a::after {
    content: "";
    position: absolute;
    top: -55px;
    right: -55px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-end) 13%, transparent), transparent 70%);
}

.tool-card__icon,
.card-accent__icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 1.15rem;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--accent-start) 17%, var(--vxp-line));
    border-radius: 14px;
    color: var(--accent-start);
    background: linear-gradient(145deg, color-mix(in srgb, var(--accent-start) 11%, var(--vxp-surface)), var(--vxp-surface));
    font-size: 1.35rem;
}

.tool-card h3 {
    margin: 0.85rem 0 0.55rem;
    font-size: 1.07rem;
    letter-spacing: -0.025em;
}

.tool-card p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.6;
}

.tool-card__arrow {
    display: grid;
    width: 36px;
    height: 36px;
    margin-top: auto;
    place-items: center;
    align-self: flex-end;
    border-radius: 50%;
    color: var(--vxp-ink);
    background: var(--vxp-surface-soft);
    font-size: 1.15rem;
    transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.tool-card:hover .tool-card__arrow {
    color: #fff;
    background: var(--accent-start);
    transform: translateX(3px);
}

.tool-card--all {
    --accent-start: #8b3df0;
    --accent-end: #d030f0;
    color: #fff;
    border-color: transparent;
    background: linear-gradient(145deg, #132557, #251347);
}

.tool-card--all h3,
.tool-card--all .tool-card__arrow {
    color: #fff;
}

.tool-card--all p,
.tool-card--all .tool-card__meta {
    color: rgba(231, 235, 248, 0.68);
}

.tool-card--all .tool-card__icon,
.tool-card--all .tool-card__arrow {
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
}

.accent-cyan {
    --accent-start: #008fd4;
    --accent-end: #00b0f0;
}

.accent-sky {
    --accent-start: #1050f0;
    --accent-end: #00a9eb;
}

.accent-indigo {
    --accent-start: #3040f0;
    --accent-end: #7846e8;
}

.accent-violet {
    --accent-start: #8b3df0;
    --accent-end: #d030f0;
}

.accent-green {
    --accent-start: #0c9f6c;
    --accent-end: #16c68b;
}

/* Workflow */
.workflow-band {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
    padding: clamp(2rem, 4vw, 3.5rem);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--vxp-radius-lg);
    color: #fff;
    background:
        radial-gradient(circle at 15% 20%, rgba(16, 80, 240, 0.3), transparent 22rem),
        linear-gradient(135deg, #07142f, #0b0e1b 62%, #1b1032);
    box-shadow: var(--vxp-shadow-lg);
}

.workflow-band__intro h2,
.inline-cta h2,
.site-footer__cta h2,
.signup-card__intro h2,
.tools-ai-banner h2 {
    margin: 0.9rem 0 1rem;
    color: #fff;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    letter-spacing: -0.05em;
}

.workflow-band__intro p,
.inline-cta p {
    margin: 0;
    color: rgba(226, 233, 247, 0.68);
}

.workflow-steps {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.workflow-steps li {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 1rem;
    padding: 1.05rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.workflow-steps li:last-child {
    border-bottom: 0;
}

.workflow-steps > li > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    color: #8fc8ff;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
    font-weight: 800;
}

.workflow-steps h3 {
    margin: 0 0 0.25rem;
    color: #fff;
    font-size: 1rem;
}

.workflow-steps p {
    margin: 0;
    color: rgba(226, 233, 247, 0.6);
    font-size: 0.8rem;
}

/* Page hero */
.vxp-page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
    min-height: 610px;
    padding-block: clamp(4rem, 6vw, 6rem);
}

.vxp-page-hero__copy h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 5vw, 5rem);
}

.vxp-breadcrumb ol {
    display: flex;
    gap: 0.55rem;
    align-items: center;
    margin: 0 0 1.5rem;
    padding: 0;
    color: rgba(218, 226, 242, 0.48);
    font-size: 0.75rem;
    font-weight: 700;
    list-style: none;
}

.vxp-breadcrumb li + li::before {
    content: "/";
    margin-right: 0.55rem;
    color: rgba(218, 226, 242, 0.3);
}

.vxp-breadcrumb a {
    color: rgba(218, 226, 242, 0.72);
    text-decoration: none;
}

.vxp-breadcrumb a:hover {
    color: #fff;
}

.vxp-metrics--compact {
    margin-top: 2.2rem;
}

.brand-cloud {
    position: relative;
    min-height: 500px;
}

.brand-cloud::before,
.brand-cloud::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(129, 166, 255, 0.14);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.brand-cloud::before {
    width: 72%;
    aspect-ratio: 1;
}

.brand-cloud::after {
    width: 46%;
    aspect-ratio: 1;
}

.brand-cloud__glow {
    position: absolute;
    inset: 18% 20%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 80, 240, 0.32), rgba(139, 61, 240, 0.1) 45%, transparent 72%);
    filter: blur(24px);
}

.brand-cloud__center,
.brand-cloud__item {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.26);
}

.brand-cloud__center {
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border-radius: 34px;
    transform: translate(-50%, -50%) rotate(-5deg);
}

.brand-cloud__center img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.brand-cloud__item {
    width: 172px;
    min-height: 90px;
    padding: 1rem;
    border-radius: 18px;
}

.brand-cloud__item img {
    max-width: 135px;
    max-height: 54px;
    object-fit: contain;
}

.brand-cloud__item--1 { top: 3%; left: 34%; transform: rotate(2deg); }
.brand-cloud__item--2 { top: 24%; right: 0; transform: rotate(5deg); }
.brand-cloud__item--3 { right: 8%; bottom: 7%; transform: rotate(-3deg); }
.brand-cloud__item--4 { bottom: 4%; left: 13%; transform: rotate(3deg); }
.brand-cloud__item--5 { top: 22%; left: -1%; transform: rotate(-5deg); }

.value-grid {
    display: grid;
    grid-template-columns: 1.15fr repeat(3, minmax(0, 0.85fr));
    gap: 1rem;
}

.value-grid__intro {
    padding-right: 2rem;
}

.value-grid__intro h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.value-grid__intro p {
    margin: 1rem 0 0;
}

.value-grid > article {
    position: relative;
    min-height: 270px;
    padding: 1.5rem;
    border: 1px solid var(--vxp-line);
    border-radius: 20px;
    background: var(--vxp-surface);
}

.value-grid > article > span {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--vxp-line-strong);
    font-size: 0.75rem;
    font-weight: 800;
}

.value-grid > article i {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 3rem;
    place-items: center;
    border-radius: 14px;
    color: var(--vxp-brand-blue);
    background: rgba(16, 80, 240, 0.08);
    font-size: 1.3rem;
}

.value-grid > article h3 {
    margin: 0 0 0.65rem;
    font-size: 1.05rem;
}

.value-grid > article p {
    margin: 0;
    font-size: 0.82rem;
}

.inline-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(2rem, 4vw, 3.3rem);
    border-radius: var(--vxp-radius-lg);
    background: linear-gradient(135deg, #0a1d46, #101126 58%, #27113f);
    box-shadow: var(--vxp-shadow-lg);
}

.inline-cta h2 {
    max-width: 700px;
    margin-bottom: 0;
}

/* Mobile page */
.mobile-hero-visual__badge {
    top: auto;
    bottom: 28px;
}

.platform-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 2.2rem;
}

.platform-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 11px;
    color: rgba(232, 237, 248, 0.76);
    background: rgba(255, 255, 255, 0.055);
    font-size: 0.76rem;
    font-weight: 700;
}

.platform-row i {
    color: #8fc8ff;
    font-size: 1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.feature-card {
    --accent-start: #1050f0;
    --accent-end: #00b0f0;
    min-height: 270px;
    padding: 1.5rem;
    border: 1px solid var(--vxp-line);
    border-radius: 20px;
    background: var(--vxp-surface);
    box-shadow: var(--vxp-shadow-sm);
}

.feature-card > span {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 3.1rem;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--accent-start) 18%, var(--vxp-line));
    border-radius: 15px;
    color: var(--accent-start);
    background: color-mix(in srgb, var(--accent-start) 8%, var(--vxp-surface));
    font-size: 1.35rem;
}

.feature-card h3 {
    margin: 0 0 0.65rem;
    font-size: 1.08rem;
}

.feature-card p {
    margin: 0;
    font-size: 0.83rem;
}

.mobile-flow {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
}

.mobile-flow__copy > p {
    margin: 1.2rem 0 1.7rem;
}

.mobile-flow__copy ol {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-flow__copy li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 0.8rem;
    align-items: start;
}

.mobile-flow__copy li > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    color: var(--vxp-brand-blue);
    background: rgba(16, 80, 240, 0.09);
    font-size: 0.75rem;
    font-weight: 800;
}

.mobile-flow__copy li h3 {
    margin: 0 0 0.2rem;
    font-size: 0.94rem;
}

.mobile-flow__copy li p {
    margin: 0;
    font-size: 0.78rem;
}

.mobile-flow__panel {
    padding: 1rem;
    border: 1px solid var(--vxp-line);
    border-radius: 26px;
    background: var(--vxp-surface);
    box-shadow: var(--vxp-shadow-lg);
}

.mobile-flow__panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0.5rem 1rem;
    color: var(--vxp-ink);
    font-size: 0.78rem;
    font-weight: 800;
}

.mobile-flow__panel-head strong {
    padding: 0.3rem 0.55rem;
    border-radius: 99px;
    color: #7540d8;
    background: rgba(139, 61, 240, 0.1);
    font-size: 0.64rem;
    text-transform: uppercase;
}

.mobile-flow__module {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 0.85rem;
    align-items: center;
    margin-top: 0.65rem;
    padding: 1rem;
    border: 1px solid var(--vxp-line);
    border-radius: 16px;
    background: var(--vxp-surface-soft);
}

.mobile-flow__module > i:first-child {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 13px;
    color: var(--vxp-brand-blue);
    background: rgba(16, 80, 240, 0.09);
    font-size: 1.2rem;
}

.mobile-flow__module span,
.mobile-flow__module small {
    display: block;
}

.mobile-flow__module strong {
    display: block;
    color: var(--vxp-ink);
    font-size: 0.85rem;
}

.mobile-flow__module small {
    color: var(--vxp-muted);
    font-size: 0.7rem;
}

.signup-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2rem, 5vw, 5rem);
    padding: clamp(2rem, 5vw, 4.2rem);
    border-radius: var(--vxp-radius-lg);
    color: #fff;
    background:
        radial-gradient(circle at 12% 18%, rgba(16, 80, 240, 0.35), transparent 25rem),
        linear-gradient(135deg, #07142f, #17102e);
    box-shadow: var(--vxp-shadow-lg);
}

.signup-card__intro p {
    max-width: 430px;
    color: rgba(226, 233, 247, 0.68);
}

.signup-card__intro > div {
    display: grid;
    gap: 0.45rem;
    margin-top: 1.5rem;
}

.signup-card__intro > div span {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(239, 243, 251, 0.8);
    font-size: 0.8rem;
}

.signup-card__intro > div i {
    color: #55d8a8;
}

.signup-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
}

.signup-form .form-field:first-of-type,
.signup-form .alert,
.signup-form button,
.signup-form > small {
    grid-column: 1 / -1;
}

.form-field label {
    display: block;
    margin-bottom: 0.4rem;
    color: rgba(244, 247, 253, 0.86);
    font-size: 0.76rem;
    font-weight: 750;
}

.signup-form .form-control,
.signup-form .form-select {
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    color: #fff;
    background-color: rgba(4, 9, 22, 0.42);
}

.signup-form .form-control::placeholder {
    color: rgba(231, 236, 247, 0.42);
}

.signup-form .form-select option {
    color: #121827;
}

.signup-form > small {
    color: rgba(226, 233, 247, 0.5);
    font-size: 0.69rem;
    text-align: center;
}

/* Tools page */
.tool-stack {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 27px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 38px 80px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
}

.tool-stack__top,
.tool-stack__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0.5rem 1rem;
    color: rgba(236, 241, 250, 0.72);
    font-size: 0.74rem;
    font-weight: 750;
}

.tool-stack__top span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.tool-stack__top strong {
    color: #fff;
}

.tool-stack__item {
    --accent-start: #1050f0;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 0.85rem;
    align-items: center;
    margin-top: 0.6rem;
    padding: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #fff;
    background: rgba(5, 12, 29, 0.56);
    text-decoration: none;
    transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.tool-stack__item:hover {
    color: #fff;
    border-color: color-mix(in srgb, var(--accent-start) 50%, transparent);
    background: rgba(14, 25, 52, 0.86);
    transform: translateX(3px);
}

.tool-stack__item > span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(145deg, var(--accent-start), var(--accent-end));
    font-size: 1.2rem;
}

.tool-stack__item strong,
.tool-stack__item small {
    display: block;
}

.tool-stack__item strong {
    font-size: 0.88rem;
}

.tool-stack__item small {
    max-width: 390px;
    overflow: hidden;
    color: rgba(218, 226, 242, 0.5);
    font-size: 0.69rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tool-stack__item > i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
}

.tool-stack__footer {
    justify-content: center;
    padding: 1rem 0.5rem 0.4rem;
    color: #9fc8ff;
    text-decoration: none;
}

.tool-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 3.4rem;
}

.tool-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 44px;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--vxp-line);
    border-radius: 13px;
    color: var(--vxp-muted);
    background: var(--vxp-surface);
    font: inherit;
    font-size: 0.79rem;
    font-weight: 750;
    cursor: pointer;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.tool-filter:hover {
    color: var(--vxp-ink);
    border-color: var(--vxp-line-strong);
    transform: translateY(-2px);
}

.tool-filter.is-active {
    color: #fff;
    border-color: #2b61ef;
    background: linear-gradient(135deg, #1b5af6, #6547ed);
    box-shadow: 0 10px 24px rgba(16, 80, 240, 0.2);
}

.tool-filter span {
    display: inline-grid;
    min-width: 24px;
    height: 22px;
    place-items: center;
    padding-inline: 0.3rem;
    border-radius: 7px;
    background: var(--vxp-surface-soft);
    color: var(--vxp-muted);
    font-size: 0.65rem;
}

.tool-filter.is-active span {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.tool-catalog {
    display: grid;
    gap: 5rem;
}

.tool-category[hidden] {
    display: none !important;
}

.tool-category__head {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1.1rem;
    max-width: 760px;
    margin-bottom: 2rem;
}

.tool-category__head > span {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border: 1px solid var(--vxp-line);
    border-radius: 16px;
    color: var(--vxp-brand-blue);
    background: var(--vxp-surface);
    font-size: 0.72rem;
    font-weight: 800;
}

.tool-category__head h2 {
    margin: 0 0 0.4rem;
    font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

.tool-category__head p {
    margin: 0;
}

.tool-card-grid--catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tool-card-grid--catalog .tool-card > a {
    min-height: 255px;
}

.tool-card--featured {
    border-color: rgba(139, 61, 240, 0.35);
    box-shadow: 0 18px 42px rgba(105, 52, 202, 0.11);
}

.tools-ai-banner {
    display: grid;
    grid-template-columns: minmax(310px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    padding: 10px clamp(1.5rem, 4vw, 3.5rem) 10px 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--vxp-radius-lg);
    color: #fff;
    background: linear-gradient(135deg, #07142f, #15102c);
    box-shadow: var(--vxp-shadow-lg);
}

.tools-ai-banner img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 27px;
    object-fit: cover;
}

.tools-ai-banner h2 {
    max-width: 15ch;
}

.tools-ai-banner p {
    max-width: 660px;
    color: rgba(226, 233, 247, 0.68);
}

/* Footer */
.site-footer {
    margin-top: clamp(4rem, 7vw, 7rem);
    padding-top: 1px;
    color: rgba(222, 229, 243, 0.68);
    background: #050914;
}

.site-footer__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: -1.8rem;
    padding: clamp(2rem, 4vw, 3.2rem);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    background:
        radial-gradient(circle at 8% 20%, rgba(16, 80, 240, 0.34), transparent 22rem),
        linear-gradient(135deg, #0b1b3f, #15102d);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.site-footer__cta h2 {
    max-width: 730px;
    margin-bottom: 0.65rem;
}

.site-footer__cta p {
    max-width: 680px;
    margin: 0;
    color: rgba(226, 233, 247, 0.63);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 0.8fr);
    gap: clamp(2rem, 5vw, 5rem);
    padding: 5rem 0 3.5rem;
}

.site-footer__brand img {
    width: 154px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.94;
}

.site-footer__brand p {
    max-width: 370px;
    margin: 1.25rem 0;
    color: rgba(222, 229, 243, 0.56);
    font-size: 0.84rem;
}

.site-footer__mail {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #9fc8ff;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
}

.site-footer nav h2 {
    margin: 0 0 1.15rem;
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.site-footer nav ul {
    display: grid;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer nav a {
    color: rgba(222, 229, 243, 0.58);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 180ms ease;
}

.site-footer nav a:hover {
    color: #fff;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(222, 229, 243, 0.4);
    font-size: 0.7rem;
}

/* Existing detail and tool pages */
.page-section {
    padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-heading h1,
.section-heading h2 {
    margin: 0.85rem 0;
}

.page-lead {
    color: var(--vxp-muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.card,
.accordion-item {
    border-radius: var(--vxp-radius-md);
}

.card {
    border-color: var(--vxp-line);
    background-color: var(--vxp-surface);
}

.card-hover {
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--vxp-shadow-sm);
}

.card-accent {
    --accent-start: #1050f0;
    --accent-end: #00b0f0;
    position: relative;
    overflow: hidden;
}

.card-accent__icon .bx {
    color: inherit;
}

.tool-seo-article {
    max-width: 76ch;
    color: var(--vxp-muted);
    line-height: 1.85;
}

.tool-seo-article h2,
.tool-seo-article h3,
.tool-seo-article h4 {
    margin-top: 2rem;
    margin-bottom: 0.9rem;
}

.tool-seo-article p,
.tool-seo-article ul,
.tool-seo-article ol,
.tool-seo-article blockquote,
.tool-seo-article pre {
    margin-bottom: 1rem;
}

.tool-seo-article blockquote {
    padding: 1rem 1.2rem;
    border-left: 3px solid var(--vxp-brand-blue);
    border-radius: 0 14px 14px 0;
    background: var(--vxp-surface-soft);
}

.tool-seo-article pre {
    padding: 1rem;
    overflow-x: auto;
    border: 1px solid var(--vxp-line);
    border-radius: 14px;
    background: var(--vxp-surface-soft);
}

.tool-summary-value {
    display: block;
    overflow: hidden;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-stat-label {
    line-height: 1.35;
    word-break: normal;
    overflow-wrap: normal;
}

.form-control,
.form-select {
    border-color: var(--vxp-line);
    border-radius: 12px;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(16, 80, 240, 0.5);
    box-shadow: 0 0 0 4px rgba(16, 80, 240, 0.1);
}

.btn-scroll-top {
    border-radius: 13px;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .vxp-hero__inner,
    .vxp-page-hero__grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
        gap: 3rem;
    }

    .vxp-hero__copy h1,
    .vxp-page-hero__copy h1 {
        font-size: clamp(3rem, 5.4vw, 4.45rem);
    }

    .tool-card-grid,
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .value-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .value-grid__intro {
        grid-column: 1 / -1;
        max-width: 700px;
        padding-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 991.98px) {
    .site-header,
    .site-nav {
        min-height: 72px;
    }

    .site-nav .navbar-collapse {
        position: absolute;
        top: calc(100% + 1px);
        right: 20px;
        left: 20px;
        padding: 0.85rem;
        border: 1px solid var(--vxp-line);
        border-radius: 16px;
        background: var(--vxp-surface);
        box-shadow: var(--vxp-shadow-lg);
    }

    .site-nav .navbar-nav {
        gap: 0.1rem;
    }

    .site-nav .nav-link::after {
        right: auto;
        left: 0.3rem;
        width: 3px;
        height: 70%;
        bottom: 15%;
        transform: scaleY(0);
    }

    .site-nav .nav-link.active::after,
    .site-nav .nav-link:hover::after {
        transform: scaleY(1);
    }

    .vxp-hero__inner,
    .vxp-page-hero__grid,
    .lab-grid,
    .mobile-flow,
    .signup-card,
    .tools-ai-banner,
    .workflow-band {
        grid-template-columns: 1fr;
    }

    .vxp-hero__inner,
    .vxp-page-hero__grid {
        min-height: 0;
        padding-block: 4.5rem;
    }

    .vxp-hero__copy,
    .vxp-page-hero__copy {
        max-width: 720px;
    }

    .vxp-hero__visual,
    .mobile-hero-visual {
        max-width: 760px;
        margin-inline: auto;
    }

    .vxp-section-head {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .vxp-section-head > p {
        max-width: 680px;
    }

    .lab-grid {
        gap: 3rem;
    }

    .brand-cloud {
        width: min(100%, 650px);
        margin-inline: auto;
    }

    .workflow-band__intro {
        max-width: 700px;
    }

    .product-grid--catalog {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-footer__grid {
        grid-template-columns: 1.4fr repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 767.98px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl,
    .page-section > * {
        width: min(100% - 30px, var(--vxp-container));
    }

    .vxp-hero__copy h1,
    .vxp-page-hero__copy h1 {
        max-width: 14ch;
        font-size: clamp(2.75rem, 12vw, 4rem);
    }

    .vxp-hero__rail,
    .product-grid,
    .product-grid--catalog,
    .value-grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .vxp-hero__rail a {
        border-top: 1px solid rgba(255, 255, 255, 0.09);
        border-left: 0;
    }

    .vxp-hero__rail a:first-child {
        border-top: 0;
    }

    .product-card--featured {
        grid-column: auto;
    }

    .vxp-section-head h2,
    .lab-copy h2,
    .mobile-flow__copy h2 {
        font-size: clamp(2.1rem, 9vw, 3rem);
    }

    .tool-card-grid--catalog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-cloud {
        min-height: 440px;
        transform: scale(0.92);
    }

    .value-grid__intro {
        grid-column: auto;
    }

    .inline-cta,
    .site-footer__cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .signup-form {
        grid-template-columns: 1fr;
    }

    .signup-form > * {
        grid-column: 1 / -1;
    }

    .tools-ai-banner {
        padding: 10px 10px 2rem;
    }

    .tools-ai-banner > div {
        padding-inline: 1rem;
    }

    .site-footer__grid {
        padding-block: 4rem 2.5rem;
    }

    .site-footer__brand {
        margin-bottom: 1rem;
    }

    .site-footer__bottom {
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .site-nav__cta {
        display: none !important;
    }

    .brand-mark--wordmark {
        width: 132px;
    }

    .vxp-hero__inner,
    .vxp-page-hero__grid {
        padding-block: 3.7rem;
    }

    .vxp-hero__actions,
    .vxp-page-hero__actions {
        display: grid;
    }

    .vxp-hero__actions .btn,
    .vxp-page-hero__actions .btn {
        width: 100%;
    }

    .vxp-metrics {
        gap: 0;
    }

    .vxp-metrics > div {
        padding-inline: 0.7rem;
    }

    .vxp-metrics dd {
        font-size: 0.66rem;
    }

    .vxp-hero__visual,
    .mobile-hero-visual {
        padding: 6px;
        border-radius: 25px;
    }

    .vxp-hero__visual::after,
    .mobile-hero-visual::after {
        inset: 6px;
        border-radius: 19px;
    }

    .vxp-hero__visual > img,
    .mobile-hero-visual > img {
        border-radius: 19px;
    }

    .vxp-float-card {
        display: none;
    }

    .product-card {
        min-height: 0;
    }

    .tool-card-grid,
    .feature-grid,
    .tool-card-grid--catalog {
        grid-template-columns: 1fr;
    }

    .tool-card > a,
    .tool-card-grid--catalog .tool-card > a {
        min-height: 235px;
    }

    .feature-card {
        min-height: 230px;
    }

    .feature-card > span {
        margin-bottom: 2rem;
    }

    .brand-cloud {
        min-height: 410px;
        margin-inline: -25px;
        transform: scale(0.8);
    }

    .brand-cloud__item {
        width: 150px;
    }

    .tool-stack__item small {
        max-width: 190px;
    }

    .tool-category__head {
        grid-template-columns: 48px 1fr;
    }

    .tool-category__head > span {
        width: 44px;
        height: 44px;
        border-radius: 13px;
    }

    .workflow-band,
    .signup-card,
    .inline-cta,
    .site-footer__cta {
        border-radius: 23px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
