:root {
    --svy-bg: #030813;
    --svy-bg-2: #071426;
    --svy-panel: rgba(7, 18, 34, 0.9);
    --svy-panel-2: rgba(9, 24, 44, 0.94);
    --svy-line: rgba(149, 180, 225, 0.22);
    --svy-line-strong: rgba(255, 184, 76, 0.76);
    --svy-text: #f4f7ff;
    --svy-muted: #92a4c2;
    --svy-gold: #ffb84d;
    --svy-gold-2: #ffd98a;
    --svy-green: #6ee7a8;
}

html:has(body.svyazano-configurator-page),
body.svyazano-configurator-page {
    margin: 0 !important;
    padding: 0 !important;
    background: var(--svy-bg);
}

body.svyazano-configurator-page #wpadminbar,
body.svyazano-configurator-page .wp-site-blocks > header,
body.svyazano-configurator-page .wp-site-blocks > footer,
body.svyazano-configurator-page .wp-block-template-part,
body.svyazano-configurator-page .wp-block-post-title,
body.svyazano-configurator-page .wp-block-navigation {
    display: none !important;
}

.svy-app,
.svy-app * {
    box-sizing: border-box;
}

.svy-app {
    min-height: 100vh;
    width: 100%;
    color: var(--svy-text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 0;
}

.svy-shell {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 14px 16px;
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 184, 76, 0.18), transparent 22%),
        radial-gradient(circle at 12% 18%, rgba(64, 118, 190, 0.24), transparent 22%),
        linear-gradient(135deg, #030813 0%, #06182b 48%, #020712 100%);
}

.svy-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(125, 158, 210, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(125, 158, 210, 0.045) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.svy-header,
.svy-workspace,
.svy-bottom,
.svy-alert {
    position: relative;
    z-index: 1;
}

.svy-header {
    display: grid;
    grid-template-columns: 330px 1fr 170px;
    gap: 20px;
    align-items: center;
    min-height: 58px;
    padding: 0 4px 10px;
    border-bottom: 1px solid rgba(149, 180, 225, 0.18);
}

.svy-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.svy-brand__logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--svy-line-strong);
    box-shadow: 0 0 22px rgba(255, 184, 76, 0.25);
}

.svy-brand__title {
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
}

.svy-brand__text {
    margin-top: 4px;
    color: var(--svy-muted);
    font-size: 13px;
}

.svy-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(94px, 1fr));
    gap: 8px;
    align-items: center;
}

.svy-step {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    color: #d8e2f6;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.svy-step::after {
    content: "";
    position: absolute;
    left: calc(50% + 22px);
    right: calc(-50% + 22px);
    bottom: -10px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 184, 76, 0.76), rgba(149, 180, 225, 0.26));
}

.svy-step:last-child::after {
    display: none;
}

.svy-step span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(149, 180, 225, 0.38);
    background: rgba(11, 24, 44, 0.9);
}

.svy-step.is-current,
.svy-step.is-current span {
    color: var(--svy-gold-2);
    border-color: var(--svy-line-strong);
    text-shadow: 0 0 16px rgba(255, 184, 76, 0.44);
}

.svy-reset,
.svy-choice,
.svy-primary,
.svy-secondary,
.svy-option span {
    min-height: 36px;
    border-radius: 8px;
    font: inherit;
    font-size: 13px;
    font-weight: 550;
    cursor: pointer;
}

.svy-reset,
.svy-secondary {
    border: 1px solid rgba(149, 180, 225, 0.3);
    background: rgba(8, 20, 38, 0.76);
    color: #dfe8fb;
}

.svy-workspace {
    display: grid;
    grid-template-columns: minmax(270px, 290px) minmax(610px, 1fr) minmax(315px, 340px);
    gap: 12px;
    align-items: stretch;
    min-height: 847px;
    padding-top: 14px;
}

