.public-home-v3 {
    background: #08090b;
}

.public-home-v3 .public-page-content {
    min-height: 100vh;
}

.home-v3,
.home-v3 * {
    box-sizing: border-box;
}

.home-v3 {
    --ink: #f5f5f7;
    --muted: #91949d;
    --paper: #08090b;
    --paper-raised: #0c0d10;
    --surface: #111216;
    --surface-raised: #15161b;
    --line: rgba(255, 255, 255, .09);
    --line-strong: rgba(255, 255, 255, .15);
    --line-dark: rgba(255, 255, 255, .09);
    --graphite: #0d0e11;
    --graphite-raised: #15161b;
    --indigo: #5e6ad2;
    color: var(--ink);
    background: var(--paper);
    font-family: "Onest", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    overflow: hidden;
}

.home-v3 main {
    padding-top: 72px;
}

.home-v3 [id] {
    scroll-margin-top: 88px;
}

.home-v3 main > .home-v3-section {
    background-color: var(--paper);
    color: var(--ink);
}

.home-v3 main > .home-v3-sites,
.home-v3 main > .home-v3-team {
    background-color: #0b0c0f;
}

.home-v3 main > .home-v3-final {
    background-color: #0d0e11;
}

.home-v3 main > .home-v3-section h1,
.home-v3 main > .home-v3-section h2,
.home-v3 main > .home-v3-section h3,
.home-v3 main > .home-v3-section h4,
.home-v3 main > .home-v3-section strong {
    color: var(--ink);
}

.home-v3 a {
    color: inherit;
    text-decoration: none;
}

.home-v3 img {
    display: block;
    max-width: 100%;
}

.home-v3-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.home-v3-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 9, 11, .84);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.home-v3-header__inner {
    min-height: 72px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
}

.home-v3-brand {
    width: fit-content;
}

.home-v3-brand img {
    width: 116px;
    height: auto;
}

.home-v3-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
}

.home-v3-nav > a,
.home-v3-products-menu__trigger,
.home-v3-header__login {
    height: 34px;
    display: inline-flex;
    align-items: center;
    color: #92949c;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}

.home-v3-nav a,
.home-v3-text-link,
.home-v3-inline-link {
    transition: color .18s ease;
}

.home-v3 .home-v3-header .home-v3-nav > a:hover,
.home-v3 .home-v3-header .home-v3-nav > a:focus-visible,
.home-v3 .home-v3-header .home-v3-header__login:hover,
.home-v3 .home-v3-header .home-v3-header__login:focus-visible {
    color: #f3f3f5 !important;
    text-decoration: none;
}

.home-v3-inline-link:hover { color: var(--indigo); }

.home-v3-products-menu {
    position: relative;
}

.home-v3-products-menu::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -20px;
    width: calc(100% + 40px);
    height: 14px;
}

.home-v3-products-menu__trigger {
    padding-bottom: 2px;
    cursor: pointer;
    transition: color .18s ease;
}

.home-v3-products-menu:hover .home-v3-products-menu__trigger,
.home-v3-products-menu:focus-within .home-v3-products-menu__trigger {
    color: #f3f3f5;
}

.home-v3-products-menu__panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    width: min(680px, calc(100vw - 40px));
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: #0d0e11;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .48);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -4px);
    transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
}

.home-v3-products-menu:hover .home-v3-products-menu__panel,
.home-v3-products-menu:focus-within .home-v3-products-menu__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.home-v3-products-menu__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 9px;
    background: #131417;
}

.home-v3-products-menu__item {
    position: relative;
    min-height: 116px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 22px;
    border-right: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    color: #f0f1f4;
    transition: background-color .18s ease, color .18s ease;
}

.home-v3-products-menu__item:nth-child(2n) {
    border-right: 0;
}

.home-v3-products-menu__item:nth-child(n + 3) {
    border-bottom: 0;
}

.home-v3-nav .home-v3-products-menu__item:not(.is-disabled):hover {
    color: #fff;
}

.home-v3-nav .home-v3-products-menu__item:not(.is-disabled):hover small {
    color: #b6b8c0;
}

