:root {
    --bg: #f5f7ff;
    --bg-strong: #ffffff;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: rgba(255, 255, 255, 0.92);
    --surface-deep: #131c3f;
    --surface-deep-soft: #1c2858;
    --text: #16213f;
    --text-soft: #59657f;
    --text-faint: #7e88a2;
    --primary: #6b5cff;
    --primary-strong: #5445ef;
    --secondary: #35a7ff;
    --secondary-soft: #d9f0ff;
    --accent: #8f7cff;
    --success: #18ba85;
    --warning: #ffb864;
    --border: rgba(107, 92, 255, 0.16);
    --border-strong: rgba(107, 92, 255, 0.28);
    --shadow-sm: 0 14px 32px rgba(30, 46, 101, 0.08);
    --shadow-md: 0 22px 60px rgba(30, 46, 101, 0.12);
    --shadow-lg: 0 34px 84px rgba(22, 33, 63, 0.18);
    --radius-sm: 18px;
    --radius-md: 28px;
    --radius-lg: 36px;
    --container-max: 1200px;
}

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

body {
    position: relative;
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: radial-gradient(circle at top left, rgba(122, 105, 255, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(53, 167, 255, 0.1), transparent 22%),
    linear-gradient(180deg, #fbfbff 0%, var(--bg) 42%, #ffffff 100%);
    font-family: "Segoe UI Variable Text", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    text-rendering: optimizeLegibility;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    color: var(--text-soft);
    line-height: 1.72;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--text);
    font-family: "Segoe UI Variable Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-weight: 760;
    line-height: 1.08;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

.container {
    max-width: var(--container-max);
}

.section-space {
    position: relative;
    padding: 6.5rem 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 3.3rem;
}

.section-heading h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 1.55rem + 1.5vw, 3.35rem);
}

.section-heading p,
.section-lead {
    font-size: 1.08rem;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.42rem 0.84rem;
    border-radius: 999px;
    background: rgba(107, 92, 255, 0.12);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-kicker--light {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #8b77ff 48%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.glass-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 249, 255, 0.86));
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
}

.btn {
    border-radius: 999px;
    padding: 0.9rem 1.4rem;
    border-width: 1px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.btn:focus-visible,
.nav-link:focus-visible,
.lang-link:focus-visible,
.accordion-button:focus-visible,
.footer-link:focus-visible {
    outline: 3px solid rgba(53, 167, 255, 0.3);
    outline-offset: 3px;
    box-shadow: none;
}

.btn-primary-grad {
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary) 0%, #8772ff 48%, var(--secondary) 100%);
    box-shadow: 0 18px 42px rgba(107, 92, 255, 0.3);
}

.btn-primary-grad:hover,
.btn-primary-grad:focus-visible {
    color: #ffffff;
    box-shadow: 0 22px 50px rgba(107, 92, 255, 0.36);
}

.btn-soft,
.btn-outline-soft {
    border: 1px solid rgba(107, 92, 255, 0.18);
    color: var(--text);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-sm);
}

.btn-soft:hover,
.btn-outline-soft:hover {
    background: #ffffff;
    border-color: var(--border-strong);
}

.btn-light-cta {
    border: 1px solid rgba(255, 255, 255, 0.48);
    color: var(--text);
    background: #ffffff;
}

.btn-outline-light-cta {
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #ffffff;
    background: transparent;
}

.btn-outline-light-cta:hover,
.btn-outline-light-cta:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.bg-orb,
.bg-grid {
    position: fixed;
    pointer-events: none;
    z-index: -1;
}

.bg-orb {
    width: 26rem;
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.56;
}

.bg-orb--one {
    top: -8rem;
    left: -8rem;
    background: radial-gradient(circle at 35% 35%, rgba(107, 92, 255, 0.38), transparent 66%);
}

.bg-orb--two {
    right: -7rem;
    top: 22rem;
    background: radial-gradient(circle at 35% 35%, rgba(53, 167, 255, 0.26), transparent 66%);
}

.bg-grid {
    inset: 0;
    background-image: linear-gradient(rgba(107, 92, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 92, 255, 0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 74%);
}

.site-navbar {
    padding: 1rem 0;
    transition: background-color 180ms ease, backdrop-filter 180ms ease, box-shadow 180ms ease;
}

.site-navbar.is-scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 42px rgba(26, 41, 87, 0.08);
}

.brand-logo {
    width: auto;
    height: 42px;
}

.brand-logo--footer {
    height: 46px;
}

.navbar-toggler {
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 1.25rem;
    height: 1.25rem;
    background-image: linear-gradient(var(--text), var(--text)),
    linear-gradient(var(--text), var(--text)),
    linear-gradient(var(--text), var(--text));
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: center 18%, center 50%, center 82%;
}