.svy-card,
.svy-spec,
.svy-process,
.svy-benefits,
.svy-slogan {
    border: 1px solid var(--svy-line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(12, 30, 53, 0.92), rgba(5, 13, 25, 0.94));
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.svy-card {
    padding: 16px;
}

.svy-input {
    position: relative;
    z-index: 20;
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 12px;
    align-content: start;
    justify-self: start;
    width: 336px;
    background: linear-gradient(180deg, rgba(12, 30, 53, 0.985), rgba(5, 13, 25, 0.99));
}

.svy-input .svy-card-icon {
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 650;
}

.svy-input > p {
    margin: 3px 0 13px;
    font-size: 13px;
    line-height: 1.35;
}

.svy-card h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.15;
}

.svy-card.svy-input h2 {
    font-size: 19px;
    font-weight: 600;
}

.svy-card p {
    margin: 6px 0 15px;
    color: var(--svy-muted);
}

.svy-card-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
    border: 1px solid var(--svy-line-strong);
    border-radius: 50%;
    color: var(--svy-gold-2);
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 0 22px rgba(255, 184, 76, 0.24);
}

.svy-products,
.svy-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: stretch;
}

.svy-products {
    grid-column: 1 / -1;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(149, 180, 225, 0.16);
}

.svy-choice,
.svy-option span {
    position: relative;
    z-index: 0;
    max-width: 100%;
    border: 1px solid rgba(149, 180, 225, 0.23);
    background: rgba(5, 15, 30, 0.72);
    color: #cbd7ee;
    padding: 8px 12px;
}

.svy-input .svy-choice {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 450;
    line-height: 1.15;
}