.home-v3-products-menu__item strong {
    padding-right: 24px;
    color: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.home-v3-products-menu__item small {
    color: #8f929c;
    font-size: 12px;
    line-height: 1.5;
}

.home-v3-products-menu__item > i {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #707be5;
    font-size: 12px;
    font-style: normal;
}

.home-v3-products-menu__item > span {
    margin-top: auto;
    color: #6f727b;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.home-v3-products-menu__item.is-disabled {
    color: #b0b2b9;
    cursor: default;
}

.home-v3-products-menu__item.is-disabled small {
    color: #747780;
}

.home-v3-products-menu__trigger:focus-visible,
.home-v3-products-menu__item:focus-visible {
    outline: 2px solid #7f89ff;
    outline-offset: 3px;
}

.home-v3-header__actions,
.home-v3-hero__actions {
    display: flex;
    align-items: center;
}

.home-v3-header__actions {
    gap: 22px;
    color: #92949c;
}

.home-v3-header__actions::before {
    content: "";
    width: 1px;
    height: 18px;
    flex: 0 0 1px;
    background: rgba(255, 255, 255, .12);
}

.home-v3-hero__actions { gap: 18px; }

.home-v3-text-link {
    font-size: 13px;
    font-weight: 500;
}

.home-v3-inline-link {
    font-size: 14px;
    font-weight: 600;
}

.home-v3-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid rgba(130, 140, 230, .56);
    border-radius: 10px;
    background: var(--indigo);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    transition: transform .18s ease, background .18s ease;
}

.home-v3-button:hover {
    color: #fff !important;
    background: #6873d9;
    transform: translateY(-1px);
}

.home-v3-button--small {
    min-height: 38px;
    padding: 0 17px;
}

.home-v3-header__actions > .home-v3-button {
    min-height: 34px;
    padding: 0 17px;
    border-color: #f1f1f2;
    border-radius: 999px;
    background: #f1f1f2;
    color: #17181c !important;
}

.home-v3-header__actions > .home-v3-button:hover {
    background: #fff;
    color: #17181c !important;
    transform: none;
}

.home-v3-mobile-menu {
    display: none;
    position: relative;
}

.home-v3-mobile-menu summary {
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 10px;
    list-style: none;
    cursor: pointer;
}

