* {
    box-sizing: border-box;
}

html {
    color-scheme: dark;
    scroll-behavior: smooth;
}

body.home-page {
    min-height: 100vh;
    margin: 0;
    overflow-x: clip;
    color: var(--dv-text-primary);
    background: #08080c;
    font-family: var(--dv-font-family);
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}

.home-ambient {
    position: fixed;
    z-index: -2;
    inset: 0;
    overflow: hidden;
    background:
            radial-gradient(circle at 18% 8%, rgba(124, 58, 237, 0.18), transparent 30%),
            radial-gradient(circle at 88% 56%, rgba(37, 99, 235, 0.1), transparent 31%),
            #08080c;
}

.home-ambient::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.09;
    background-image:
            linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

.home-ambient span {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c4b5fd;
    box-shadow: 0 0 18px rgba(139, 92, 246, 0.8);
    animation: home-float 9s ease-in-out infinite;
}

.home-ambient span:nth-child(1) { top: 19%; left: 8%; }
.home-ambient span:nth-child(2) { top: 66%; left: 91%; animation-delay: -3s; }
.home-ambient span:nth-child(3) { top: 38%; left: 55%; animation-delay: -6s; }

@keyframes home-float {
    50% { transform: translateY(-16px); opacity: 0.45; }
}

.home-header,
.home-shell,
.home-footer {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}

.home-header {
    position: sticky;
    z-index: 50;
    top: 12px;
    min-height: 66px;
    margin-top: 12px;
    padding: 9px 10px 9px 14px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 19px;
    background: rgba(10, 10, 15, 0.78);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.home-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: inherit;
    text-decoration: none;
}

.home-brand__mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(155, 108, 255, 0.32);
    border-radius: 13px;
    color: #ddd6fe;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.27), rgba(91, 33, 182, 0.08));
    box-shadow: 0 12px 32px rgba(91, 33, 182, 0.24);
    font-weight: 950;
}

.home-brand__mark img {
    width: 36px;
    height: 36px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(71, 186, 255, 0.22));
}

.home-brand__name {
    font-size: 19px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.home-brand__name small {
    margin-left: 5px;
    color: #a78bfa;
    font-size: 9px;
    letter-spacing: 1.7px;
}

.home-header__actions,
.home-hero__actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.home-header__actions {
    margin-left: auto;
}

.home-button {
    min-height: 44px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 13px;
    color: #fff;
    background: none;
    font: inherit;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.home-button:active {
    transform: translateY(0) scale(0.98);
}

.home-button:focus-visible,
.home-guide-card:focus-visible,
.home-dialog button:focus-visible,
.home-faq summary:focus-visible {
    outline: 2px solid #a78bfa;
    outline-offset: 3px;
}

.home-button--primary {
    background: linear-gradient(135deg, #925cff, #6d5cff);
    box-shadow: 0 12px 34px rgba(113, 67, 255, 0.28);
}

.home-button--primary:hover {
    box-shadow: 0 17px 44px rgba(113, 67, 255, 0.4);
}

.home-button--quiet {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.035);
}

.home-button--quiet:hover {
    border-color: rgba(155, 108, 255, 0.36);
    background: rgba(155, 108, 255, 0.08);
}

.home-button--large {
    min-height: 54px;
    padding-inline: 23px;
    border-radius: 15px;
    font-size: 13px;
}

.home-hero {
    min-height: 680px;
    padding: 70px 0 65px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.85fr);
    align-items: center;
    gap: 72px;
}

.home-badge {
    width: fit-content;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(155, 108, 255, 0.28);
    border-radius: 999px;
    color: #ddd6fe;
    background: rgba(139, 92, 246, 0.1);
    font-size: 11px;
    font-weight: 800;
}

.home-badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3ee98a;
    box-shadow: 0 0 0 5px rgba(62, 233, 138, 0.08), 0 0 15px rgba(62, 233, 138, 0.5);
}

.home-hero h1 {
    max-width: 720px;
    margin: 23px 0 0;
    font-size: clamp(46px, 5.4vw, 72px);
    line-height: 0.98;
    letter-spacing: -3.8px;
}

.home-hero h1 > span {
    color: transparent;
    background: linear-gradient(100deg, #c4b5fd 5%, #8b5cf6 48%, #67e8f9 100%);
    background-clip: text;
    -webkit-background-clip: text;
    filter: drop-shadow(0 12px 30px rgba(124, 58, 237, 0.2));
}

.home-hero__copy > p {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--dv-text-secondary);
    font-size: 17px;
    line-height: 1.7;
}

.home-hero__actions {
    margin-top: 31px;
    flex-wrap: wrap;
}

.home-proof {
    margin: 27px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    list-style: none;
}

.home-proof li {
    color: var(--dv-text-secondary);
    font-size: 12px;
    font-weight: 650;
}

.home-proof span {
    margin-right: 5px;
    color: #3ee98a;
}

.home-product {
    position: relative;
    min-height: 490px;
    display: grid;
    place-items: center;
}

.home-product__glow {
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.24);
    filter: blur(90px);
}