.svy-choice.is-selected,
.svy-option input:checked + span {
    z-index: 1;
    border-color: var(--svy-line-strong);
    background: linear-gradient(180deg, #ffe19a, #f0a43a);
    color: #111827;
    box-shadow: 0 0 22px rgba(255, 184, 76, 0.24);
}

.svy-input .svy-choice.is-selected,
.svy-input .svy-option input:checked + span {
    font-weight: 500;
    box-shadow: 0 0 16px rgba(255, 184, 76, 0.2);
}

.svy-questions {
    grid-column: 1 / -1;
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.svy-question {
    display: grid;
    gap: 7px;
    color: var(--svy-text);
    font-weight: 700;
}

.svy-input .svy-question {
    gap: 5px;
    padding-top: 8px;
    border-top: 1px solid rgba(149, 180, 225, 0.1);
    font-weight: 500;
}

.svy-input .svy-question > span {
    font-size: 14px;
    font-weight: 520;
    line-height: 1.25;
}

.svy-question small {
    color: var(--svy-muted);
    font-weight: 400;
}

.svy-input .svy-question small {
    font-size: 11px;
    line-height: 1.25;
}

.svy-question textarea,
.svy-question input[type="text"] {
    width: 100%;
    min-height: 44px;
    padding: 11px;
    border: 1px solid rgba(149, 180, 225, 0.25);
    border-radius: 8px;
    outline: none;
    background: rgba(1, 8, 18, 0.68);
    color: var(--svy-text);
    font: inherit;
    resize: vertical;
}

.svy-input .svy-question textarea,
.svy-input .svy-question input[type="text"] {
    min-height: 72px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
}

.svy-range {
    display: grid;
    grid-template-columns: 1fr 56px;
    gap: 10px;
    align-items: center;
}

.svy-range input[type="range"] {
    width: 100%;
    height: 4px;
    margin: 0;
    appearance: none;
    border: 0;
    border-radius: 999px;
    outline: none;
    background: linear-gradient(90deg, #93642d 0%, #f2ad48 52%, #ffe09a 100%);
    accent-color: var(--svy-gold);
}

.svy-range input[type="range"]::-webkit-slider-thumb {
    width: 17px;
    height: 17px;
    appearance: none;
    border: 1px solid #ffe2a0;
    border-radius: 50%;
    background: #d58c2d;
    box-shadow: 0 0 0 4px rgba(255, 184, 76, 0.12), 0 0 12px rgba(255, 184, 76, 0.34);
}

.svy-range input[type="range"]::-moz-range-thumb {
    width: 17px;
    height: 17px;
    border: 1px solid #ffe2a0;
    border-radius: 50%;
    background: #d58c2d;
    box-shadow: 0 0 0 4px rgba(255, 184, 76, 0.12), 0 0 12px rgba(255, 184, 76, 0.34);
}

.svy-range output {
    display: grid;
    place-items: center;
    min-height: 40px;
    border: 1px solid rgba(149, 180, 225, 0.25);
    border-radius: 8px;
    background: rgba(1, 8, 18, 0.68);
}

.svy-option {
    position: relative;
}

.svy-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.svy-input .svy-option span {
    min-height: 27px;
    padding: 5px 8px;
    font-size: 12px;
    font-weight: 430;
    line-height: 1.15;
}

.svy-scene {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-rows: minmax(560px, 1fr) auto;
    min-height: 100%;
    height: auto;
    overflow: visible;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(3, 12, 24, 0.2), rgba(3, 10, 20, 0.58));
}

.svy-network-stage {
    position: relative;
    min-height: 560px;
    overflow: visible;
    background:
        linear-gradient(90deg, rgba(3, 8, 19, 0.18), transparent 13%, transparent 87%, rgba(3, 8, 19, 0.28)),
        linear-gradient(180deg, rgba(3, 12, 24, 0.2), rgba(3, 10, 20, 0.58));
}

.svy-network-art {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 7%;
    display: block;
    width: auto;
    height: 86%;
    max-width: none;
    pointer-events: none;
    transform: translateX(-50%);
    user-select: none;
    transition: opacity 180ms ease;
}

.svy-scene:not(.is-art-ready) .svy-network-art,
.svy-scene:not(.is-art-ready) .svy-scene-label,
.svy-scene:not(.is-art-ready) .svy-rope-map,
.svy-scene:not(.is-art-ready) .svy-module-rail {
    opacity: 0;
}

.svy-scene-label,
.svy-rope-map,
.svy-module-rail {
    transition: opacity 180ms ease;
}

.svy-network-stage::before {
    content: "";
    position: absolute;
    z-index: 3;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(3, 8, 19, 0.22), transparent 14%, transparent 72%, rgba(3, 8, 19, 0.76)),
        radial-gradient(ellipse at 10% 43%, rgba(255, 176, 63, 0.1), transparent 25%),
        linear-gradient(90deg, transparent 0 87%, rgba(3, 8, 19, 0.42));
}

.svy-network-stage::after {
    content: "";
    position: absolute;
    z-index: 4;
    inset: 0;
    pointer-events: none;
    border: 1px solid rgba(136, 173, 224, 0.08);
    border-radius: inherit;
    box-shadow: inset 0 0 70px rgba(1, 5, 12, 0.34);
}

.svy-scene-label {
    position: absolute;
    z-index: 14;
    color: #e3ecfb;
    text-align: center;
    font-size: 13px;
    font-weight: 560;
    line-height: 1.35;
    text-shadow: 0 2px 12px rgba(1, 5, 12, 0.9);
}

.svy-scene-label--left {
    left: 8%;
    top: 18%;
}

.svy-scene-label--top {
    left: 50%;
    top: 6%;
    transform: translateX(-50%);
}

.svy-rope-map {
    position: absolute;
    z-index: 10;
    inset: 0 -2% 0 -3%;
    width: 105%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

.svy-rope-map {
    display: none;
}

.svy-rope-map path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.svy-rope {
    opacity: 1;
    filter: none;
}

.svy-rope-light {
    stroke: rgba(255, 207, 125, 0.72);
    stroke-width: 2.4;
    opacity: 0;
    filter: drop-shadow(0 0 5px rgba(255, 166, 48, 0.56));
    mix-blend-mode: screen;
    transition: opacity 320ms ease;
}

.svy-rope.is-active .svy-rope-light {
    opacity: 0.16;
}

.svy-rope-under,
.svy-rope-body,
.svy-rope-twist {
    display: none;
}

.svy-rope-under {
    stroke: rgba(1, 6, 13, 0.9);
    stroke-width: 31;
}

.svy-rope-body {
    stroke-width: 20;
}

.svy-rope-body--gold {
    stroke: url(#svy-rope-gold);
}

.svy-rope-body--steel {
    stroke: url(#svy-rope-steel);
}

.svy-rope-twist {
    stroke-width: 17;
    stroke-dasharray: 8 12;
    stroke-linecap: butt;
}

.svy-rope-twist--dark {
    stroke: rgba(4, 10, 18, 0.58);
    stroke-dashoffset: 0;
}

.svy-rope-twist--light {
    stroke: rgba(255, 225, 162, 0.46);
    stroke-dashoffset: 10;
}

.svy-rope-body--steel + .svy-rope-twist--dark + .svy-rope-twist--light,
.svy-rope--analysis .svy-rope-twist--light,
.svy-rope--ux .svy-rope-twist--light {
    stroke: rgba(194, 213, 238, 0.48);
}

.svy-rope-wave {
    display: none;
    animation: none;
}

.svy-rope-wave--out {
    animation: none;
}

.svy-rope--out.is-active .svy-rope-wave--out {
    animation: none;
}

.svy-brain {
    display: none;
}

.svy-brain::before {
    display: none;
}

.svy-brain-img {
    display: none;
}

.svy-brain-zone {
    position: absolute;
    z-index: 2;
    width: 20%;
    height: 20%;
    border-radius: 50%;
    opacity: 0;
    background: radial-gradient(circle, rgba(255, 240, 190, 0.82) 0 8%, rgba(255, 184, 76, 0.28) 28%, transparent 68%);
    filter: blur(0.4px) drop-shadow(0 0 7px rgba(255, 184, 76, 0.44));
    mix-blend-mode: screen;
    pointer-events: none;
}

.svy-brain-zone--site {
    left: 29%;
    top: 38%;
}

.svy-brain-zone--service {
    left: 60%;
    top: 36%;
}

.svy-brain-zone--bot {
    left: 46%;
    top: 57%;
}

.svy-brain-zone--system {
    left: 50%;
    top: 24%;
}

.svy-product-website .svy-brain-zone--site,
.svy-product-web_service .svy-brain-zone--service,
.svy-product-telegram_bot .svy-brain-zone--bot,
.svy-product-personal_account .svy-brain-zone--service,
.svy-product-internal_system .svy-brain-zone--system,
.svy-product-automation .svy-brain-zone--bot {
    opacity: 0.34;
    animation: svyBrainActivate 820ms ease-out both;
}

.svy-module-rail {
    position: absolute;
    z-index: 12;
    right: -12px;
    top: 0;
    bottom: 0;
    display: block;
    width: 182px;
    pointer-events: none;
}

.svy-rail-item {
    position: absolute;
    right: 0;
    width: 100%;
    min-height: 40px;
    padding: 5px 10px 5px 13px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #e3ebfb;
    transform: translateY(-50%);
    pointer-events: auto;
}

.svy-rail-item:nth-child(1) { top: 23.6%; }
.svy-rail-item:nth-child(2) { top: 29.8%; }
.svy-rail-item:nth-child(3) { top: 36.2%; }
.svy-rail-item:nth-child(4) { top: 42.5%; }
.svy-rail-item:nth-child(5) { top: 48.8%; }
.svy-rail-item:nth-child(6) { top: 55.3%; }
.svy-rail-item:nth-child(7) { top: 61.8%; }

.svy-rail-item.is-hot {
    box-shadow: none;
    animation: none;
}

.svy-rail-item::before {
    display: none;
}

.svy-rail-item::after {
    display: none;
}

.svy-rail-item.is-hot::before {
    background:
        linear-gradient(180deg, transparent 0 24%, #ffd98b 25% 34%, transparent 35% 64%, #ffd98b 65% 74%, transparent 75%),
        #0a1728;
    box-shadow: inset -2px 0 0 rgba(255, 222, 154, 0.52), inset 0 0 0 2px rgba(1, 6, 13, 0.92), 0 0 8px rgba(255, 184, 76, 0.24);
}

.svy-estimate {
    z-index: 20;
}

.svy-rail-item span,
.svy-module span,
.svy-module em {
    display: block;
    color: var(--svy-muted);
    font-size: 10px;
    font-style: normal;
}

.svy-rail-item span,
.svy-rail-item b {
    opacity: 0;
}

.svy-rail-item b {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    font-weight: 560;
}

.svy-spec {
    position: relative;
    z-index: 13;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr) 138px;
    gap: 14px;
    align-items: center;
    width: auto;
    min-height: 132px;
    margin-left: 34px;
    padding: 14px;
    background: linear-gradient(180deg, rgba(11, 29, 51, 0.97), rgba(5, 15, 28, 0.98));
}

.svy-spec-head {
    display: grid;
    justify-items: start;
    gap: 8px;
    align-content: center;
    margin: 0;
}

.svy-spec-head strong {
    font-size: 14px;
    font-weight: 650;
}

.svy-spec-head span {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(60, 206, 132, 0.13);
    color: var(--svy-green);
    font-size: 11px;
}

.svy-spec ul,
.svy-benefits ul {
    display: grid;
    gap: 7px;
    margin: 0 0 13px;
    padding: 0;
    list-style: none;
}

.svy-spec ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    margin: 0;
}

.svy-spec li,
.svy-benefits li {
    position: relative;
    padding-left: 22px;
    color: #d8e2f6;
    font-size: 13px;
}

.svy-spec li {
    opacity: 0.68;
    font-size: 12px;
    line-height: 1.32;
    animation: none;
}

.svy-spec li:nth-child(2) { animation-delay: 0.22s; }
.svy-spec li:nth-child(3) { animation-delay: 0.44s; }
.svy-spec li:nth-child(4) { animation-delay: 0.66s; }
.svy-spec li:nth-child(5) { animation-delay: 0.88s; }
.svy-spec li:nth-child(6) { animation-delay: 1.1s; }

.svy-spec .svy-secondary {
    width: 100%;
    min-height: 40px;
    margin: 0;
}

.svy-spec li::before,
.svy-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--svy-green);
}

.svy-estimate {
    position: relative;
    display: grid;
    grid-template-rows: auto auto auto auto auto;
    align-content: start;
    min-height: clamp(520px, calc(100vh - 154px), 640px);
    height: 100%;
}

.svy-estimate > .svy-card-icon {
    position: absolute;
    left: 16px;
    top: 16px;
    width: 42px;
    height: 42px;
    margin: 0;
    font-size: 21px;
    font-weight: 650;
}

.svy-estimate-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    min-height: 48px;
    margin-bottom: 12px;
    padding-left: 58px;
}