.home-v3-mobile-menu summary::-webkit-details-marker { display: none; }
.home-v3-mobile-menu summary span {
    display: block;
    width: 17px;
    height: 1px;
    background: var(--ink);
    transform-origin: center;
}
.home-v3-mobile-menu[open] summary span:first-child { transform: translateY(5px) rotate(45deg); }
.home-v3-mobile-menu[open] summary span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.home-v3-mobile-menu[open] summary span:last-child { transform: translateY(-5px) rotate(-45deg); }
.home-v3-mobile-menu__panel { position: absolute; top: 48px; right: 0; width: min(280px, calc(100vw - 32px)); display: grid; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: #111216; box-shadow: 0 20px 50px rgba(0,0,0,.34); }
.home-v3-mobile-menu__panel a,
.home-v3-mobile-menu__panel > span.is-disabled { display: block; padding: 10px 12px; border-radius: 8px; font-size: 14px; }
.home-v3-mobile-menu__panel a:hover { background: rgba(255,255,255,.06); }
.home-v3-mobile-menu__panel > span.is-disabled { color: #676a73; }
.home-v3-mobile-menu__label { padding: 7px 12px 5px; color: #6f7cff; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.home-v3-mobile-menu__divider { height: 1px; margin: 7px 8px; background: var(--line); }

.home-v3-hero {
    position: relative;
    padding: 88px 0 86px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 72% 11%, rgba(112, 116, 145, .075), transparent 34%),
        radial-gradient(circle at 14% 45%, rgba(67, 93, 102, .035), transparent 32%),
        #08090b;
}

.home-v3-hero__copy {
    max-width: 860px;
    margin-bottom: 64px;
}

.home-v3-eyebrow {
    margin: 0 0 16px;
    color: var(--indigo);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.home-v3 h1,
.home-v3 h2,
.home-v3 h3,
.home-v3 p {
    font-family: inherit;
}

.home-v3 h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(48px, 5vw, 70px);
    line-height: 1;
    letter-spacing: -.045em;
    font-weight: 600;
}

.home-v3-hero__lead {
    max-width: 760px;
    margin: 28px 0 0;
    color: #b0b3ba;
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.45;
}

.home-v3-hero__actions { margin-top: 32px; }
.home-v3-hero__support { margin: 20px 0 0; color: var(--muted); font-size: 13px; }

.home-v3-workbench {
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: var(--graphite);
    color: #efeff1;
    box-shadow: 0 30px 80px rgba(0,0,0,.38);
}

.home-v3-workbench__topbar {
    min-height: 56px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 18px;
    border-bottom: 1px solid var(--line-dark);
    font-size: 12px;
}

.home-v3-window-dots { display: flex; gap: 6px; }
.home-v3-window-dots i { width: 8px; height: 8px; border-radius: 50%; background: #4b4b50; }
.home-v3-window-dots i:first-child { background: #d86a64; }
.home-v3-window-dots i:nth-child(2) { background: #d7a74d; }
.home-v3-window-dots i:last-child { background: #64a679; }
.home-v3-workbench__workspace { font-weight: 600; }
.home-v3-workbench__team { justify-self: end; color: #8e8e96; }

.home-v3-screenshot {
    min-width: 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #121214;
}

.home-v3-screenshot--workspace {
    min-height: 520px;
    aspect-ratio: 16 / 9;
}

.home-v3-screenshot > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
}

.home-v3-screenshot__placeholder {
    min-height: inherit;
    height: 100%;
    position: relative;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 8px;
    padding: 54px;
    color: #b8b8be;
    text-align: center;
    background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        #121214;
    background-size: 42px 42px;
}

.home-v3-screenshot__placeholder::before {
    content: "";
    position: absolute;
    inset: 28px;
    border: 1px dashed #34343a;
    border-radius: 12px;
    pointer-events: none;
}

.home-v3-screenshot__placeholder strong {
    position: relative;
    font-size: 13px;
    font-weight: 600;
}

.home-v3-screenshot__placeholder small {
    position: relative;
    color: #72727a;
    font-size: 10px;
    letter-spacing: .04em;
}

.home-v3-screenshot__mark {
    width: 48px;
    height: 48px;
    position: relative;
    display: grid;
    place-content: center;
    margin-bottom: 5px;
    border: 1px solid #393940;
    border-radius: 12px;
    background: #1c1c20;
}

.home-v3-screenshot__mark i {
    width: 20px;
    height: 16px;
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid #83838c;
    border-radius: 3px;
}

.home-v3-screenshot__mark i::before {
    content: "";
    width: 4px;
    height: 4px;
    position: absolute;
    top: 3px;
    right: 3px;
    border-radius: 50%;
    background: #a2a2aa;
}

.home-v3-screenshot__mark i::after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    left: 2px;
    bottom: -7px;
    border: 1px solid #83838c;
    transform: rotate(45deg);
}

.home-v3-module-icon {
    flex: 0 0 29px;
    width: 29px;
    height: 29px;
    position: relative;
    display: inline-grid;
    place-content: center;
    border: 1px solid #3a3a43;
    border-radius: 8px;
    background: #25252b;
    color: #9ca4ff;
}

.home-v3-module-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-v3-sites,
.home-v3-modules,
.home-v3-journeys,
.home-v3-team,
.home-v3-pricing,
.home-v3-start {
    padding: 112px 0;
    border-bottom: 1px solid var(--line);
}

.home-v3-section-heading { max-width: 720px; }
.home-v3-section-heading h2,
.home-v3-sites__copy h2,
.home-v3-team__copy h2,
.home-v3-final h2 { margin: 0; font-size: clamp(36px, 4vw, 56px); line-height: 1.05; letter-spacing: -.045em; font-weight: 600; }
.home-v3-section-heading > p:last-child,
.home-v3-sites__copy > p,
.home-v3-team__copy > p,
.home-v3-final p { margin: 22px 0 0; color: var(--muted); font-size: 18px; }
.home-v3-section-heading--split { max-width: none; display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: start; }
.home-v3-section-heading--split > p,
.home-v3-section-heading--split > div:last-child p { margin: 0; padding-top: 32px; color: var(--muted); font-size: 17px; }

.home-v3-system-map {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    border: 1px solid var(--line);
    border-radius: 20px;
    isolation: isolate;
    background:
        linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px),
        #0c0d10;
    background-size: 40px 40px;
}

.home-v3-system-map::before {
    content: "";
    width: 440px;
    height: 440px;
    position: absolute;
    top: -260px;
    left: -120px;
    z-index: -1;
    border-radius: 50%;
    background: rgba(94, 106, 210, .16);
    filter: blur(70px);
    pointer-events: none;
}

.home-v3-system-map__topline {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(12, 13, 16, .86);
}

.home-v3-system-map__topline span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #dfe1e8;
    font-size: 12px;
    font-weight: 650;
}

.home-v3-system-map__topline span i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #79b99b;
    box-shadow: 0 0 0 4px rgba(121, 185, 155, .08);
}

.home-v3-system-map__topline small {
    color: #747883;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-v3-system-map__canvas {
    display: grid;
    grid-template-columns: minmax(250px, .78fr) 72px minmax(0, 1.45fr);
    align-items: stretch;
    padding: 28px;
}

.home-v3-system-map__core {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border: 1px solid rgba(124, 135, 225, .42);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(94, 106, 210, .16), rgba(17, 18, 24, .96) 58%);
}

.home-v3-system-map__core header {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
}

.home-v3-system-map__core header > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    border: 1px solid rgba(139, 149, 238, .42);
    border-radius: 11px;
    background: rgba(94, 106, 210, .18);
    color: #cbd0ff;
    font-weight: 700;
}