.home-product__card {
    position: relative;
    z-index: 2;
    width: min(410px, 100%);
    padding: 27px;
    border: 1px solid rgba(155, 108, 255, 0.3);
    border-radius: 26px;
    background:
            radial-gradient(circle at 18% 0%, rgba(103, 232, 249, 0.09), transparent 36%),
            radial-gradient(circle at 85% 12%, rgba(139, 92, 246, 0.19), transparent 40%),
            linear-gradient(165deg, rgba(30, 29, 39, 0.97), rgba(14, 14, 20, 0.97));
    box-shadow: 0 40px 110px rgba(0, 0, 0, 0.46), inset 0 1px rgba(255, 255, 255, 0.06);
    transition: transform 350ms cubic-bezier(.2, .8, .2, 1), box-shadow 350ms ease;
}

.home-product__card:hover {
    transform: translateY(-6px) rotate(0.4deg);
    box-shadow: 0 48px 130px rgba(0, 0, 0, 0.52), 0 22px 70px rgba(91, 33, 182, 0.18);
}

.home-product__top {
    display: flex;
    justify-content: space-between;
}

.home-product__top > div:first-child {
    display: grid;
    gap: 6px;
}

.home-product__top span,
.home-product small {
    color: var(--dv-text-muted);
    font-size: 9px;
    font-style: normal;
    letter-spacing: 0.8px;
}

.home-product__top strong {
    font-size: 17px;
}

.home-product__secure {
    height: fit-content;
    padding: 7px 9px;
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(62, 233, 138, 0.12);
    border-radius: 999px;
    color: #6ee7a8;
    background: rgba(62, 233, 138, 0.055);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.home-product__secure i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3ee98a;
    box-shadow: 0 0 0 4px rgba(62, 233, 138, 0.08), 0 0 15px rgba(62, 233, 138, 0.55);
}

.home-product__locations {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.home-product__locations > div {
    display: flex;
    align-items: center;
}

.home-product__locations span {
    width: 31px;
    height: 31px;
    margin-left: -7px;
    display: grid;
    place-items: center;
    border: 2px solid #1a1922;
    border-radius: 50%;
    background: #24232d;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
    font-size: 16px;
}

.home-product__locations span:first-child {
    margin-left: 0;
}

.home-product__locations small {
    color: #a7f3d0;
    font-weight: 750;
}

.home-product__shield {
    position: relative;
    width: 98px;
    height: 98px;
    margin: 23px auto 25px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(155, 108, 255, 0.38);
    border-radius: 31px;
    color: #ddd6fe;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.34), rgba(91, 33, 182, 0.09));
    box-shadow: 0 24px 60px rgba(91, 33, 182, 0.31);
    font-size: 38px;
    font-weight: 950;
}

.home-product__shield::before,
.home-product__shield::after {
    content: "";
    position: absolute;
    inset: -11px;
    border: 1px solid rgba(155, 108, 255, 0.13);
    border-radius: 38px;
}

.home-product__shield::after {
    inset: -22px;
    border-color: rgba(103, 232, 249, 0.07);
    border-radius: 45px;
}

.home-product__shield span,
.home-product__shield img {
    position: relative;
    z-index: 1;
}

.home-product__shield img {
    width: 82px;
    height: 82px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(93, 84, 255, 0.32));
}

.home-product__route {
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.025);
}

.home-product__route-icon {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: rgba(139, 92, 246, 0.11);
    font-size: 18px;
}

.home-product__route > div {
    display: grid;
    gap: 4px;
}

.home-product__route strong {
    font-size: 12px;
}

.home-product__route em {
    margin-left: auto;
    color: #3ee98a;
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
}

.home-product__line {
    height: 4px;
    margin: 20px 0;
    overflow: hidden;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.06);
}

.home-product__line span {
    width: 82%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: linear-gradient(90deg, #8b5cf6, #3ee98a);
    animation: home-line 2.8s ease-in-out infinite;
}

@keyframes home-line {
    50% { width: 95%; filter: brightness(1.25); }
}

.home-product__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.home-product__facts div {
    padding: 11px;
    display: grid;
    gap: 5px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
}

.home-product__facts strong {
    font-size: 12px;
}

.home-product__toast {
    position: absolute;
    right: -34px;
    top: 92px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(19, 19, 25, 0.94);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.36);
}

.home-product__toast > span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #052e16;
    background: #3ee98a;
    font-weight: 950;
}

.home-product__toast div {
    display: grid;
    gap: 3px;
}

.home-product__toast strong {
    font-size: 10px;
}

.home-explorer {
    padding: 74px 0;
}

.home-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 35px;
}

.home-section-heading > div > span,
.home-info__lead > span,
.home-cta > div > span {
    color: #a78bfa;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.home-section-heading h2,
.home-info h2,
.home-cta h2 {
    margin: 9px 0 0;
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: -2px;
}

.home-section-heading > p {
    max-width: 350px;
    margin: 0;
    color: var(--dv-text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

.home-guide-grid {
    margin-top: 31px;
    display: grid;
    grid-template-columns: 1.08fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(148px, auto));
    gap: 12px;
}

.home-guide-card {
    --home-card-accent: 139, 92, 246;
    position: relative;
    min-width: 0;
    min-height: 148px;
    padding: 21px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-content: start;
    gap: 7px 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    color: #fff;
    background:
            radial-gradient(circle at 92% 0%, rgba(var(--home-card-accent), 0.13), transparent 42%),
            rgba(18, 18, 24, 0.82);
    font: inherit;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.home-guide-card:nth-child(2) { --home-card-accent: 62, 233, 138; }
.home-guide-card:nth-child(3) { --home-card-accent: 56, 189, 248; }
.home-guide-card:nth-child(4) { --home-card-accent: 251, 146, 60; }

.home-guide-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -80px;
    bottom: -90px;
    border-radius: 50%;
    background: #8b5cf6;
    opacity: 0;
    filter: blur(35px);
    transition: opacity 220ms ease;
}

.home-guide-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--home-card-accent), 0.38);
    background-color: rgba(var(--home-card-accent), 0.055);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
}