.svy-estimate-head h2 {
    font-size: 20px;
    font-weight: 650;
}

.svy-estimate-head p {
    margin-bottom: 0;
    font-size: 13px;
}

.svy-estimate-head span {
    height: 42px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(32, 68, 112, 0.42);
    color: #cfe0ff;
    font-size: 12px;
}

.svy-modules {
    display: grid;
    gap: 8px;
    overflow: visible;
    padding-right: 0;
}

.svy-module {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px 104px;
    gap: 4px 12px;
    min-height: 50px;
    padding: 8px 10px;
    border: 1px solid rgba(149, 180, 225, 0.18);
    border-radius: 8px;
    background: rgba(3, 11, 23, 0.68);
}

.svy-module span {
    grid-column: 1;
    grid-row: 1;
}

.svy-module strong {
    grid-column: 1;
    grid-row: 2;
    font-size: 13px;
    font-weight: 650;
}

.svy-module em {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    text-align: right;
}

.svy-module b {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    color: #f8d28b;
    font-size: 13px;
    font-weight: 650;
    text-align: right;
    white-space: nowrap;
}

.svy-total {
    display: grid;
    gap: 5px;
    margin-top: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 184, 76, 0.28);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(24, 47, 77, 0.86), rgba(7, 18, 34, 0.9));
}