.home-v3-system-map__core header > i,
.home-v3-system-map__module > i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #79b99b;
}

.home-v3-system-map__core small,
.home-v3-system-map__core strong { display: block; }
.home-v3-system-map__core small { margin-bottom: 2px; color: var(--muted); font-size: 10px; }
.home-v3-system-map__core strong { font-size: 15px; }

.home-v3-system-map__pulse {
    display: grid;
    align-content: center;
    gap: 12px;
    min-height: 96px;
    margin: 22px 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
    background: rgba(7, 8, 10, .48);
}

.home-v3-system-map__pulse span {
    height: 1px;
    position: relative;
    display: block;
    background: linear-gradient(90deg, rgba(94, 106, 210, .12), rgba(139, 149, 238, .72), rgba(94, 106, 210, .08));
}

.home-v3-system-map__pulse span:nth-child(2) { width: 76%; }
.home-v3-system-map__pulse span:nth-child(3) { width: 54%; }

.home-v3-system-map__pulse span::after {
    content: "";
    width: 5px;
    height: 5px;
    position: absolute;
    top: -2px;
    right: 18%;
    border-radius: 50%;
    background: #a7afff;
    box-shadow: 0 0 12px rgba(139, 149, 238, .72);
}

.home-v3-system-map__core ul {
    display: grid;
    gap: 8px;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.home-v3-system-map__core li {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    color: #b2b5bd;
    font-size: 11px;
}

.home-v3-system-map__core li span { color: #737a9f; font-size: 9px; }

.home-v3-system-map__connector {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.home-v3-system-map__connector i {
    height: 1px;
    position: absolute;
    right: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(139, 149, 238, .18), rgba(139, 149, 238, .66), rgba(139, 149, 238, .18));
}

.home-v3-system-map__connector span {
    width: 6px;
    height: 6px;
    z-index: 1;
    border: 1px solid #929bf0;
    border-radius: 50%;
    background: #111218;
}

.home-v3-system-map__modules {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.home-v3-system-map__module {
    min-width: 0;
    min-height: 146px;
    position: relative;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-content: start;
    gap: 13px;
    grid-column: span 2;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(18, 19, 24, .94);
}

.home-v3-system-map__module--shop,
.home-v3-system-map__module--booking { grid-column: span 3; }

.home-v3-system-map__module > i { position: absolute; top: 15px; right: 15px; }
.home-v3-system-map__module small,
.home-v3-system-map__module strong { display: block; }
.home-v3-system-map__module small { padding-right: 14px; color: #70747e; font-size: 9px; text-transform: uppercase; }
.home-v3-system-map__module strong { margin-top: 14px; font-size: 14px; }
.home-v3-system-map__module p { margin: 6px 0 0; color: #8f929b; font-size: 11px; line-height: 1.45; }

.home-v3-system-map__module:hover { border-color: rgba(139, 149, 238, .28); background: rgba(21, 22, 28, .98); }

.home-v3-sites { background: #0b0c0f; }
.home-v3-sites__grid,
.home-v3-team__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.home-v3-sites__copy ul { margin: 32px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.home-v3-sites__copy li { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 600; }
.home-v3-sites__link { margin-top: 28px; }

.home-v3-site-system {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #0d0e11;
}

.home-v3-site-system__topline {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
    border-bottom: 1px solid var(--line);
}

.home-v3-site-system__topline span { font-size: 12px; font-weight: 600; }
.home-v3-site-system__topline small { color: #78b69a; font-size: 10px; }

.home-v3-site-system__flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr) 30px minmax(0, 1fr);
    align-items: center;
    padding: 34px 24px 26px;
}

.home-v3-site-system__flow article {
    min-height: 152px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #121318;
}

.home-v3-site-system__flow article.is-primary {
    border-color: rgba(124, 135, 225, .44);
    background: rgba(94, 106, 210, .1);
}

.home-v3-site-system__flow article small { color: #777b86; font-size: 10px; }
.home-v3-site-system__flow article strong { margin-top: auto; font-size: 14px; }
.home-v3-site-system__flow article span { margin-top: 5px; color: var(--muted); font-size: 10px; line-height: 1.45; }
.home-v3-site-system__flow > i { height: 1px; position: relative; background: rgba(139, 149, 238, .34); }
.home-v3-site-system__flow > i::after { content: ""; width: 5px; height: 5px; position: absolute; top: -2px; right: 0; border-radius: 50%; background: #8993e8; }

.home-v3-site-system__signal {
    height: 62px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 9px;
    padding: 0 24px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, transparent, rgba(94,106,210,.045));
}

.home-v3-site-system__signal span {
    width: 12%;
    min-width: 18px;
    border-radius: 5px 5px 0 0;
    background: rgba(103, 115, 214, .3);
}
.home-v3-site-system__signal span:first-child { height: 18%; }
.home-v3-site-system__signal span:nth-child(2) { height: 42%; }
.home-v3-site-system__signal span:nth-child(3) { height: 72%; background: rgba(94, 166, 191, .4); }
.home-v3-site-system__signal span:nth-child(4) { height: 54%; }
.home-v3-site-system__signal span:last-child { height: 32%; }

.home-v3-module-list { margin-top: 68px; border-top: 1px solid var(--line); }
.home-v3-module-list article { position: relative; min-height: 132px; display: grid; grid-template-columns: 56px 1fr auto; align-items: center; gap: 22px; border-bottom: 1px solid var(--line); transition: background-color .2s ease; }
.home-v3-module-list .home-v3-module-icon { width: 44px; height: 44px; background: #15161b; border-color: var(--line); }
.home-v3-module-list .home-v3-module-icon svg { width: 19px; height: 19px; }
.home-v3-module-list article small { color: var(--indigo); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.home-v3-module-list article h3 { margin: 3px 0; font-size: 22px; }
.home-v3-module-list article p { margin: 0; color: var(--muted); font-size: 14px; }
.home-v3-module-list article.is-linked:hover { background: rgba(255, 255, 255, .016); }
.home-v3-module-list article.is-linked:hover h3,
.home-v3-module-list article.is-linked:hover .home-v3-module-list__arrow { color: #fff; }
.home-v3-module-list__link { position: absolute; z-index: 2; inset: 0; cursor: pointer; }
.home-v3-module-list__arrow { color: #777b86; font-size: 20px; transition: color .2s ease; }

.home-v3-journeys { background: #0b0c0f; }
.home-v3-journeys__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 60px; }
.home-v3-journey-card {
    min-width: 0;
    min-height: 352px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    background: #101116;
    color: var(--text) !important;
    text-decoration: none !important;
    transition: border-color .2s ease, background-color .2s ease;
}
.home-v3-journey-card:hover { border-color: rgba(138, 147, 231, .36); background: #121319; color: #fff !important; }
.home-v3-journey-card__head { display: flex; align-items: center; gap: 12px; }
.home-v3-journey-card__head .home-v3-module-icon { width: 38px; height: 38px; background: #171821; }
.home-v3-journey-card__head small { color: var(--indigo); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.home-v3-journey-card__title { display: block; margin-top: 24px; font-size: 22px; line-height: 1.22; letter-spacing: -.025em; }
.home-v3-journey-card__text { display: block; min-height: 66px; margin-top: 11px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.home-v3-journey-card__flow { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 24px; }
.home-v3-journey-card__flow::before { content: ""; position: absolute; top: 13px; right: 12%; left: 12%; height: 1px; background: var(--line-strong); }
.home-v3-journey-card__flow i { position: relative; z-index: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; color: #a9abb5; font-size: 10px; font-style: normal; text-align: center; }
.home-v3-journey-card__flow b { width: 27px; height: 27px; display: grid; place-content: center; align-self: center; border: 1px solid rgba(121, 132, 228, .3); border-radius: 50%; background: #14151c; color: #99a1ff; font-size: 8px; }
.home-v3-journey-card__result { display: flex; align-items: center; gap: 8px; margin-top: 22px; color: #88d9b5; font-size: 11px; font-weight: 600; }
.home-v3-journey-card__result i { width: 6px; height: 6px; border-radius: 50%; background: #79d4ae; box-shadow: 0 0 0 5px rgba(121, 212, 174, .07); }
.home-v3-journey-card__cta { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 22px; color: #d7d8dd; font-size: 12px; font-weight: 600; }
.home-v3-journey-card__cta i { color: #8c94ee; font-size: 15px; font-style: normal; }

.home-v3-team { background: #0b0c0f; }
.home-v3-access-card { padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: #111216; }
.home-v3-access-card__workspace { display: grid; grid-template-columns: 42px 1fr auto; gap: 13px; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.home-v3-access-card__workspace > span { width: 42px; height: 42px; display: grid; place-content: center; border: 1px solid rgba(124,135,225,.32); border-radius: 10px; background: rgba(94,106,210,.13); color: #cbd0ff; font-weight: 700; }
.home-v3-access-card__workspace small,
.home-v3-access-card__workspace strong { display: block; }
.home-v3-access-card__workspace small,
.home-v3-access-card > small { color: var(--muted); font-size: 10px; }
.home-v3-access-card__workspace b { padding: 5px 9px; border: 1px solid var(--line); border-radius: 7px; font-size: 10px; }
.home-v3-access-card > small { display: block; margin: 19px 0 7px; text-transform: uppercase; letter-spacing: .08em; }
.home-v3-access-card__permission { display: flex; justify-content: space-between; align-items: center; min-height: 48px; border-top: 1px solid var(--line); font-size: 13px; }
.home-v3-access-card__permission span { min-width: 110px; padding: 6px 9px; border: 1px solid var(--line); border-radius: 7px; background: #17181d; color: #adb0b8; text-align: center; font-size: 10px; }

.pricing-v3-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 14px;
    margin-top: 68px;
}

.pricing-v3-card {
    position: relative;
    min-width: 0;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #0d0e11;
}

.pricing-v3-card--featured {
    background: radial-gradient(circle at 50% 0, rgba(112, 116, 145, .12), transparent 38%), #101116;
}

.pricing-v3-card--featured::before {
    content: "";
    position: absolute;
    top: 0;
    right: 24px;
    left: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(166, 170, 203, .76), transparent);
}

.pricing-v3-card__meta {
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #747883;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.pricing-v3-card__meta small {
    padding: 5px 8px;
    border: 1px solid rgba(166, 170, 203, .2);
    border-radius: 999px;
    color: #c3c5d4;
    font-size: 9px;
    letter-spacing: .07em;
}

.pricing-v3-card h3 { margin: 26px 0 0; color: var(--ink); font-size: 26px; line-height: 1.1; letter-spacing: -.035em; }
.pricing-v3-card__subtitle { min-height: 62px; margin: 10px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.pricing-v3-card__price { min-height: 62px; display: flex; align-items: baseline; gap: 10px; margin-top: 23px; }
.pricing-v3-card__price strong { color: var(--ink); font-size: clamp(42px, 4vw, 54px); line-height: 1; letter-spacing: -.055em; font-weight: 600; }
.pricing-v3-card__price span { color: #858995; font-size: 12px; }
.pricing-v3-card__periods { min-height: 48px; display: grid; align-content: start; gap: 3px; margin-top: 8px; color: #737680; font-size: 10px; line-height: 1.45; }
.pricing-v3-card__highlights { display: grid; gap: 10px; margin: 24px 0 28px; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.pricing-v3-card__highlights li { position: relative; padding-left: 18px; color: #aaadb5; font-size: 12px; line-height: 1.45; }
.pricing-v3-card__highlights li::before { content: "✓"; position: absolute; left: 0; color: #d6d8df; font-size: 10px; }
.pricing-v3-card__action { min-height: 36px; display: inline-flex; align-items: center; justify-content: center; margin-top: auto; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; background: #15161a; color: #dddfe5 !important; font-size: 11px; font-weight: 600; text-align: center; transition: border-color .18s ease, background-color .18s ease, color .18s ease; }
.pricing-v3-card__action:hover { border-color: rgba(255,255,255,.18); background: #1a1b20; color: #fff !important; text-decoration: none; }
.pricing-v3-card--featured .pricing-v3-card__action { border-color: #f1f1f2; background: #f1f1f2; color: #17181c !important; }
.pricing-v3-card--featured .pricing-v3-card__action:hover { background: #fff; color: #17181c !important; }

@media (max-width: 900px) {
    .pricing-v3-summary { grid-template-columns: 1fr; }
    .pricing-v3-card { min-height: 0; }
    .pricing-v3-card__subtitle,
    .pricing-v3-card__periods { min-height: 0; }
}

@media (max-width: 680px) {
    .pricing-v3-summary { margin-top: 42px; }
    .pricing-v3-card { padding: 24px; }
    .pricing-v3-card__price strong { font-size: 44px; }
}

.home-v3.home-v3-reveal-ready [data-home-v3-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .62s cubic-bezier(.22, 1, .36, 1), transform .62s cubic-bezier(.22, 1, .36, 1);
}

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

.home-v3.home-v3-reveal-ready [data-home-v3-reveal] :where(
    .home-v3-system-map__core,
    .home-v3-system-map__connector,
    .home-v3-system-map__module,
    .home-v3-site-system__flow article,
    .home-v3-site-system__flow > i,
    .home-v3-site-system__signal,
    .home-v3-access-card__workspace,
    .home-v3-access-card__permission
) {
    opacity: 0;
    transform: translateY(7px);
    transition: opacity .48s ease, transform .48s cubic-bezier(.22, 1, .36, 1);
}

.home-v3.home-v3-reveal-ready [data-home-v3-reveal].is-visible :where(
    .home-v3-system-map__core,
    .home-v3-system-map__connector,
    .home-v3-system-map__module,
    .home-v3-site-system__flow article,
    .home-v3-site-system__flow > i,
    .home-v3-site-system__signal,
    .home-v3-access-card__workspace,
    .home-v3-access-card__permission
) {
    opacity: 1;
    transform: translateY(0);
}

.home-v3-system-map.is-visible .home-v3-system-map__core,
.home-v3-site-system.is-visible .home-v3-site-system__flow article:nth-of-type(1),
.home-v3-access-card.is-visible .home-v3-access-card__workspace { transition-delay: .08s; }
.home-v3-system-map.is-visible .home-v3-system-map__connector,
.home-v3-site-system.is-visible .home-v3-site-system__flow > i:first-of-type,
.home-v3-access-card.is-visible .home-v3-access-card__permission:nth-of-type(2) { transition-delay: .13s; }
.home-v3-system-map.is-visible .home-v3-system-map__module:nth-child(1),
.home-v3-site-system.is-visible .home-v3-site-system__flow article:nth-of-type(2),
.home-v3-access-card.is-visible .home-v3-access-card__permission:nth-of-type(3) { transition-delay: .18s; }
.home-v3-system-map.is-visible .home-v3-system-map__module:nth-child(2),
.home-v3-site-system.is-visible .home-v3-site-system__flow article:nth-of-type(3),
.home-v3-access-card.is-visible .home-v3-access-card__permission:nth-of-type(4) { transition-delay: .23s; }
.home-v3-system-map.is-visible .home-v3-system-map__module:nth-child(3),
.home-v3-site-system.is-visible .home-v3-site-system__signal { transition-delay: .28s; }
.home-v3-system-map.is-visible .home-v3-system-map__module:nth-child(4) { transition-delay: .33s; }
.home-v3-system-map.is-visible .home-v3-system-map__module:nth-child(5) { transition-delay: .38s; }

.home-v3-start ol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 56px 0 0; padding: 1px; background: var(--line); list-style: none; }
.home-v3-start li { min-height: 230px; padding: 28px; background: #0d0e11; }
.home-v3-start li > span { color: var(--indigo); font-size: 11px; font-weight: 700; }
.home-v3-start li h3 { margin: 64px 0 8px; font-size: 20px; }
.home-v3-start li p { margin: 0; color: var(--muted); font-size: 14px; }

.home-v3-final { padding: 100px 0; background: #0d0e11; color: #f3f3f4; }
.home-v3-final__inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 70px; }
.home-v3-final p { max-width: 760px; color: #a1a1a8; }
.home-v3-button--light { border-color: #fff; background: #fff; color: #171719 !important; }
.home-v3-button--light:hover { background: #e8e8ea; color: #171719 !important; }

@media (max-width: 900px) {
    .home-v3-header__inner { grid-template-columns: 1fr auto; }
    .home-v3-nav,
    .home-v3-header__login { display: none; }
    .home-v3-header__actions::before { display: none; }
    .home-v3-mobile-menu { display: block; }
    .home-v3-sites__grid,
    .home-v3-team__grid { grid-template-columns: 1fr; gap: 52px; }
    .home-v3-section-heading--split { grid-template-columns: 1fr; gap: 26px; }
    .home-v3-section-heading--split > p,
    .home-v3-section-heading--split > div:last-child p { padding-top: 0; }
    .home-v3-journeys__grid { grid-template-columns: 1fr; }
    .home-v3-journey-card { min-height: 300px; }
    .home-v3-system-map__canvas { grid-template-columns: minmax(230px, .72fr) 52px minmax(0, 1.28fr); padding: 22px; }
    .home-v3-system-map__module { min-height: 136px; padding: 14px; }
}

@media (max-width: 680px) {
    .home-v3-container { width: min(100% - 32px, 1180px); }
    .home-v3 main { padding-top: 62px; }
    .home-v3 [id] { scroll-margin-top: 78px; }
    .home-v3-header__inner { min-height: 62px; }
    .home-v3-brand img { width: 98px; }
    .home-v3-header__actions { gap: 10px; }
    .home-v3-header__actions > .home-v3-button { display: none; }
    .home-v3-hero { padding: 64px 0 54px; }
    .home-v3 h1 { font-size: clamp(40px, 11vw, 52px); }
    .home-v3-hero__lead { font-size: 18px; }
    .home-v3-hero__actions { align-items: flex-start; flex-direction: column; gap: 14px; }
    .home-v3-hero__copy { margin-bottom: 44px; }
    .home-v3-workbench { margin-right: 0; border-radius: 14px; }
    .home-v3-workbench__topbar { grid-template-columns: 1fr auto; }
    .home-v3-workbench__workspace { justify-self: end; }
    .home-v3-workbench__team { display: none; }
    .home-v3-screenshot--workspace { min-height: 290px; aspect-ratio: 4 / 3; }
    .home-v3-screenshot__placeholder { padding: 34px; }
    .home-v3-screenshot__placeholder::before { inset: 15px; border-radius: 9px; }
    .home-v3-module-icon { flex-basis: 30px; }
    .home-v3-sites,
    .home-v3-modules,
    .home-v3-journeys,
    .home-v3-team,
    .home-v3-pricing,
    .home-v3-start { padding: 78px 0; }
    .home-v3-section-heading h2,
    .home-v3-sites__copy h2,
    .home-v3-team__copy h2,
    .home-v3-final h2 { font-size: 39px; }
    .home-v3-section-heading > p:last-child,
    .home-v3-sites__copy > p,
    .home-v3-team__copy > p,
    .home-v3-final p { font-size: 16px; }
    .home-v3-system-map { border-radius: 16px; }
    .home-v3-system-map__topline { min-height: 52px; padding: 0 16px; }
    .home-v3-system-map__canvas { grid-template-columns: 1fr; padding: 16px; }
    .home-v3-system-map__core { min-height: 0; padding: 17px; }
    .home-v3-system-map__pulse { min-height: 76px; margin: 16px 0; }
    .home-v3-system-map__connector { width: 1px; height: 42px; justify-self: center; flex-direction: column; }
    .home-v3-system-map__connector i { width: 1px; height: auto; inset: 0; }
    .home-v3-system-map__connector span { width: 5px; height: 5px; }
    .home-v3-system-map__modules { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-v3-system-map__module,
    .home-v3-system-map__module--shop,
    .home-v3-system-map__module--booking { min-height: 112px; grid-column: span 1; }
    .home-v3-system-map__module p { display: none; }
    .home-v3-site-system__topline { align-items: flex-start; flex-direction: column; gap: 4px; padding: 14px 16px; }
    .home-v3-site-system__flow { grid-template-columns: 1fr; gap: 12px; padding: 20px 16px; }
    .home-v3-site-system__flow article { min-height: 116px; }
    .home-v3-site-system__flow > i { width: 1px; height: 16px; justify-self: center; }
    .home-v3-site-system__flow > i::after { top: auto; right: -2px; bottom: 0; }
    .home-v3-site-system__signal { height: 48px; }
    .home-v3-module-list { margin-top: 42px; }
    .home-v3-module-list article { min-height: 142px; grid-template-columns: 44px 1fr; gap: 15px; }
    .home-v3-module-list__arrow { display: none; }
    .home-v3-journeys__grid { margin-top: 42px; }
    .home-v3-journey-card { min-height: 0; padding: 22px; }
    .home-v3-journey-card__text { min-height: 0; }
    .home-v3-start ol { grid-template-columns: 1fr; }
    .home-v3-start li { min-height: 190px; }
    .home-v3-start li h3 { margin-top: 44px; }
    .home-v3-final { padding: 76px 0; }
    .home-v3-final__inner { grid-template-columns: 1fr; gap: 34px; }
    .home-v3-final__inner .home-v3-button { justify-self: start; }
}

@media (max-width: 420px) {
    .home-v3-system-map__topline small { display: none; }
    .home-v3-system-map__modules { grid-template-columns: 1fr; }
    .home-v3-system-map__module,
    .home-v3-system-map__module--shop,
    .home-v3-system-map__module--booking {
        min-height: 94px;
        grid-column: span 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-v3 *,
    .home-v3 *::before,
    .home-v3 *::after { scroll-behavior: auto !important; transition: none !important; }

    .home-v3 [data-home-v3-reveal],
    .home-v3 [data-home-v3-reveal] * {
        opacity: 1 !important;
        transform: none !important;
    }
}