.home-guide-card:hover::after {
    opacity: 0.22;
}

.home-guide-card:active {
    transform: translateY(-1px) scale(0.99);
}

.home-guide-card--start {
    grid-row: 1 / 3;
    background:
            radial-gradient(circle at 50% 105%, rgba(139, 92, 246, 0.25), transparent 48%),
            linear-gradient(145deg, rgba(139, 92, 246, 0.13), rgba(18, 18, 24, 0.88));
}

.home-guide-card--pricing {
    grid-column: 2 / 4;
}

.home-guide-card__index {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #ddd6fe;
    background: rgba(139, 92, 246, 0.14);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.6px;
}

.home-guide-card__tag {
    justify-self: end;
    align-self: center;
    color: var(--dv-text-muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.home-guide-card__tag--live {
    color: #3ee98a;
}

.home-guide-card__tag--live i {
    width: 6px;
    height: 6px;
    display: inline-block;
    margin-right: 5px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 11px rgba(62, 233, 138, 0.7);
}

.home-guide-card > strong,
.home-guide-card > p,
.home-guide-card__action {
    grid-column: 1 / -1;
}

.home-guide-card > strong {
    margin-top: 10px;
    font-size: clamp(19px, 2.2vw, 27px);
    letter-spacing: -0.7px;
}

.home-guide-card > p {
    max-width: 440px;
    margin: 0;
    color: var(--dv-text-secondary);
    font-size: 11px;
    line-height: 1.55;
}

.home-guide-card__action {
    align-self: end;
    margin-top: auto;
    padding-top: 18px;
    color: #c4b5fd;
    font-size: 11px;
    font-weight: 850;
}

.home-guide-card__action i {
    display: inline-block;
    margin-left: 6px;
    font-style: normal;
    transition: transform 180ms ease;
}

.home-guide-card:hover .home-guide-card__action i {
    transform: translateX(5px);
}

.home-dialog {
    width: min(1000px, calc(100% - 34px));
    max-width: none;
    max-height: min(88dvh, 820px);
    margin: auto;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(155, 108, 255, 0.3);
    border-radius: 25px;
    color: var(--dv-text-primary);
    background: #101016;
    box-shadow: 0 45px 140px rgba(0, 0, 0, 0.68), 0 0 80px rgba(91, 33, 182, 0.12);
}

.home-dialog[open] {
    animation: home-dialog-in 240ms ease both;
}

.home-dialog::backdrop {
    background: rgba(3, 3, 8, 0.82);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
}

@keyframes home-dialog-in {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to { opacity: 1; transform: none; }
}

.home-dialog__surface {
    max-height: inherit;
    display: flex;
    flex-direction: column;
    background:
            radial-gradient(circle at 90% 0%, rgba(139, 92, 246, 0.13), transparent 36%),
            #101016;
}

.home-dialog__header {
    flex: 0 0 auto;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-dialog__header > div {
    display: grid;
    gap: 5px;
}

.home-dialog__header span {
    color: #a78bfa;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.home-dialog__header h3 {
    margin: 0;
    font-size: clamp(23px, 3.4vw, 34px);
    letter-spacing: -1.2px;
}

.home-dialog__header button {
    width: 45px;
    height: 45px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    font: inherit;
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
}

.home-dialog__header button:hover {
    border-color: rgba(155, 108, 255, 0.38);
    background: rgba(139, 92, 246, 0.1);
}

.home-dialog__body {
    min-height: 0;
    padding: 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.home-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.home-steps article {
    min-height: 225px;
    padding: 21px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.home-steps article:hover,
.home-server:hover,
.home-device-grid article:hover,
.home-price:hover {
    transform: translateY(-4px);
    border-color: rgba(155, 108, 255, 0.32);
    background-color: rgba(139, 92, 246, 0.05);
}

.home-steps article > span {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #c4b5fd;
    background: rgba(139, 92, 246, 0.13);
    font-size: 10px;
    font-weight: 900;
}

.home-steps article div {
    display: grid;
    gap: 9px;
}

.home-steps strong {
    font-size: 17px;
}

.home-steps p,
.home-info p,
.home-faq p {
    margin: 0;
    color: var(--dv-text-secondary);
    font-size: 12px;
    line-height: 1.65;
}

.home-panel-action {
    width: fit-content;
    margin-top: 19px;
    display: flex;
    gap: 9px;
    color: #c4b5fd;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}

.home-panel-action span {
    transition: transform 180ms ease;
}

.home-panel-action:hover span {
    transform: translateX(4px);
}

.home-server-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.home-server {
    min-height: 91px;
    padding: 15px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.home-server__code {
    width: 48px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #ddd6fe;
    background: rgba(139, 92, 246, 0.13);
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.17), rgba(255, 255, 255, 0.035));
}

.home-server__code b {
    font-size: 22px;
    line-height: 1;
    filter: drop-shadow(0 4px 7px rgba(0, 0, 0, 0.25));
}

.home-server__code small {
    margin-top: -4px;
    color: #c4b5fd;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 0.8px;
}

.home-server > div {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.home-server strong {
    font-size: 14px;
}

.home-server small,
.home-server em,
.home-live-note,
.home-panel-empty {
    color: var(--dv-text-muted);
    font-size: 10px;
    font-style: normal;
}

.home-server__state {
    grid-column: 3;
    grid-row: 1;
    color: #3ee98a;
    font-size: 9px;
    font-weight: 800;
}

.home-server__state i,
.home-live-note > span {
    width: 6px;
    height: 6px;
    display: inline-block;
    margin-right: 4px;
    border-radius: 50%;
    background: #3ee98a;
    box-shadow: 0 0 10px rgba(62, 233, 138, 0.6);
}

.home-server > em {
    grid-column: 3;
    grid-row: 1;
    align-self: end;
}

.home-live-note,
.home-device-note {
    margin-top: 15px;
    padding: 13px 15px;
    border: 1px solid rgba(62, 233, 138, 0.1);
    border-radius: 13px;
    background: rgba(62, 233, 138, 0.035);
}

.home-device-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.home-device-grid article {
    --device-color: 139, 92, 246;
    position: relative;
    min-height: 205px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 17px;
    overflow: hidden;
    background:
            radial-gradient(circle at 100% 0%, rgba(var(--device-color), 0.13), transparent 46%),
            rgba(255, 255, 255, 0.025);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.home-device--windows { --device-color: 56, 189, 248 !important; }
.home-device--android { --device-color: 62, 233, 138 !important; }
.home-device--ios { --device-color: 192, 132, 252 !important; }
.home-device--mac { --device-color: 251, 146, 60 !important; }

.home-device-grid article > span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(145deg, rgba(var(--device-color), 0.32), rgba(var(--device-color), 0.09));
    box-shadow: 0 14px 30px rgba(var(--device-color), 0.12);
    font-size: 25px;
    font-weight: 900;
}

.home-device-grid article > em {
    position: absolute;
    top: 21px;
    right: 18px;
    padding: 5px 8px;
    border: 1px solid rgba(var(--device-color), 0.16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(var(--device-color), 0.06);
    font-size: 8px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.home-device-grid strong {
    margin-top: auto;
    font-size: 15px;
}

.home-device-grid small {
    margin-top: 8px;
    color: var(--dv-text-muted);
    font-size: 10px;
    line-height: 1.5;
}

.home-device-note {
    display: flex;
    gap: 14px;
    color: var(--dv-text-secondary);
    font-size: 11px;
    line-height: 1.5;
}

.home-device-note strong {
    flex: 0 0 auto;
    color: #fff;
}

.home-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
}

.home-price {
    min-height: 305px;
    padding: 21px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.home-price--featured {
    border-color: rgba(155, 108, 255, 0.35);
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.14), rgba(255, 255, 255, 0.02));
}

.home-price > span {
    color: #a78bfa;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.home-price > strong {
    margin-top: 17px;
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.home-price b {
    font-size: 42px;
    line-height: 1;
    letter-spacing: -2px;
}

.home-price small {
    color: #c4b5fd;
    font-size: 14px;
}

.home-price p {
    margin: 9px 0 0;
    color: var(--dv-text-secondary);
    font-size: 11px;
}

.home-price ul {
    margin: 20px 0;
    padding: 0;
    display: grid;
    gap: 8px;
    color: var(--dv-text-secondary);
    font-size: 10px;
    list-style: none;
}

.home-price li::before {
    content: "✓";
    margin-right: 7px;
    color: #3ee98a;
}

.home-price .home-button {
    width: 100%;
    margin-top: auto;
}

.home-info {
    padding: 70px 0;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 48px;
    align-items: start;
}

.home-info__lead {
    position: sticky;
    top: 104px;
}

.home-info__lead p {
    max-width: 480px;
    margin-top: 18px;
    font-size: 13px;
}

.home-info__lead .home-button {
    margin-top: 24px;
}

.home-faq {
    display: grid;
    gap: 10px;
}

.home-faq details {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.025);
    transition: border-color 180ms ease, background 180ms ease;
}

.home-faq details[open] {
    border-color: rgba(155, 108, 255, 0.28);
    background: rgba(139, 92, 246, 0.055);
}

.home-faq summary {
    min-height: 72px;
    padding: 0 19px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    list-style: none;
    font-size: 13px;
    font-weight: 800;
}

.home-faq summary::-webkit-details-marker {
    display: none;
}

.home-faq summary span {
    color: #a78bfa;
    font-size: 20px;
    transition: transform 180ms ease;
}

.home-faq details[open] summary span {
    transform: rotate(45deg);
}

.home-faq p {
    padding: 0 55px 19px 19px;
}

.home-cta {
    margin: 46px 0 74px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
    border: 1px solid rgba(155, 108, 255, 0.3);
    border-radius: 24px;
    background:
            radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.15), transparent 35%),
            linear-gradient(145deg, rgba(139, 92, 246, 0.17), rgba(18, 18, 24, 0.85));
    box-shadow: 0 30px 90px rgba(91, 33, 182, 0.13);
}

.home-cta h2 {
    font-size: clamp(25px, 3.4vw, 39px);
}

.home-cta .home-button {
    flex: 0 0 auto;
}

.home-footer {
    margin-bottom: 20px;
    padding: 22px 4px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-footer > div {
    display: grid;
    gap: 5px;
}

.home-footer strong {
    font-size: 14px;
}

.home-footer span,
.home-footer small,
.home-footer a {
    color: var(--dv-text-muted);
    font-size: 10px;
}

.home-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.home-footer a {
    font-weight: 700;
    text-decoration: none;
}

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

@media (max-width: 920px) {
    .home-hero {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 58px;
        text-align: center;
    }

    .home-badge,
    .home-hero__actions {
        margin-inline: auto;
    }

    .home-hero__copy > p {
        margin-inline: auto;
    }

    .home-proof {
        justify-content: center;
    }

    .home-product {
        min-height: 470px;
    }

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

    .home-guide-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .home-guide-card--start,
    .home-guide-card--pricing {
        grid-column: auto;
        grid-row: auto;
    }

    .home-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home-info__lead {
        position: static;
    }
}

@media (max-width: 700px) {
    .home-header,
    .home-footer {
        width: calc(100% - 20px);
    }

    .home-shell {
        width: 100%;
        padding-inline: 12px;
    }

    .home-header {
        top: 7px;
        min-height: 58px;
        margin-top: 7px;
        padding: 7px;
    }

    .home-brand__mark {
        width: 39px;
        height: 39px;
    }

    .home-brand__name {
        font-size: 17px;
    }

    .home-header .home-button {
        min-height: 40px;
        padding-inline: 12px;
        font-size: 10px;
    }

    .home-hero {
        min-height: auto;
        padding: 55px 0 38px;
    }

    .home-hero h1 {
        font-size: clamp(41px, 13vw, 58px);
        letter-spacing: -2.8px;
    }

    .home-hero__copy > p {
        font-size: 15px;
    }

    .home-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-product__toast {
        right: -5px;
        top: 82px;
    }

    .home-explorer,
    .home-info {
        padding: 52px 0;
    }

    .home-section-heading {
        display: block;
    }

    .home-section-heading > p {
        margin-top: 12px;
    }

    .home-guide-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .home-guide-card {
        min-height: 132px;
        padding: 17px;
        border-radius: 17px;
    }

    .home-guide-card > strong {
        margin-top: 4px;
        font-size: 21px;
    }

    .home-guide-card__action {
        padding-top: 9px;
    }

    .home-dialog {
        width: 100%;
        height: 100dvh;
        max-height: none;
        margin: 0;
        border: 0;
        border-radius: 0;
    }

    .home-dialog__surface {
        height: 100dvh;
        max-height: none;
    }

    .home-dialog__header {
        padding: max(17px, env(safe-area-inset-top)) 16px 15px;
        background: rgba(10, 10, 15, 0.88);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .home-dialog__header button {
        width: 44px;
        height: 44px;
    }

    .home-dialog__body {
        padding: 16px 12px max(24px, env(safe-area-inset-bottom));
    }

    .home-steps,
    .home-server-grid,
    .home-pricing-grid {
        grid-template-columns: 1fr;
    }

    .home-steps article {
        min-height: 150px;
    }

    .home-device-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-device-grid article {
        min-height: 175px;
        padding: 16px;
    }

    .home-device-note {
        display: grid;
    }

    .home-cta {
        margin: 30px 0 55px;
        padding: 25px 20px;
        display: grid;
    }

    .home-cta .home-button {
        width: 100%;
    }

    .home-footer {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 460px) {
    .home-brand__name small,
    .home-header .home-button--quiet {
        display: none;
    }

    .home-product {
        min-height: 430px;
    }

    .home-product__card {
        padding: 21px;
    }

    .home-product__toast {
        position: static;
        margin-top: 17px;
    }

    .home-product__facts {
        gap: 5px;
    }

    .home-product__facts div {
        padding: 9px 7px;
    }

    .home-device-grid {
        grid-template-columns: 1fr;
    }

    .home-device-grid article {
        min-height: 145px;
    }

    .home-server {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .home-server__state,
    .home-server > em {
        grid-column: 2;
        grid-row: auto;
        justify-self: start;
    }
}

/* Interaction refinement: balanced guide cards and clear next actions. */
.home-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 14px;
}

.home-guide-card,
.home-guide-card--start,
.home-guide-card--pricing {
    min-height: 285px;
    grid-column: auto;
    grid-row: auto;
}

.home-guide-card__visual {
    min-height: 76px;
    margin: 12px 0 9px;
}

.home-steps {
    gap: 28px;
}

.home-steps::before {
    display: none;
}

.home-steps article:not(:last-child)::after {
    content: "→";
    position: absolute;
    z-index: 4;
    top: 50%;
    right: -23px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(139, 92, 246, 0.35);
    border-radius: 50%;
    color: #c4b5fd;
    background: #17131f;
    box-shadow: 0 0 22px rgba(139, 92, 246, 0.2);
    font-size: 14px;
    font-style: normal;
    transform: translateY(-50%);
}

.home-device-grid .home-device {
    --device-color: 139, 92, 246;
    position: relative;
    min-height: 235px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 17px;
    color: #fff;
    background:
            radial-gradient(circle at 100% 0%, rgba(var(--device-color), 0.13), transparent 46%),
            rgba(255, 255, 255, 0.025);
    text-decoration: none;
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.home-device-grid .home-device:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--device-color), 0.42);
    background-color: rgba(var(--device-color), 0.06);
    box-shadow: 0 22px 45px rgba(var(--device-color), 0.1);
}

.home-device-grid .home-device:focus-visible {
    outline: 2px solid rgba(var(--device-color), 0.85);
    outline-offset: 3px;
}

.home-device-grid .home-device > span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(var(--device-color), 0.22);
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(var(--device-color), 0.32), rgba(var(--device-color), 0.09));
    box-shadow: 0 14px 30px rgba(var(--device-color), 0.12);
}

.home-device-grid .home-device > span img {
    width: 31px;
    height: 31px;
    object-fit: contain;
    filter: drop-shadow(0 8px 13px rgba(0, 0, 0, 0.25));
}

.home-device-grid .home-device > em {
    position: absolute;
    top: 21px;
    right: 18px;
    padding: 5px 8px;
    border: 1px solid rgba(var(--device-color), 0.16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(var(--device-color), 0.06);
    font-size: 8px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.home-device-grid .home-device > strong {
    margin-top: auto;
    font-size: 15px;
}

.home-device-grid .home-device > small {
    margin-top: 8px;
    color: var(--dv-text-muted);
    font-size: 10px;
    line-height: 1.5;
}

.home-device-grid .home-device > b {
    margin-top: 13px;
    color: rgba(var(--device-color), 0.95);
    font-size: 9px;
    font-weight: 850;
}

.home-device-grid .home-device > b i,
.home-device-note a i {
    display: inline-block;
    margin-left: 4px;
    font-style: normal;
    transition: transform 180ms ease;
}

.home-device-grid .home-device:hover > b i,
.home-device-note a:hover i {
    transform: translateX(4px);
}

.home-device-note {
    align-items: center;
    justify-content: space-between;
}

.home-device-note > div {
    display: grid;
    gap: 3px;
}

.home-device-note a {
    flex: 0 0 auto;
    padding: 9px 12px;
    border: 1px solid rgba(62, 233, 138, 0.15);
    border-radius: 10px;
    color: #8ff3ba;
    background: rgba(62, 233, 138, 0.045);
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 700px) {
    .home-guide-grid {
        grid-template-columns: 1fr;
    }

    .home-guide-card,
    .home-guide-card--start,
    .home-guide-card--pricing {
        min-height: 225px;
    }

    .home-steps {
        gap: 14px;
    }

    .home-steps article:not(:last-child)::after {
        content: "↓";
        top: auto;
        right: auto;
        bottom: -23px;
        left: 50%;
        transform: translateX(-50%);
    }

    .home-device-grid .home-device {
        min-height: 190px;
        padding: 16px;
    }

    .home-device-note {
        display: grid;
        gap: 12px;
    }

    .home-device-note a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 460px) {
    .home-guide-card,
    .home-guide-card--start,
    .home-guide-card--pricing {
        min-height: 205px;
    }

    .home-device-grid .home-device {
        min-height: 165px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Polished visual layer: real flags, recognizable platforms and richer states. */
.home-product__locations span {
    width: 32px;
    height: 24px;
    padding: 2px;
    overflow: hidden;
    border: 2px solid #17151f;
    background: #17151f;
}

.home-product__locations img,
.home-product__route-icon img,
.home-server__code img,
.home-guide-card__visual img {
    display: block;
    object-fit: cover;
}

.home-product__locations img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.home-product__route-icon {
    width: 46px;
    height: 38px;
    padding: 5px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.2), rgba(255, 255, 255, 0.04));
}

.home-product__route-icon img {
    width: 100%;
    height: 100%;
    border-radius: 7px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.28);
}

.home-product__route-icon b {
    color: #c4b5fd;
    font-size: 11px;
}

.home-product__card::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 18% -18% -22% 22%;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.13);
    filter: blur(68px);
}

.home-guide-card {
    isolation: isolate;
    overflow: hidden;
}

.home-guide-card__visual {
    min-height: 82px;
    margin: 16px 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border: 1px solid rgba(var(--home-card-accent), 0.14);
    border-radius: 18px;
    background:
            radial-gradient(circle at 50% 20%, rgba(var(--home-card-accent), 0.18), transparent 58%),
            rgba(255, 255, 255, 0.018);
}

.home-guide-card__visual--start {
    position: relative;
}

.home-guide-card__visual--start i {
    width: 50%;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, #8b5cf6, #38bdf8, #3ee98a);
    box-shadow: 0 0 22px rgba(56, 189, 248, 0.38);
}

.home-guide-card__visual--start i::before,
.home-guide-card__visual--start i::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 13px;
    height: 13px;
    border: 4px solid #18131f;
    border-radius: 50%;
    background: #3ee98a;
    box-shadow: 0 0 20px rgba(62, 233, 138, 0.55);
    transform: translateY(-50%);
}

.home-guide-card__visual--start i::before { left: 22%; }
.home-guide-card__visual--start i::after { right: 22%; }

.home-guide-card__visual--start b {
    margin-left: 12px;
    color: #fff;
    font-size: 22px;
}

.home-guide-card__visual--servers img {
    width: 42px;
    height: 30px;
    margin-left: -8px;
    border: 3px solid #121117;
    border-radius: 9px;
    box-shadow: 0 9px 24px rgba(0, 0, 0, 0.35);
}

.home-guide-card__visual--servers img:first-child { margin-left: 0; }

.home-guide-card__visual--devices img {
    width: 42px;
    height: 42px;
    margin: 0 8px;
    padding: 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.home-guide-card__visual--pricing {
    flex-direction: column;
    gap: 2px;
}

.home-guide-card__visual--pricing small {
    color: var(--dv-text-muted);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.home-guide-card__visual--pricing b {
    color: #fff;
    font-size: 27px;
    letter-spacing: -1px;
}

.home-guide-card > strong {
    margin-top: 0;
}

.home-steps {
    position: relative;
}

.home-steps::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 83px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.6), rgba(56, 189, 248, 0.65), rgba(62, 233, 138, 0.65));
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.28);
}