.svy-total span,
.svy-total small {
    color: var(--svy-muted);
}

.svy-total strong {
    color: var(--svy-gold-2);
    font-size: 23px;
    line-height: 1.1;
}

.svy-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 10px;
}

.svy-actions > button {
    min-width: 0;
    min-height: 44px;
    padding: 8px 10px;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: anywhere;
}

.svy-primary {
    border: 0;
    background: linear-gradient(180deg, #ffe09a, #efa33a);
    color: #111827;
    font-weight: 650;
    box-shadow: 0 0 26px rgba(255, 184, 76, 0.34);
}

.svy-primary:disabled,
.svy-secondary:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.svy-success,
.svy-alert {
    padding: 11px 12px;
    border-radius: 8px;
}

.svy-success {
    margin-top: 10px;
    color: var(--svy-green);
    background: rgba(60, 206, 132, 0.12);
}

.svy-alert {
    margin-top: 12px;
    color: #ffd1d1;
    background: rgba(255, 89, 89, 0.14);
    border: 1px solid rgba(255, 127, 127, 0.28);
}

.svy-bottom {
    display: grid;
    grid-template-columns: 1.75fr 1fr 0.66fr;
    gap: 12px;
    margin-top: 14px;
}

.svy-process,
.svy-benefits,
.svy-slogan {
    padding: 15px 16px;
    border-color: rgba(131, 167, 216, 0.24);
    background: linear-gradient(180deg, rgba(8, 23, 42, 0.94), rgba(4, 13, 25, 0.97));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.svy-bottom h3 {
    margin: 0 0 13px;
    font-size: 16px;
}

.svy-process > div {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.svy-process > div::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 14px;
    right: 14px;
    top: 14px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 184, 76, 0.5), rgba(138, 171, 216, 0.45), rgba(255, 184, 76, 0.5));
}