.nav-link {
    position: relative;
    margin: 0 0.3rem;
    color: rgba(22, 33, 63, 0.82);
    font-weight: 650;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after,
.nav-link[aria-current="true"]::after {
    transform: scaleX(1);
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(107, 92, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.lang-link {
    min-width: 18px !important;
    padding: 0.25rem 0.4rem !important;
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 0.65rem !important;
    font-weight: 700;
    text-align: center;
    transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.lang-link.is-active {
    color: var(--primary);
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(31, 47, 104, 0.08);
}

.nav-cta {
    white-space: nowrap;
}

.hero-section {
    padding: 8.8rem 0 5.2rem;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.25rem;
}

.pill-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(107, 92, 255, 0.12);
    box-shadow: var(--shadow-sm);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-title {
    max-width: 11ch;
    margin-bottom: 1.15rem;
    font-size: clamp(2.6rem, 2rem + 2.3vw, 4.7rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.hero-lead {
    max-width: 700px;
    margin-bottom: 1.1rem;
    font-size: 1.12rem;
}

.hero-support-note {
    max-width: 680px;
    margin-bottom: 1.5rem;
    padding: 0.95rem 1.1rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(107, 92, 255, 0.12);
    box-shadow: var(--shadow-sm);
    color: var(--text-soft);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.65rem;
}

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

.hero-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 100%;
    padding: 0.95rem 1rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(107, 92, 255, 0.1);
    box-shadow: var(--shadow-sm);
}

.hero-point i {
    display: inline-grid;
    place-items: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 14px;
    background: rgba(107, 92, 255, 0.12);
    color: var(--primary);
    font-size: 1.05rem;
}

.hero-point span {
    font-weight: 650;
    color: var(--text);
}

.hero-stage {
    position: relative;
    min-height: 640px;
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top right, rgba(107, 92, 255, 0.12), transparent 30%),
    radial-gradient(circle at bottom left, rgba(53, 167, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 248, 255, 0.92));
    border: 1px solid rgba(107, 92, 255, 0.14);
    box-shadow: var(--shadow-lg);
}

.hero-stage__art {
    position: absolute;
    top: 2.8rem;
    left: 0.55rem;
    right: 0.55rem;
    width: calc(100% - 1.1rem);
    height: calc(100% - 12rem);
    max-width: none;
    object-fit: contain;
    object-position: top center;
}

.hero-card,
.hero-badge,
.hero-console {
    position: absolute;
}

.hero-card {
    min-width: 156px;
    padding: 1rem 1.05rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(107, 92, 255, 0.12);
    box-shadow: var(--shadow-md);
}

.hero-card__label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-faint);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-card strong {
    font-size: 1rem;
}

.hero-card--spec {
    top: 4.6rem;
    left: 1.5rem;
}

.hero-card--validation {
    top: 7.8rem;
    right: 1.5rem;
}

.hero-card--trace {
    bottom: 8.8rem;
    left: 1.6rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 0.95rem;
    border-radius: 999px;
    background: rgba(19, 28, 63, 0.94);
    box-shadow: var(--shadow-md);
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 700;
}

.hero-badge i {
    color: #9de7ff;
}

.hero-badge--top {
    top: 1.2rem;
    right: 1.4rem;
}

.hero-badge--bottom {
    right: 1.5rem;
    bottom: 10.9rem;
}

.hero-console {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.4rem;
    padding: 1.15rem 1.15rem 1rem;
    border-radius: 26px;
    background: rgba(19, 28, 63, 0.94);
    box-shadow: var(--shadow-lg);
    color: #ffffff;
}

.hero-console__row,
.hero-console__grid {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 5rem;
}

.hero-console__row {
    align-items: center;
    margin-bottom: 0.95rem;
    margin-top: -6.5rem;
}

.hero-console__tag {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-console__status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 700;
    background: #6b5cff;
    padding: 0.2rem 0.5rem;
    border-radius: 0.5rem;
}

.hero-console__dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: #8cffdf;
    box-shadow: 0 0 0 0 rgba(140, 255, 223, 0.4);
    animation: pulse-dot 2.2s infinite;
}

.hero-console__grid {
    align-items: stretch;
}

.hero-console__grid > div {
    flex: 1 1 0;
    padding: 0.85rem 0.9rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-console__label {
    display: block;
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-console__grid strong {
    font-size: 0.98rem;
    color: #ffffff;
}

.trust-strip {
    padding-bottom: 0.6rem;
}

.trust-card {
    height: 100%;
    padding: 1.3rem 1.2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(107, 92, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.trust-card i {
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.85rem;
    border-radius: 18px;
    background: rgba(107, 92, 255, 0.12);
    color: var(--primary);
    font-size: 1.2rem;
}

.trust-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 1.4rem;
}

.overview-panel {
    padding: 2rem;
    border-radius: var(--radius-md);
}

.overview-panel__list {
    display: grid;
    gap: 1rem;
}

.overview-point {
    display: flex;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(107, 92, 255, 0.1);
}

.overview-point i {
    color: var(--primary);
    font-size: 1.15rem;
}

.overview-point h3 {
    margin-bottom: 0.25rem;
    font-size: 1.02rem;
}

.overview-stats {
    display: grid;
    gap: 1rem;
}

.signal-card {
    padding: 1.4rem;
    border-radius: 24px;
    background: radial-gradient(circle at top right, rgba(107, 92, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 247, 255, 0.9));
    border: 1px solid rgba(107, 92, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.signal-card__label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--text-faint);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.signal-card__value {
    display: block;
    margin-bottom: 0.45rem;
    font-size: clamp(1.8rem, 1.5rem + 0.9vw, 2.5rem);
    line-height: 1;
}

.signal-card p {
    margin-bottom: 0;
}

.workflow-shell {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.4rem;
    align-items: start;
}

.workflow-copy,
.workflow-dashboard {
    padding: 2rem;
    border-radius: var(--radius-md);
}

.workflow-copy__list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.4rem;
}

.workflow-bullet {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(107, 92, 255, 0.1);
}

.workflow-bullet i {
    color: var(--primary);
    font-size: 1.05rem;
}

.workflow-dashboard {
    position: relative;
    background: radial-gradient(circle at top right, rgba(107, 92, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(245, 247, 255, 0.91));
}

.workflow-dashboard__eyebrow {
    display: inline-flex;
    margin-bottom: 0.7rem;
    color: var(--text-faint);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.workflow-dashboard__top {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.workflow-dashboard__status {
    padding: 1rem 1.05rem;
    border-radius: 22px;
    background: rgba(19, 28, 63, 0.95);
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.workflow-dashboard__status-label {
    display: block;
    margin-bottom: 0.3rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.workflow-dashboard__status strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
}

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

.workflow-metric {
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(107, 92, 255, 0.1);
}

.workflow-metric__label {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-faint);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.workflow-list {
    position: relative;
    display: grid;
    gap: 0.9rem;
    padding-left: 2.4rem;
}

.workflow-list::before,
.workflow-list::after {
    content: "";
    position: absolute;
    left: 0.78rem;
    top: 0.7rem;
    width: 4px;
    border-radius: 999px;
}

.workflow-list::before {
    bottom: 0.7rem;
    background: rgba(107, 92, 255, 0.12);
}

.workflow-list::after {
    height: var(--workflow-progress, 10%);
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    transition: height 300ms ease;
}

.workflow-step {
    position: relative;
    padding: 1rem 1rem 1rem 1.15rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(107, 92, 255, 0.1);
    box-shadow: var(--shadow-sm);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.workflow-step::before {
    content: "";
    position: absolute;
    left: -2.05rem;
    top: 1.15rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 4px solid rgba(107, 92, 255, 0.2);
    background: #ffffff;
}

.workflow-step.is-complete::before,
.workflow-step.is-active::before {
    border-color: transparent;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 0 0 5px rgba(107, 92, 255, 0.1);
}

.workflow-step.is-active {
    transform: translateX(4px);
    border-color: rgba(107, 92, 255, 0.22);
    box-shadow: 0 20px 48px rgba(31, 47, 104, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(241, 245, 255, 0.94));
}

.workflow-step__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    padding: 0.25rem 0.5rem;
    margin-bottom: 0.55rem;
    border-radius: 999px;
    background: rgba(107, 92, 255, 0.1);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
}

.workflow-step__title {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.workflow-step__text {
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

.feature-card {
    height: 100%;
    padding: 1.45rem 1.25rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(107, 92, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.feature-card__icon {
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.9rem;
    border-radius: 18px;
    background: rgba(107, 92, 255, 0.12);
    color: var(--primary);
    font-size: 1.2rem;
}

.feature-card h3 {
    margin-bottom: 0.55rem;
    font-size: 1.05rem;
}

.comparison-shell {
    position: relative;
    padding: 1.6rem;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top center, rgba(107, 92, 255, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 249, 255, 0.94));
    box-shadow: var(--shadow-lg);
}

.comparison-vs {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-grid;
    place-items: center;
    width: 88px;
    height: 88px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(107, 92, 255, 0.14);
    box-shadow: 0 20px 42px rgba(31, 47, 104, 0.14);
    color: var(--primary);
    font-size: 1.45rem;
    font-weight: 800;
}

.comparison-panel {
    height: 100%;
    padding: 1.85rem;
    border-radius: 30px;
    border: 1px solid rgba(107, 92, 255, 0.14);
    box-shadow: var(--shadow-md);
}

.comparison-panel--manual {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 246, 255, 0.94));
}

.comparison-panel--platform {
    background: radial-gradient(circle at top right, rgba(107, 92, 255, 0.24), transparent 28%),
    radial-gradient(circle at bottom left, rgba(53, 167, 255, 0.18), transparent 26%),
    linear-gradient(160deg, rgba(20, 32, 70, 0.98), rgba(29, 48, 104, 0.98));
    color: #ffffff;
}

.comparison-panel--platform h3,
.comparison-panel--platform h4,
.comparison-panel--platform p,
.comparison-panel--platform span,
.comparison-panel--platform strong,
.comparison-panel--platform li {
    color: inherit;
}

.comparison-panel__header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.comparison-panel__eyebrow {
    display: inline-block;
    margin-bottom: 0.6rem;
    color: var(--text-faint);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.comparison-panel--platform .comparison-panel__eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.comparison-panel__header h3 {
    margin-bottom: 0.35rem;
    font-size: 2rem;
}

.comparison-panel__header p {
    margin-bottom: 0;
    font-size: 0.96rem;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-weight: 800;
    white-space: nowrap;
}

.availability-badge--manual {
    color: var(--primary);
    background: rgba(107, 92, 255, 0.1);
}

.availability-badge--platform {
    background: rgba(255, 255, 255, 0.12);
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1.4rem;
}

.role-card {
    padding: 1rem 0.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(107, 92, 255, 0.12);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.role-card i {
    color: var(--primary);
    font-size: 1.25rem;
}

.role-card h4 {
    margin: 0.65rem 0 0.35rem;
    font-size: 1rem;
}

.role-card p,
.role-card span {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.92rem;
}

.role-card strong {
    display: block;
    font-size: 0.98rem;
}

.cost-summary {
    padding: 1.2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(107, 92, 255, 0.1);
}

.cost-summary h4 {
    margin-bottom: 0.9rem;
    font-size: 1rem;
}

.cost-summary__line,
.cost-summary__total {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.cost-summary__line {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(107, 92, 255, 0.08);
}

.cost-summary__total {
    padding-top: 1rem;
    font-size: 1rem;
}

.cost-summary__total strong {
    color: var(--text);
}

.cost-summary__total--annual strong {
    color: var(--primary);
}

.comparison-note {
    margin-top: 0.75rem;
    color: var(--text-faint);
}

.capability-list {
    display: grid;
    gap: 0.8rem;
    list-style: none;
    margin-bottom: 1.4rem;
}

.capability-list li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
}

.capability-list i {
    color: #9de7ff;
    font-size: 1.05rem;
}

.comparison-highlight {
    padding: 1rem 1.05rem;
    margin-bottom: 1.2rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
}

.comparison-highlight strong {
    display: block;
    margin-bottom: 0.25rem;
}

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

.platform-price__item {
    padding: 1rem 1.05rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
}

.platform-price__item span {
    display: block;
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.platform-price__item strong {
    font-size: 1.1rem;
}

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

.pricing-card {
    position: relative;
    height: 100%;
    padding: 1.55rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(107, 92, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.pricing-card--featured {
    transform: translateY(-10px);
    background: radial-gradient(circle at top right, rgba(107, 92, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 255, 0.92));
    box-shadow: var(--shadow-lg);
}

.pricing-card__pill {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(107, 92, 255, 0.12);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card__tier {
    display: block;
    margin-bottom: 0.85rem;
    font-size: 1.2rem;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
}

.pricing-card__price--stack {
    display: grid;
    gap: 0.8rem;
    align-items: start;
}

.pricing-card__price-main {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.pricing-card__price strong {
    font-size: clamp(2.3rem, 1.8rem + 1.2vw, 3.2rem);
    line-height: 1;
}

.pricing-card__price span {
    color: var(--text-faint);
    font-size: 0.96rem;
    font-weight: 600;
}

.pricing-card__description {
    margin-bottom: 1rem;
}

.pricing-card__features {
    display: grid;
    gap: 0.75rem;
    list-style: none;
    margin-bottom: 1.3rem;
}

.pricing-card__features li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}

.pricing-card__features i {
    color: var(--primary);
}

.pricing-note {
    max-width: 860px;
    margin: 1.5rem auto 0;
    padding: 1rem 1.15rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(107, 92, 255, 0.1);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.faq-shell {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.accordion-item {
    margin-bottom: 0.85rem;
    overflow: hidden;
    border: 1px solid rgba(107, 92, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-sm);
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-button {
    padding: 1.1rem 1.2rem;
    font-weight: 700;
    color: var(--text);
    background: transparent;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: rgba(107, 92, 255, 0.06);
    box-shadow: none;
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-body {
    padding: 0 1.2rem 1.15rem;
}

.final-cta-section {
    padding-top: 2rem;
}

.final-cta {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top right, rgba(53, 167, 255, 0.22), transparent 30%),
    radial-gradient(circle at bottom left, rgba(107, 92, 255, 0.28), transparent 32%),
    linear-gradient(160deg, rgba(20, 32, 70, 0.98), rgba(31, 49, 105, 0.98));
    box-shadow: var(--shadow-lg);
    color: #ffffff;
}

.final-cta h2,
.final-cta p,
.final-cta strong,
.final-cta span {
    color: inherit;
}

.final-cta__grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 1.4rem;
    align-items: start;
}

.final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.35rem;
}

.final-cta__panel {
    padding: 1.25rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.final-cta__panel-list {
    display: grid;
    gap: 0.85rem;
    list-style: none;
}

.final-cta__panel-list li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}

.final-cta__panel-list i {
    color: #9de7ff;
}

.contact-links {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background-color 180ms ease, border-color 180ms ease;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}

.contact-link i {
    color: #9de7ff;
    font-size: 1.1rem;
}

.site-footer {
    padding: 2.4rem 0 3rem;
}

.site-footer__shell {
    padding: 1.6rem;
    border-radius: var(--radius-md);
}

.footer-description {
    max-width: 430px;
    margin: 1rem 0 0;
}

.site-footer h3 {
    margin-bottom: 0.9rem;
    font-size: 1rem;
}

.footer-list {
    display: grid;
    gap: 0.6rem;
    list-style: none;
}

.footer-link {
    color: var(--text-soft);
}

.footer-link:hover {
    color: var(--primary);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(107, 92, 255, 0.1);
    color: var(--text-faint);
    font-size: 0.92rem;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 2.5rem 0 auto;
    height: 24rem;
    background: radial-gradient(circle at 16% 22%, rgba(107, 92, 255, 0.14), transparent 26%),
    radial-gradient(circle at 84% 12%, rgba(53, 167, 255, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: -1;
}

.hero-stage {
    overflow: hidden;
    border: 1px solid rgba(107, 92, 255, 0.16);
    background: radial-gradient(circle at top right, rgba(107, 92, 255, 0.24), transparent 24%),
    radial-gradient(circle at bottom left, rgba(53, 167, 255, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 246, 255, 0.94));
    box-shadow: 0 34px 84px rgba(22, 33, 63, 0.16);
}

.hero-stage::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border-radius: calc(var(--radius-lg) - 0.5rem);
    border: 1px solid rgba(255, 255, 255, 0.6);
    pointer-events: none;
}

.hero-console {
    background: rgba(19, 28, 63, 0.88);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-card,
.overview-point,
.signal-card,
.feature-card,
.pricing-card,
.roadmap-card,
.document-card,
.comparison-summary-card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.trust-card:hover,
.overview-point:hover,
.signal-card:hover,
.feature-card:hover,
.pricing-card:hover,
.roadmap-card:hover,
.document-card:hover,
.comparison-summary-card:hover {
    transform: translateY(-4px);
    border-color: rgba(107, 92, 255, 0.22);
    box-shadow: var(--shadow-md);
}

.agents-shell,
.roadmap-shell,
.documents-shell {
    padding: 2.35rem;
    border: 1px solid rgba(107, 92, 255, 0.12);
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top right, rgba(107, 92, 255, 0.14), transparent 26%),
    radial-gradient(circle at bottom left, rgba(53, 167, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 255, 0.92));
    box-shadow: var(--shadow-md);
}

.agents-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 1.35rem;
    align-items: stretch;
}

.agents-panel {
    height: 100%;
    padding: 1.7rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(107, 92, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.agents-panel--accent {
    background: radial-gradient(circle at top right, rgba(107, 92, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 255, 0.92));
}

.agents-panel__tag,
.roadmap-card__tag,
.documents-intro__tag {
    display: inline-flex;
    margin-bottom: 0.9rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(107, 92, 255, 0.1);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.agents-panel h3,
.documents-intro h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.agents-benefits,
.documents-points {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.35rem;
    list-style: none;
}

.agents-benefits li,
.documents-point {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(107, 92, 255, 0.12);
    background: rgba(255, 255, 255, 0.78);
}

.agents-benefits i,
.documents-point i,
.agent-card__icon,
.roadmap-card__icon,
.document-card__icon {
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    flex: 0 0 3rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(107, 92, 255, 0.18), rgba(53, 167, 255, 0.18));
    color: var(--primary);
    font-size: 1.15rem;
}

.agents-panel__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.agents-panel__chips span {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(107, 92, 255, 0.08);
    border: 1px solid rgba(107, 92, 255, 0.1);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
}

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

.agent-card {
    height: 100%;
    padding: 1.45rem;
    border-radius: 24px;
    border: 1px solid rgba(107, 92, 255, 0.12);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-sm);
}

.agent-card__eyebrow {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-faint);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.agent-card h3 {
    margin: 0.95rem 0 0.55rem;
    font-size: 1.18rem;
}

.agent-card__meta {
    margin-top: 1rem;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
}

.comparison-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.comparison-summary-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.55rem;
    border-radius: 28px;
    border: 1px solid rgba(107, 92, 255, 0.12);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-sm);
}

.comparison-summary-card.is-active {
    border-color: rgba(107, 92, 255, 0.3);
    box-shadow: var(--shadow-md);
}

.comparison-summary-card--platform {
    background: radial-gradient(circle at top right, rgba(53, 167, 255, 0.22), transparent 30%),
    radial-gradient(circle at bottom left, rgba(107, 92, 255, 0.28), transparent 34%),
    linear-gradient(160deg, rgba(20, 32, 70, 0.98), rgba(31, 49, 105, 0.98));
    color: #ffffff;
}

.comparison-summary-card--platform h3,
.comparison-summary-card--platform p,
.comparison-summary-card--platform strong,
.comparison-summary-card--platform span {
    color: inherit;
}

.comparison-summary-card__eyebrow {
    display: inline-flex;
    margin-bottom: 0.75rem;
    color: var(--text-faint);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.comparison-summary-card--platform .comparison-summary-card__eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.comparison-summary-card h3 {
    margin-bottom: 0.4rem;
    font-size: 1.35rem;
}

.comparison-summary-card__stats {
    display: grid;
    gap: 0.8rem;
    margin: 1.15rem 0;
}

.comparison-summary-card__stat {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(107, 92, 255, 0.1);
}

.comparison-summary-card__stat--price {
    align-items: flex-start;
}

.comparison-summary-card--platform .comparison-summary-card__stat {
    border-color: rgba(255, 255, 255, 0.12);
}

.comparison-summary-card__stat span {
    font-size: 0.9rem;
}

.discount-price__stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
    width: min(100%, 280px);
    text-align: right;
}

.discount-price__stack,
.platform-price__item,
.pricing-card__price--stack {
    position: relative;
}

.platform-price__item.has-discount {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}

.pricing-card__price--stack.has-discount {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
}

[data-discount-price].has-discount [data-price-base] {
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(107, 92, 255, 0.38);
    opacity: 0.72;
}

.comparison-panel--platform [data-discount-price].has-discount [data-price-base],
.comparison-summary-card--platform [data-discount-price].has-discount [data-price-base] {
    text-decoration-color: rgba(255, 255, 255, 0.42);
    opacity: 0.7;
}

.discount-price__badge {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0.3rem 0.62rem;
    border-radius: 999px;
    border: 1px solid rgba(107, 92, 255, 0.18);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 18px rgba(44, 61, 124, 0.12);
    box-sizing: border-box;
}

.discount-price__badge::before {
    content: none;
}

.discount-price__tag {
    display: block;
    width: 100%;
    color: var(--primary);
    font-size: 0.66rem !important;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discount-price__current {
    display: block;
    margin-top: 0;
    font-size: clamp(0.94rem, 0.88rem + 0.34vw, 1.14rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
}

.discount-price__stack [data-price-current] {
    order: 2;
}

.discount-price__stack [data-price-base] {
    order: 3;
}

.platform-price__item.has-discount > span {
    order: 1;
}

.platform-price__item.has-discount [data-price-current] {
    order: 2;
}

.platform-price__item.has-discount [data-price-base] {
    order: 3;
}

.pricing-card__price--stack.has-discount [data-price-current] {
    order: 2;
    font-size: clamp(1.2rem, 1.06rem + 0.52vw, 1.6rem);
    line-height: 1.06;
}

.pricing-card__price--stack.has-discount .pricing-card__price-main {
    order: 3;
}

.comparison-panel--platform .discount-price__badge,
.comparison-summary-card--platform .discount-price__badge {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 28px rgba(9, 15, 38, 0.24);
}

.comparison-panel--platform .discount-price__tag,
.comparison-summary-card--platform .discount-price__tag {
    color: #ffffff;
}

.comparison-panel--platform .discount-price__current,
.comparison-summary-card--platform .discount-price__current {
    color: #ffffff;
}

.comparison-summary-card__cta {
    margin-top: auto;
}

.comparison-toggle {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(107, 92, 255, 0.08);
}

.comparison-toggle__button {
    border: 0;
    border-radius: 999px;
    padding: 0.72rem 1rem;
    background: transparent;
    color: var(--text-soft);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.comparison-toggle__button.is-active {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(38, 55, 118, 0.12);
}

.comparison-toggle__button:focus-visible {
    outline: 2px solid rgba(107, 92, 255, 0.28);
    outline-offset: 2px;
}

.roadmap-card {
    height: 100%;
    padding: 1.7rem;
    border: 1px solid rgba(107, 92, 255, 0.12);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-sm);
}

.roadmap-card h3,
.document-card h3 {
    margin: 0.95rem 0 0.75rem;
    font-size: 1.22rem;
}

.documents-intro {
    height: 100%;
    padding: 1.8rem;
    border: 1px solid rgba(107, 92, 255, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-sm);
}

.document-card {
    height: 100%;
    padding: 1.6rem;
    border: 1px solid rgba(107, 92, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-sm);
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(140, 255, 223, 0.44);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(140, 255, 223, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(140, 255, 223, 0);
    }
}

@media (max-width: 1199.98px) {
    .hero-stage {
        min-height: 600px;
    }

    .overview-grid,
    .workflow-shell,
    .final-cta__grid {
        grid-template-columns: 1fr;
    }

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

    .comparison-vs {
        display: none;
    }

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

@media (max-width: 991.98px) {
    .site-navbar {
        background: rgba(255, 255, 255, 0.78);
        backdrop-filter: blur(14px);
        box-shadow: 0 14px 36px rgba(24, 37, 81, 0.08);
    }

    .hero-section {
        padding-top: 8.2rem;
    }

    .hero-stage {
        margin-top: 0.6rem;
    }

    .workflow-dashboard__metrics,
    .platform-price,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .comparison-panel__header {
        flex-direction: column;
    }

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

@media (max-width: 767.98px) {
    .section-space {
        padding: 5rem 0;
    }

    .hero-title {
        max-width: none;
    }

    .hero-points,
    .feature-grid,
    .role-grid {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: 540px;
        padding: 1.2rem;
    }

    .hero-stage__art {
        top: 3.35rem;
        left: 0.55rem;
        right: 0.55rem;
        width: calc(100% - 1.1rem);
        height: calc(100% - 11.4rem);
    }

    .hero-card {
        min-width: 144px;
        padding: 0.85rem 0.9rem;
    }

    .hero-card--spec {
        left: 1rem;
    }

    .hero-card--validation {
        right: 1rem;
    }

    .hero-card--trace {
        left: 1rem;
        bottom: 8.3rem;
    }

    .hero-badge--top,
    .hero-badge--bottom {
        right: 1rem;
    }

    .hero-console {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .hero-console__row,
    .hero-console__grid,
    .hero-actions,
    .final-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .comparison-shell,
    .faq-shell,
    .final-cta,
    .overview-panel,
    .workflow-copy,
    .workflow-dashboard {
        padding: 1.35rem;
    }

    .workflow-list {
        padding-left: 2rem;
    }
}

@media (max-width: 575.98px) {
    html {
        scroll-padding-top: 86px;
    }

    .hero-pills {
        gap: 0.5rem;
    }

    .pill-chip {
        width: 100%;
        justify-content: center;
    }

    .lang-switch {
        width: 100%;
        justify-content: center;
    }

    .lang-link {
        flex: 1 1 0;
    }

    .accordion-button,
    .accordion-body {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 1199.98px) {
    .agents-grid,
    .comparison-summary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .agent-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .agents-shell,
    .roadmap-shell,
    .documents-shell {
        padding: 1.35rem;
    }

    .comparison-toggle {
        width: 100%;
    }

    .comparison-toggle__button {
        flex: 1 1 0;
    }
}

@media (max-width: 575.98px) {
    .agent-card-grid {
        grid-template-columns: 1fr;
    }

    .comparison-toggle {
        display: grid;
        grid-template-columns: 1fr;
    }

    .comparison-summary-card__stat--price {
        flex-direction: column;
        gap: 0.55rem;
        align-items: flex-start;
    }

    .comparison-summary-card__stat--price .discount-price__stack {
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }
}

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

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

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* Recovery refinements for navbar, workflow and pricing alignment */

.site-navbar {
    padding: 0.78rem 0;
}

.site-navbar .container {
    max-width: 1280px;
}

.brand-logo {
    height: 54px;
}

.navbar-collapse {
    min-width: 0;
}

.navbar-nav {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.08rem;
    min-width: 0;
}

.nav-link {
    margin: 0;
    padding: 0.62rem 0.62rem !important;
    white-space: nowrap;
    font-size: 0.95rem;
}

.lang-switch {
    gap: 0.18rem;
    padding: 0.14rem;
}

.lang-link {
    min-width: 34px;
    padding: 0.45rem 0.5rem;
    font-size: 0.76rem;
    line-height: 1;
}

.nav-cta {
    padding: 0.78rem 1.2rem;
    font-size: 0.92rem;
    box-shadow: 0 18px 34px rgba(74, 105, 255, 0.18);
}

.workflow-copy {
    padding: 0.2rem 0.15rem 0.2rem 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.workflow-copy .section-kicker {
    margin-bottom: 0.8rem;
}

.workflow-copy .section-lead {
    margin-bottom: 1.05rem;
}

.workflow-bullet {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(140, 151, 255, 0.14);
    box-shadow: 0 14px 34px rgba(33, 48, 96, 0.08);
}

.workflow-bullet span {
    color: var(--text-soft);
    font-weight: 600;
}

.workflow-dashboard {
    display: grid;
    grid-template-areas:
    "eyebrow"
    "status"
    "list"
    "metrics";
    gap: 1.2rem;
    padding: 1.55rem 1.4rem 1.3rem;
    border-radius: 32px;
    border: 1px solid rgba(163, 175, 255, 0.18);
    background: radial-gradient(circle at top right, rgba(120, 137, 255, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(111, 245, 214, 0.08), transparent 28%),
    linear-gradient(180deg, #2d3d7f 0%, #24376f 100%);
    box-shadow: 0 34px 78px rgba(26, 39, 82, 0.26);
    overflow: hidden;
}

.workflow-dashboard::before,
.workflow-dashboard::after {
    position: absolute;
    right: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.workflow-dashboard::before {
    content: "● Live";
    top: 1.45rem;
    font-size: 0.76rem;
    font-weight: 700;
}

.workflow-dashboard::after {
    content: "Auto / Manual";
    top: 4.05rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.workflow-dashboard__eyebrow {
    grid-area: eyebrow;
    margin-bottom: 0;
    color: rgba(220, 228, 255, 0.74);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

.workflow-dashboard__top {
    display: contents;
}

.workflow-dashboard__status {
    grid-area: status;
    max-width: calc(100% - 8.75rem);
    padding: 1rem 1.15rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.workflow-dashboard__status-label {
    color: rgba(214, 223, 255, 0.64);
}

.workflow-dashboard__status strong {
    font-size: 1.08rem;
    line-height: 1.45;
}

.workflow-dashboard__metrics {
    grid-area: metrics;
    gap: 0.85rem;
    margin-top: 0.2rem;
}

.workflow-metric {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.workflow-metric strong {
    color: #ffffff;
    font-size: 0.98rem;
    line-height: 1.35;
}

.workflow-metric__label {
    color: rgba(214, 223, 255, 0.62);
}

.workflow-list {
    grid-area: list;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem 3rem;
    padding: 0.15rem 0 0.15rem;
    margin-top: 0.1rem;
}

.workflow-list::before,
.workflow-list::after {
    left: 50%;
    transform: translateX(-50%);
    top: 1rem;
    width: 5px;
}

.workflow-list::before {
    bottom: 1rem;
    background: rgba(143, 164, 255, 0.18);
}

.workflow-list::after {
    background: linear-gradient(180deg, #8d7cff 0%, #7ef7db 100%);
    box-shadow: 0 0 30px rgba(135, 124, 255, 0.3);
}

.workflow-step {
    min-height: 150px;
    padding: 1rem 1rem 1rem 1.08rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.workflow-step:nth-child(odd)::before,
.workflow-step:nth-child(even)::before {
    top: 50%;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    border: 0;
    background: #92f9dd;
    box-shadow: 0 0 0 6px rgba(146, 249, 221, 0.1);
}

.workflow-step:nth-child(odd)::before {
    left: auto;
    right: -1.95rem;
}

.workflow-step:nth-child(even)::before {
    left: -1.95rem;
    right: auto;
}

.workflow-step.is-complete::before,
.workflow-step.is-active::before {
    background: #92f9dd;
    box-shadow: 0 0 0 7px rgba(146, 249, 221, 0.14), 0 0 22px rgba(146, 249, 221, 0.42);
}

.workflow-step:hover {
    transform: translateY(-2px);
    border-color: rgba(179, 188, 255, 0.3);
}

.workflow-step.is-active {
    transform: translateY(-2px);
    border-color: rgba(155, 140, 255, 0.62);
    box-shadow: 0 20px 48px rgba(17, 29, 67, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(121, 109, 255, 0.18), rgba(255, 255, 255, 0.1));
}

.workflow-step.is-complete:not(.is-active) {
    border-color: rgba(146, 249, 221, 0.2);
}

.workflow-step:focus-visible {
    outline: none;
    border-color: rgba(141, 126, 255, 0.72);
    box-shadow: 0 0 0 4px rgba(141, 126, 255, 0.18), 0 20px 48px rgba(17, 29, 67, 0.28);
}

.workflow-step__index {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(224, 230, 255, 0.9);
}

.workflow-step__title {
    color: #ffffff;
}

.workflow-step__text {
    color: rgba(232, 237, 255, 0.74);
}

.pricing-card {
    display: flex;
    flex-direction: column;
}

.pricing-card__features {
    margin-bottom: 1.45rem;
}

.pricing-card .btn {
    margin-top: auto;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 0.85rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .brand-logo {
        height: 50px;
    }

    .nav-link {
        padding-inline: 0.42rem !important;
        font-size: 0.88rem;
    }

    .lang-link {
        min-width: 31px;
        font-size: 0.72rem;
    }

    .nav-cta {
        padding: 0.74rem 1rem;
        font-size: 0.86rem;
    }
}

@media (max-width: 991.98px) {
    .brand-logo {
        height: 48px;
    }

    .navbar-collapse {
        padding-top: 0.85rem;
    }

    .navbar-nav {
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .nav-link {
        padding-inline: 0 !important;
        white-space: normal;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
    }

    .workflow-copy {
        padding-right: 0;
    }

    .workflow-dashboard__status {
        max-width: none;
        padding-right: 1rem;
    }

    .workflow-dashboard::before {
        top: 1.2rem;
        right: 1.2rem;
    }

    .workflow-dashboard::after {
        top: 3.65rem;
        right: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .workflow-dashboard {
        padding-top: 4.7rem;
    }

    .workflow-dashboard__status {
        max-width: 100%;
    }

    .workflow-dashboard__metrics {
        grid-template-columns: 1fr;
    }

    .workflow-list {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding-left: 1.95rem;
    }

    .workflow-list::before,
    .workflow-list::after {
        left: 0.6rem;
        transform: none;
    }

    .workflow-step {
        min-height: 0;
        padding-left: 1rem;
    }

    .workflow-step:nth-child(odd)::before,
    .workflow-step:nth-child(even)::before {
        left: -1.6rem;
        right: auto;
        top: 1.2rem;
        transform: none;
    }
}

@media (max-width: 575.98px) {
    .brand-logo {
        height: 44px;
    }

    .workflow-dashboard::before,
    .workflow-dashboard::after {
        top: 1rem;
    }

    .workflow-dashboard::after {
        right: auto;
        left: 5.1rem;
    }
}

@media (min-width: 1200px) {
    .hero-stage {
        --hero-control-rail-width: 15rem;
        min-height: 672px;
    }

    .hero-stage__art {
        top: 2.25rem;
        left: 0.35rem;
        right: 0.35rem;
        width: calc(100% - 0.7rem);
        height: calc(100% - 13rem);
    }

    .hero-card--validation {
        right: calc(var(--hero-control-rail-width) + 2rem);
    }

    .hero-card--trace {
        bottom: 8.8rem;
    }

    .hero-badge--top,
    .hero-badge--bottom {
        width: var(--hero-control-rail-width);
        left: auto;
        right: 1.5rem;
    }

    .hero-badge {
        justify-content: center;
        padding-inline: 1rem;
        text-align: center;
    }

    .hero-badge--top {
        top: 1.25rem;
    }

    .hero-badge--bottom {
        bottom: 14.9rem;
    }

    .hero-console {
        left: 1.5rem;
        right: 1.5rem;
        width: auto;
        bottom: 1.4rem;
        padding: 1rem;
    }

    .hero-console__row,
    .hero-console__grid {
        margin-top: 0;
    }

    .hero-console__row {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        margin-bottom: 0.85rem;
    }

    .hero-console__status {
        justify-content: center;
        padding: 0.45rem 0.7rem;
        border-radius: 999px;
    }

    .hero-console__grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.7rem;
    }

    .hero-console__grid > div {
        min-height: 0;
        padding: 0.85rem 0.9rem 0.9rem;
    }

    .hero-console__grid strong {
        display: block;
        font-size: 1.02rem;
        line-height: 1.42;
    }
}

/* Fine fixes from visual review */

.site-navbar {
    position: fixed;
    inset: 0 0 auto 0;
    background: linear-gradient(180deg, rgba(251, 252, 255, 0.92), rgba(248, 250, 255, 0.72));
    backdrop-filter: blur(14px);
}

.site-navbar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 14px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(245, 247, 255, 0.58), rgba(245, 247, 255, 0));
}

.site-navbar.is-scrolled {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 42px rgba(26, 41, 87, 0.08);
}

.workflow-list {
    gap: 1rem 3rem;
}

.workflow-step:nth-child(odd)::before,
.workflow-step:nth-child(even)::before {
    width: 10px;
    height: 10px;
}

.workflow-step:nth-child(odd)::before {
    right: -1.88rem;
}

.workflow-step:nth-child(even)::before {
    left: -1.88rem;
}

@media (max-width: 767.98px) {
    .site-navbar::after {
        height: 10px;
    }

    .workflow-list {
        gap: 0.85rem;
    }

    .workflow-step:nth-child(odd)::before,
    .workflow-step:nth-child(even)::before {
        width: 12px;
        height: 12px;
    }

    .workflow-step:nth-child(odd)::before,
    .workflow-step:nth-child(even)::before {
        left: -1.6rem;
    }
}

/* Sequential workflow timeline alignment */

.workflow-list {
    gap: 1.05rem 3rem;
}

.workflow-list::before {
    top: var(--workflow-line-start, 74px);
    bottom: auto;
    height: calc(var(--workflow-line-end, 74px) - var(--workflow-line-start, 74px));
}

.workflow-list::after {
    top: var(--workflow-line-start, 74px);
    bottom: auto;
    height: var(--workflow-progress-length, 0px);
}

@media (min-width: 768px) {
    .workflow-step:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

    .workflow-step:nth-child(odd)::before,
    .workflow-step:nth-child(even)::before {
        top: calc(50% + var(--workflow-dot-shift, 0px));
        transform: translateY(-50%);
    }
}