.home-steps article {
    position: relative;
    z-index: 1;
    min-height: 250px;
    justify-content: flex-start;
    background:
            radial-gradient(circle at 50% 34%, rgba(139, 92, 246, 0.09), transparent 31%),
            rgba(255, 255, 255, 0.025);
}

.home-step-icon {
    width: 70px;
    height: 70px;
    margin: 8px auto 25px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    color: #fff;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    font-size: 24px;
    font-style: normal;
}

.home-step-icon--choice { color: #c4b5fd; box-shadow: 0 18px 45px rgba(139, 92, 246, 0.16); }
.home-step-icon--access { color: #3ee98a; box-shadow: 0 18px 45px rgba(62, 233, 138, 0.13); }
.home-step-icon--connect { color: #38bdf8; box-shadow: 0 18px 45px rgba(56, 189, 248, 0.14); }

.home-server {
    background:
            linear-gradient(110deg, rgba(255, 255, 255, 0.026), transparent 64%),
            rgba(255, 255, 255, 0.018);
}

.home-server__code {
    width: 58px;
    height: 54px;
    position: relative;
    display: block;
    padding: 5px;
}

.home-server__code img {
    width: 100%;
    height: 100%;
    border-radius: 9px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.home-server__code small {
    position: absolute;
    right: -4px;
    bottom: -3px;
    padding: 3px 5px;
    border: 2px solid #111116;
    border-radius: 7px;
    color: #fff;
    background: #34235c;
    font-size: 7px;
}

.home-device-grid article {
    min-height: 235px;
}

.home-device-grid article > span {
    width: 58px;
    height: 58px;
    border: 1px solid rgba(var(--device-color), 0.22);
}

.home-device-grid article > span img {
    width: 31px;
    height: 31px;
    object-fit: contain;
    filter: drop-shadow(0 8px 13px rgba(0, 0, 0, 0.25));
}

.home-device-grid article > b {
    margin-top: 13px;
    color: rgba(var(--device-color), 0.92);
    font-size: 9px;
    font-weight: 800;
}

.home-price {
    position: relative;
    overflow: hidden;
}

.home-price::before {
    content: "";
    position: absolute;
    inset: -30% -40% auto 20%;
    height: 150px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.11);
    filter: blur(38px);
    pointer-events: none;
}

.home-price--featured::after {
    content: "Выгодно";
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 9px;
    border: 1px solid rgba(167, 139, 250, 0.22);
    border-radius: 999px;
    color: #ddd6fe;
    background: rgba(139, 92, 246, 0.15);
    font-size: 8px;
    font-weight: 850;
    text-transform: uppercase;
}

.home-info__signals {
    margin-top: 24px;
    display: grid;
    gap: 8px;
}

.home-info__signals span {
    min-height: 58px;
    padding: 11px 14px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 10px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
}

.home-info__signals i {
    width: 9px;
    height: 9px;
    grid-row: span 2;
    border-radius: 50%;
    background: #3ee98a;
    box-shadow: 0 0 15px rgba(62, 233, 138, 0.55);
}

.home-info__signals b { font-size: 11px; }
.home-info__signals small { color: var(--dv-text-muted); font-size: 9px; }

.home-cta {
    position: relative;
}

.home-cta__pulse {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.home-cta__pulse i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #8b5cf6;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.55);
    animation: home-cta-pulse 1.8s ease-in-out infinite;
}

.home-cta__pulse i:nth-child(2) { background: #38bdf8; animation-delay: 180ms; }
.home-cta__pulse i:nth-child(3) { background: #3ee98a; animation-delay: 360ms; }

@keyframes home-cta-pulse {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-8px); opacity: 1; }
}

@media (max-width: 700px) {
    .home-guide-card__visual {
        min-height: 64px;
        margin: 10px 0;
    }

    .home-steps::before {
        top: 12%;
        bottom: 12%;
        left: 49px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .home-steps article {
        min-height: 168px;
        padding-left: 88px;
    }

    .home-steps article > span {
        position: absolute;
        left: 16px;
        top: 16px;
    }

    .home-step-icon {
        position: absolute;
        left: 28px;
        top: 62px;
        width: 44px;
        height: 44px;
        margin: 0;
        border-radius: 14px;
        font-size: 18px;
    }

    .home-steps article div {
        margin-top: auto;
        margin-bottom: auto;
    }

    .home-device-grid article {
        min-height: 190px;
    }

    .home-info__signals {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .home-cta__pulse {
        display: none;
    }
}

@media (max-width: 460px) {
    .home-product__locations span {
        width: 29px;
        height: 22px;
    }

    .home-guide-card__visual--devices img {
        width: 37px;
        height: 37px;
        margin: 0 5px;
    }

    .home-info__signals {
        grid-template-columns: 1fr;
    }

    .home-device-grid article {
        min-height: 165px;
    }
}

/* Final layout order: these rules intentionally follow the visual layer above. */
.home-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 14px;
}

.home-guide-card,
.home-guide-card--start,
.home-guide-card--pricing {
    min-height: 285px;
    grid-column: auto;
    grid-row: auto;
}

.home-guide-card__visual {
    min-height: 76px;
    margin: 12px 0 9px;
}

.home-steps {
    gap: 28px;
}

.home-steps::before {
    display: none;
}

.home-steps article:not(:last-child)::after {
    content: "→";
    position: absolute;
    z-index: 4;
    top: 50%;
    right: -23px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(139, 92, 246, 0.35);
    border-radius: 50%;
    color: #c4b5fd;
    background: #17131f;
    box-shadow: 0 0 22px rgba(139, 92, 246, 0.2);
    font-size: 14px;
    transform: translateY(-50%);
}

@media (max-width: 700px) {
    .home-guide-grid {
        grid-template-columns: 1fr;
    }

    .home-guide-card,
    .home-guide-card--start,
    .home-guide-card--pricing {
        min-height: 225px;
    }

    .home-steps {
        gap: 14px;
    }

    .home-steps article:not(:last-child)::after {
        content: "↓";
        top: auto;
        right: auto;
        bottom: -23px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 460px) {
    .home-guide-card,
    .home-guide-card--start,
    .home-guide-card--pricing {
        min-height: 205px;
    }
}

/* Mobile navigation: account access stays visible without scrolling to the footer. */
.home-header-label--mobile,
.home-mobile-nav {
    display: none;
}

@media (max-width: 700px) {
    body.home-page {
        padding-bottom: calc(84px + env(safe-area-inset-bottom));
    }

    .home-header-label--desktop {
        display: none;
    }

    .home-header-label--mobile {
        display: inline;
    }

    .home-header__actions {
        gap: 6px;
    }

    .home-header .home-button {
        padding-inline: 13px;
    }

    .home-mobile-nav {
        position: fixed;
        z-index: 80;
        left: 10px;
        right: 10px;
        bottom: max(9px, env(safe-area-inset-bottom));
        min-height: 62px;
        padding: 6px;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 3px;
        border: 1px solid rgba(155, 108, 255, 0.28);
        border-radius: 20px;
        background: rgba(10, 10, 15, 0.94);
        box-shadow: 0 18px 60px rgba(0, 0, 0, 0.52), 0 0 34px rgba(113, 67, 255, 0.13);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
    }

    .home-mobile-nav a,
    .home-mobile-nav button {
        min-width: 0;
        padding: 5px 3px;
        display: grid;
        place-items: center;
        gap: 3px;
        border: 0;
        border-radius: 14px;
        color: #aaa5b5;
        background: transparent;
        font: inherit;
        text-decoration: none;
        cursor: pointer;
    }

    .home-mobile-nav span {
        width: 25px;
        height: 25px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(155, 108, 255, 0.18);
        border-radius: 9px;
        color: #d7c7ff;
        background: rgba(139, 92, 246, 0.1);
        font-size: 13px;
    }

    .home-mobile-nav strong {
        overflow: hidden;
        max-width: 100%;
        font-size: 9px;
        font-weight: 850;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .home-mobile-nav a:nth-child(3) {
        color: #fff;
        background: linear-gradient(135deg, rgba(143, 94, 255, 0.3), rgba(83, 218, 255, 0.1));
    }

    .home-mobile-nav a:active,
    .home-mobile-nav button:active {
        color: #fff;
        background: rgba(139, 92, 246, 0.2);
        transform: scale(0.97);
    }

    .home-mobile-nav a:focus-visible,
    .home-mobile-nav button:focus-visible {
        outline: 2px solid #a78bfa;
        outline-offset: -2px;
    }

    .home-footer {
        margin-bottom: 18px;
    }
}

@media (max-width: 460px) {
    .home-brand__name {
        display: none;
    }

    .home-header .home-button--quiet {
        display: inline-flex;
    }

    .home-header {
        padding-inline: 7px;
    }

    .home-header .home-button {
        min-height: 39px;
        padding-inline: 11px;
        font-size: 9px;
    }

    .home-brand__mark {
        width: 39px;
        flex: 0 0 39px;
    }
}