.svy-process article {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 5px;
    min-width: 0;
}

.svy-process b {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--svy-line-strong);
    border-radius: 50%;
    color: var(--svy-gold-2);
    background: #071525;
}

.svy-process strong {
    font-size: 13px;
}

.svy-process span,
.svy-slogan p {
    margin: 0;
    color: var(--svy-muted);
    font-size: 12px;
    line-height: 1.45;
}

.svy-process small {
    color: #7f91ae;
    font-size: 10px;
    line-height: 1.35;
}

.svy-slogan {
    display: grid;
    align-content: center;
    background:
        radial-gradient(circle at bottom right, rgba(255, 184, 76, 0.18), transparent 55%),
        linear-gradient(180deg, rgba(12, 30, 53, 0.92), rgba(5, 13, 25, 0.94));
}

.svy-benefits {
    border-color: rgba(105, 178, 151, 0.24);
}

.svy-slogan {
    border-color: rgba(255, 184, 76, 0.34);
}

.svy-slogan p {
    color: #eef4ff;
    font-size: 14px;
}

.svy-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 100vh;
    color: var(--svy-text);
    background: var(--svy-bg);
}

.svy-loading__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--svy-gold);
    box-shadow: 0 0 18px var(--svy-gold);
}

@keyframes svyRopeSignal {
    0%, 10% { opacity: 0; stroke-dashoffset: 500; }
    20% { opacity: 0.92; }
    68% { opacity: 0.78; }
    84%, 100% { opacity: 0; stroke-dashoffset: -560; }
}

@keyframes svyBrainActivate {
    0% { transform: scale(0.84); opacity: 0; }
    58% { transform: scale(1); opacity: 0.52; }
    100% { transform: scale(0.96); opacity: 0.34; }
}

@keyframes svyCardActivate {
    0% { box-shadow: 0 0 0 rgba(255, 184, 76, 0); }
    52% { box-shadow: 0 0 18px rgba(255, 184, 76, 0.24); }
    100% { box-shadow: 0 0 12px rgba(255, 184, 76, 0.12); }
}

@keyframes svySpecStep {
    0%, 30%, 100% { opacity: 0.62; color: #cbd7ea; }
    44%, 62% { opacity: 1; color: #f4f7ff; }
}

@media (prefers-reduced-motion: reduce) {
    .svy-rope-wave,
    .svy-brain-zone,
    .svy-rail-item.is-hot {
        animation: none;
    }

    .svy-spec li {
        animation: none;
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    .svy-header,
    .svy-workspace,
    .svy-bottom {
        grid-template-columns: 1fr;
    }

    .svy-steps {
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .svy-scene,
    .svy-estimate {
        min-height: 600px;
    }

    .svy-workspace {
        min-height: 0;
    }

    .svy-input {
        justify-self: stretch;
        width: auto;
    }

    .svy-spec {
        margin-left: 0;
    }

    .svy-scene {
        grid-template-rows: minmax(600px, 1fr) auto;
    }

    .svy-module-rail {
        right: 14px;
    }
}

@media (max-width: 1380px) and (min-width: 1201px) {
    .svy-workspace {
        grid-template-columns: 286px minmax(610px, 1fr) 316px;
    }

    .svy-shell {
        padding: 12px 14px;
    }

    .svy-input {
        width: 286px;
    }

    .svy-header {
        min-height: 54px;
    }

    .svy-scene-label--top {
        top: 6%;
        left: 50%;
        font-size: 13px;
    }

    .svy-scene-label--left {
        left: 8%;
        top: 18%;
        font-size: 13px;
    }

    .svy-module-rail {
        right: -12px;
        width: 107px;
        top: 0;
        bottom: 0;
        opacity: 1;
    }

    .svy-rail-item {
        min-height: 42px;
        padding: 6px 10px 6px 13px;
        border: 1px solid rgba(149, 180, 225, 0.35);
        border-radius: 8px;
        background: linear-gradient(180deg, #0b1c31, #050f1d);
    }

    .svy-rail-item.is-hot {
        border-color: rgba(149, 180, 225, 0.35);
        box-shadow: none;
    }

    .svy-rail-item:nth-child(-n + 2) {
        border-color: var(--svy-line-strong);
    }

    .svy-spec {
        left: 0;
        right: 0;
        bottom: 0;
        width: auto;
        margin-left: 0;
    }

    .svy-module {
        min-height: 46px;
        padding: 7px 10px;
    }

    .svy-module:nth-child(n + 7) {
        display: none;
    }

    .svy-total {
        padding: 12px;
    }

    .svy-total strong {
        font-size: 21px;
    }

    .svy-bottom {
        margin-top: 12px;
    }

    .svy-process,
    .svy-benefits,
    .svy-slogan {
        padding: 13px;
    }
}

@media (max-width: 700px) {
    .svy-shell {
        padding: 12px;
    }

    .svy-brand__title {
        font-size: 24px;
    }

    .svy-steps {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 2px;
        overflow: visible;
        padding-bottom: 0;
    }

    .svy-step {
        gap: 3px;
        font-size: 10px;
        min-width: 0;
        white-space: normal;
    }

    .svy-step span {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
    }

    .svy-step::after {
        display: none;
    }

    .svy-workspace {
        gap: 12px;
    }

    .svy-card {
        padding: 14px;
    }

    .svy-scene {
        grid-template-rows: 720px auto;
        min-height: 920px;
    }

    .svy-network-art {
        left: 60%;
        top: 34px;
        height: 44%;
    }

    .svy-brain {
        left: 18%;
        top: 19%;
        width: 48%;
    }

    .svy-module-rail {
        left: 12px;
        right: 12px;
        top: 43%;
        bottom: auto;
        display: grid;
        gap: 6px;
        width: auto;
        opacity: 1;
    }

    .svy-module-rail .svy-rail-item {
        position: relative;
        top: auto;
        right: auto;
        width: auto;
        transform: none;
        border: 1px solid rgba(149, 180, 225, 0.35);
        border-radius: 8px;
        background: linear-gradient(180deg, #0b1c31, #050f1d);
    }

    .svy-module-rail .svy-rail-item:nth-child(-n + 2) {
        border-color: var(--svy-line-strong);
    }

    .svy-spec {
        left: 12px;
        right: 12px;
        grid-template-columns: 1fr;
        gap: 12px;
        width: auto;
        margin-left: 0;
    }

    .svy-spec ul {
        grid-template-columns: 1fr;
    }

    .svy-process > div,
    .svy-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) and (min-width: 701px) {
    .svy-workspace {
        grid-template-columns: 1fr;
    }

    .svy-scene {
        min-height: 760px;
    }
}
