@charset "UTF-8";

@font-face {
    font-family: "Pretendard";
    src: url("../../assets/fonts/PretendardVariable.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #11172b;
    --muted: #626a7e;
    --line: #e4e7ef;
    --paper: #ffffff;
    --soft: #f6f7fb;
    --navy: #0b1024;
    --navy-2: #111935;
    --primary: #3454d1;
    --primary-light: #7589ee;
    --blue: #3577e8;
    --green: #22a67a;
    --container: 1180px;
    --shadow: 0 28px 80px rgba(7, 12, 35, 0.22);
}

* { box-sizing: border-box; }

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    word-break: keep-all;
}

.scroll-progress {
    position: fixed;
    z-index: 180;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    pointer-events: none;
}

.scroll-progress i {
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(90deg, #7b73ef, #64a6ff 72%, #7ed9bd);
    box-shadow: 0 0 16px rgba(118, 112, 238, .6);
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
}

button, a { -webkit-tap-highlight-color: transparent; }
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
svg { display: block; }

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    color: #fff;
    background: var(--primary);
    transform: translateY(-150%);
    transition: transform .2s ease;
}

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

:focus-visible {
    outline: 3px solid #93c5fd;
    outline-offset: 3px;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: 78px;
    border-bottom: 1px solid transparent;
    color: #fff;
    transition: height .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled,
.site-header.menu-open {
    height: 70px;
    color: var(--ink);
    border-color: rgba(17, 24, 39, .08);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 10px 36px rgba(12, 18, 40, .07);
    backdrop-filter: blur(18px);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: block;
    flex: none;
    border-radius: 8px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 14px;
    font-weight: 650;
}

.site-nav > a:not(.nav-cta) {
    position: relative;
    opacity: .78;
}

.site-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform .2s ease;
}

.site-nav > a:hover { opacity: 1; }
.site-nav > a:hover::after { transform: scaleX(1); }

.family-site {
    position: relative;
    display: flex;
    align-items: center;
}

.family-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 999px;
    color: inherit;
    background: rgba(255, 255, 255, .09);
    font: inherit;
    font-size: 12.5px;
    font-weight: 720;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.family-toggle:hover,
.family-toggle:focus-visible { border-color: rgba(255, 255, 255, .56); background: rgba(255, 255, 255, .16); transform: translateY(-1px); }

.scrolled .family-toggle,
.menu-open .family-toggle { color: var(--primary); border-color: #d6d3ff; background: #f3f2ff; }

.scrolled .family-toggle:hover,
.scrolled .family-toggle:focus-visible { border-color: #aaa5ff; background: #e9e7ff; }

.family-symbol {
    display: grid;
    grid-template-columns: repeat(2, 4px);
    gap: 2px;
    flex: none;
}

.family-symbol i { width: 4px; height: 4px; border-radius: 1px; background: currentColor; }

.family-caret {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .2s ease;
}

.family-toggle[aria-expanded="true"] .family-caret { transform: translateY(2px) rotate(-135deg); }

.family-list {
    position: absolute;
    z-index: 4;
    top: calc(100% + 20px);
    right: 0;
    display: none;
    width: 218px;
    margin: 0;
    padding: 8px;
    list-style: none;
    color: var(--ink);
    border: 1px solid rgba(17, 24, 39, .09);
    border-radius: 14px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 20px 52px rgba(8, 13, 36, .2);
    backdrop-filter: blur(18px);
}

.family-list.open { display: block; }

.family-list a,
.family-current,
.family-pending {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 42px;
    padding: 9px 12px;
    border-radius: 9px;
    font-size: 14px;
}

.family-list a:hover,
.family-list a:focus-visible { color: var(--primary); background: #f1f0ff; }

.family-current { color: var(--primary); background: #f1f0ff; font-weight: 750; }
.family-pending { color: var(--muted); }
.family-list i { padding: 2px 7px; border-radius: 999px; background: #eef0f5; font-size: 10px; font-style: normal; font-weight: 700; }
.family-current i { color: #fff; background: var(--primary); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 10px 16px 10px 19px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 8px;
    background: rgba(255, 255, 255, .09);
    transition: transform .2s ease, background .2s ease;
}

.scrolled .nav-cta,
.menu-open .nav-cta {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
}

.nav-cta:hover { transform: translateY(-2px); background: rgba(255,255,255,.16); }
.scrolled .nav-cta:hover { background: #4d46d3; }

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 0;
    background: none;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 2px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.hero {
    --pointer-x: 52%;
    --pointer-y: 28%;
    position: relative;
    display: flex;
    flex-direction: column;
    isolation: isolate;
    min-height: clamp(920px, calc(100svh - 70px), 1040px);
    overflow: hidden;
    padding: clamp(146px, 15vh, 176px) 0 0;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(255,255,255,.028) 1px, transparent 1px) 0 0 / 56px 56px,
        linear-gradient(30deg, #0a0e21 0%, #101733 56%, #111331 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(118, 105, 255, .23), transparent 25%),
        radial-gradient(circle at 48% 25%, rgba(92, 79, 215, .14), transparent 38%);
    transition: background-position .15s ease-out;
}

.hero-atmosphere {
    position: absolute;
    z-index: 0;
    inset: -25%;
    overflow: hidden;
    pointer-events: none;
}

.hero-atmosphere::before {
    content: "";
    position: absolute;
    width: 72%;
    aspect-ratio: 1;
    top: -18%;
    right: -12%;
    border-radius: 42%;
    background: conic-gradient(from 180deg, transparent, rgba(96, 82, 225, .08), transparent 34%, rgba(44, 122, 210, .07), transparent 70%);
    filter: blur(34px);
    animation: auroraDrift 18s ease-in-out infinite alternate;
}

.hero-atmosphere::after {
    content: "";
    position: absolute;
    width: 72%;
    height: 1px;
    top: 42%;
    left: 34%;
    background: linear-gradient(90deg, transparent, rgba(170, 165, 255, .22), transparent);
    box-shadow: 0 0 35px rgba(137, 128, 255, .16);
    transform: rotate(-27deg);
    animation: beamBreathe 8s ease-in-out infinite;
}

.hero-atmosphere span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(190, 199, 255, .56);
    box-shadow: 0 0 10px rgba(139, 145, 255, .62);
    animation: particleDrift 10s ease-in-out infinite alternate;
}

.hero-atmosphere span:nth-child(1) { top: 29%; left: 18%; animation-delay: -2s; }
.hero-atmosphere span:nth-child(2) { top: 20%; left: 63%; width: 2px; height: 2px; animation-delay: -5s; }
.hero-atmosphere span:nth-child(3) { top: 51%; left: 82%; animation-delay: -7s; }
.hero-atmosphere span:nth-child(4) { top: 68%; left: 11%; width: 2px; height: 2px; animation-delay: -3.5s; }
.hero-atmosphere span:nth-child(5) { top: 75%; left: 56%; animation-delay: -8s; }
.hero-atmosphere span:nth-child(6) { top: 37%; left: 43%; width: 2px; height: 2px; animation-delay: -1s; }

@keyframes auroraDrift {
    0% { transform: translate3d(-5%, -2%, 0) rotate(0deg) scale(.94); }
    100% { transform: translate3d(8%, 7%, 0) rotate(18deg) scale(1.08); }
}

@keyframes beamBreathe {
    0%, 100% { opacity: .2; transform: translate3d(-3%, 0, 0) rotate(-27deg); }
    50% { opacity: .75; transform: translate3d(5%, -14px, 0) rotate(-27deg); }
}

@keyframes particleDrift {
    0% { opacity: .18; transform: translate3d(-8px, 12px, 0) scale(.7); }
    100% { opacity: .9; transform: translate3d(18px, -24px, 0) scale(1.15); }
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.hero-glow-one {
    width: 430px;
    height: 430px;
    top: 64px;
    right: -120px;
    background: rgba(85, 74, 217, .13);
}

.hero-glow-two {
    width: 220px;
    height: 220px;
    bottom: 90px;
    left: -110px;
    background: rgba(40, 111, 203, .12);
}

.hero > .container { --container: 1280px; }
.hero .eyebrow { margin-bottom: 26px; font-size: 13px; }
.hero .eyebrow span { width: 30px; }
.hero .button { min-height: 56px; padding: 0 27px; font-size: 15px; }

.hero-grid {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(600px, 1.1fr);
    gap: clamp(40px, 4vw, 56px);
    align-items: center;
    padding-bottom: clamp(58px, 6vh, 78px);
}

.hero-copy {
    min-width: 0;
    max-width: 590px;
}

.eyebrow,
.kicker {
    margin: 0 0 22px;
    color: #675eea;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .16em;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a7a1ff;
}

.eyebrow span {
    width: 25px;
    height: 1px;
    background: #8e86ff;
}

.hero h1 {
    margin: 0;
    font-size: clamp(52px, 5.6vw, 88px);
    line-height: 1.13;
    letter-spacing: -.064em;
}

.hero h1 em {
    color: #a9a3ff;
    font-style: normal;
}

.hero-description {
    max-width: 640px;
    margin: 32px 0 0;
    color: #bdc3d5;
    font-size: 18.5px;
    line-height: 1.85;
    letter-spacing: -.015em;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-weight: 750;
    font-size: 14px;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

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

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, #655bea, #514ad7);
    box-shadow: 0 12px 30px rgba(83, 74, 218, .3);
}

.button-primary:hover { box-shadow: 0 15px 34px rgba(83, 74, 218, .4); }

.button-ghost {
    color: #e8eafd;
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .04);
}

.button-ghost:hover { background: rgba(255, 255, 255, .09); }

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 38px 0 0;
    padding: 0;
    color: #8f97ad;
    list-style: none;
    font-size: 13.5px;
}

.hero-facts li {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 11px 8px 9px;
    border: 1px solid rgba(169, 163, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
}
.hero-facts svg { width: 18px; fill: none; stroke: #8580f5; stroke-width: 2.4; }

.hero-product {
    position: relative;
    margin-right: 0;
    padding: 10px 0 52px;
}

.actual-window {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    background: #f4f5f8;
    box-shadow: 0 38px 90px rgba(3, 7, 26, .5), 0 0 0 1px rgba(255,255,255,.05) inset;
    transition: box-shadow .35s ease;
}

.actual-window::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--shine-x, 72%) var(--shine-y, 18%), rgba(255,255,255,.16), transparent 24%);
    mix-blend-mode: soft-light;
    opacity: var(--shine-opacity, .45);
    transition: opacity .3s ease;
}

.actual-window-bar {
    height: 42px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 0 14px;
    color: #71798d;
    border-bottom: 1px solid #e1e4eb;
    background: #fff;
    font-size: 9px;
}

.actual-window-bar strong {
    justify-self: center;
    color: #444b61;
    font-size: 9px;
}

.actual-window-bar small {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 5px;
    font-size: 8px;
}

.actual-window-bar small i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #26a779;
    box-shadow: 0 0 0 3px rgba(38,167,121,.12);
}

.actual-dots { display: flex; gap: 5px; }
.actual-dots i { width: 7px; height: 7px; border-radius: 50%; background: #d8dbe5; }
.actual-dots i:first-child { background: #f58585; }
.actual-dots i:nth-child(2) { background: #e8be67; }
.actual-dots i:nth-child(3) { background: #6ec18e; }
.actual-window > img { width: 100%; display: block; }

.actual-callout {
    position: absolute;
    z-index: 3;
    left: -25px;
    bottom: 10px;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 192px;
    padding: 12px 14px;
    color: #252b40;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 10px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 16px 38px rgba(4,10,30,.24);
    transition: box-shadow .3s ease;
}

.actual-callout > span {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    flex: none;
    color: #fff;
    border-radius: 8px;
    background: #3454d1;
    font-size: 11px;
    font-weight: 850;
}

.actual-callout div { display: flex; flex-direction: column; line-height: 1.45; }
.actual-callout small { color: #9197a8; font-size: 8px; }
.actual-callout strong { font-size: 10px; }

.product-window {
    overflow: hidden;
    min-height: 447px;
    color: #24283a;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 13px;
    background: #f7f8fc;
    box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.04) inset;
    transform: rotateY(-2deg) rotateX(.5deg);
}

.window-bar {
    height: 41px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    padding: 0 14px;
    color: #798096;
    border-bottom: 1px solid #e4e7ef;
    background: #fbfcff;
    font-size: 9px;
}

.window-dots { display: flex; gap: 5px; }
.window-dots span { width: 7px; height: 7px; border-radius: 50%; background: #d8dbe5; }
.window-dots span:first-child { background: #f58585; }
.window-dots span:nth-child(2) { background: #e8be67; }
.window-dots span:nth-child(3) { background: #6ec18e; }
.window-address { justify-self: center; min-width: 190px; padding: 5px 14px; border-radius: 5px; background: #f0f2f7; text-align: center; }
.lock-icon { margin-right: 5px; color: #56a17a; font-size: 6px; }
.window-user { justify-self: end; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #645be0; font-weight: 800; }

.app-toolbar {
    height: 57px;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 0 17px;
    border-bottom: 1px solid #e3e6ee;
    background: #fff;
}

.app-brand { display: flex; align-items: center; gap: 7px; font-size: 11px; }
.mini-mark { width: 23px; height: 23px; display: grid; place-items: center; border-radius: 6px; color: #fff; background: linear-gradient(135deg, #8b5cf6, #345de6); font-weight: 900; }
.toolbar-actions { display: flex; flex: 1; align-items: center; gap: 16px; color: #687087; font-size: 8px; }
.toolbar-actions > span { display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.toolbar-divider { width: 1px; height: 20px; background: #e5e7ed; }
.tool-icon { width: 13px; height: 15px; display: inline-grid; border: 1.5px solid #79839a; border-radius: 2px; }
.icon-file { border-color: #477be2; }
.icon-sheet { border-color: #36a26f; }
.icon-slide { border-color: #ef8c59; }
.icon-upload, .icon-send { height: 12px; border: 0; border-bottom: 1.5px solid #79839a; }
.search-dot { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 7px; background: #f2f3f8; }

.app-body { min-height: 348px; display: grid; grid-template-columns: 148px 1fr; }
.app-sidebar { padding: 20px 12px; border-right: 1px solid #e5e7ef; background: #fafbfe; }
.app-sidebar > p { margin: 0 10px 10px; color: #a0a6b6; font-size: 7px; font-weight: 800; letter-spacing: .12em; }
.side-item { width: 100%; display: flex; align-items: center; gap: 7px; padding: 9px; border: 0; border-radius: 6px; color: #6f7588; background: transparent; font-size: 9px; text-align: left; }
.side-item span { width: 12px; color: #8a90a2; }
.side-item b { margin-left: auto; font-size: 8px; }
.side-item i { margin-left: auto; width: 15px; height: 15px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #655ee2; font-size: 7px; font-style: normal; }
.side-item.active { color: #4e4ac2; background: #eeedfc; font-weight: 700; }
.side-item.active span { color: #5f59db; }
.storage-meter { margin: 76px 9px 0; }
.storage-meter div { display: flex; justify-content: space-between; color: #969cad; font-size: 7px; }
.storage-meter strong { color: #676f84; }
.storage-meter progress { width: 100%; height: 4px; overflow: hidden; border: 0; border-radius: 4px; accent-color: #635ce2; }

.file-panel { padding: 22px 20px; background: #fff; }
.file-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 21px; }
.file-heading div:first-child { font-size: 12px; font-weight: 800; }
.file-heading small { color: #9ca1b0; font-weight: 500; }
.view-buttons { display: flex; gap: 4px; }
.view-buttons button { width: 23px; height: 23px; display: grid; place-items: center; border: 1px solid #e5e7ed; border-radius: 4px; color: #858c9e; background: #fff; font-size: 10px; }
.file-labels, .file-row { display: grid; grid-template-columns: 1fr 82px 45px; align-items: center; }
.file-labels { padding: 0 12px 7px; color: #a2a7b5; border-bottom: 1px solid #eef0f5; font-size: 7px; }
.file-row { position: relative; min-height: 52px; grid-template-columns: 30px 1fr 82px 45px; padding: 0 12px; border-bottom: 1px solid #f0f1f5; font-size: 8px; }
.file-row.selected { margin: 4px 0; border: 0; border-radius: 6px; background: #f1f0fc; }
.file-row strong { overflow: hidden; color: #4c5266; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.file-row time, .file-row small { color: #999eac; }
.file-type { width: 22px; height: 26px; display: grid; place-items: center; border-radius: 3px; color: #fff; font-size: 8px; font-weight: 900; box-shadow: 0 3px 7px rgba(0,0,0,.09); }
.file-type.doc { background: #4278de; }
.file-type.xls { background: #2c9a69; }
.file-type.ppt { background: #e37145; }
.file-type.folder { color: #c69429; background: #f6c958; }

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    color: #21263a;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 11px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 18px 42px rgba(4, 10, 30, .25);
    backdrop-filter: blur(12px);
    animation: hover 5s ease-in-out infinite;
}

.approval-card { right: 26px; bottom: 3px; width: 252px; gap: 10px; padding: 13px 15px; }
.float-icon { width: 34px; height: 34px; display: grid; place-items: center; flex: none; border-radius: 9px; color: #fff; background: #635ce1; font-weight: 900; }
.floating-card div:nth-child(2) { display: flex; flex: 1; flex-direction: column; line-height: 1.4; }
.floating-card small { color: #969bab; font-size: 8px; }
.floating-card strong { font-size: 10px; }
.approval-card > span { align-self: flex-start; color: #a4a9b7; font-size: 7px; }
.sync-card { left: -24px; bottom: 41px; width: 190px; gap: 10px; padding: 12px 14px; animation-delay: -2.2s; }
.sync-ring { position: relative; width: 32px; height: 32px; flex: none; border: 3px solid #d7f4e9; border-radius: 50%; }
.sync-ring::after { content: "✓"; position: absolute; inset: 0; display: grid; place-items: center; color: #20a274; font-size: 12px; font-weight: 900; }

@keyframes hover {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

.hero-foot {
    position: relative;
    z-index: 2;
    flex: none;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin-top: 0;
    padding: 22px 30px;
    color: #858da7;
    border: 1px solid rgba(255, 255, 255, .09);
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
    background: rgba(255, 255, 255, .035);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-size: 10.5px;
    font-weight: 750;
    letter-spacing: .12em;
}

.hero-foot i { width: 3px; height: 3px; border-radius: 50%; background: #464f69; }

.section { padding: 126px 0; }
.intro { overflow: hidden; background: #fff; }

.section-heading { max-width: 660px; margin-bottom: 58px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2,
.tour-copy h2,
.cta-inner h2 {
    margin: 0;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.25;
    letter-spacing: -.055em;
}
.section-heading h2 span { color: #6f7689; }
.section-heading > p:last-child,
.tour-copy > p,
.cta-copy > p:not(.kicker):not(.copy-feedback) {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.value-item { position: relative; padding: 46px 42px 12px 0; }
.value-item + .value-item { padding-left: 42px; border-left: 1px solid var(--line); }
.value-number { position: absolute; top: 48px; right: 28px; color: #c1c5d0; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.value-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 15px; }
.value-icon svg { width: 26px; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.value-icon.purple { color: #635bea; background: #f0efff; }
.value-icon.purple svg { stroke: #635bea; }
.value-icon.blue { background: #eaf3ff; }
.value-icon.blue svg { stroke: #3978d9; }
.value-icon.green { background: #e8f8f1; }
.value-icon.green svg { stroke: #22936c; }
.value-item h3 { margin: 0 0 12px; font-size: 22px; letter-spacing: -.04em; }
.value-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }

.product-tour {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #11172f;
}

.product-tour::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    bottom: -250px;
    border-radius: 50%;
    background: rgba(85, 76, 216, .16);
    filter: blur(10px);
}

.tour-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 360px 1fr; gap: 82px; align-items: center; }
.kicker.light { color: #958eff; }
.tour-copy > p { color: #949bb0; font-size: 15px; }
.tour-tabs { margin-top: 42px; border-top: 1px solid rgba(255,255,255,.1); }
.tour-tab { position: relative; width: 100%; display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.1); color: #777f96; background: none; text-align: left; cursor: pointer; }
.tour-tab::before { content: ""; position: absolute; top: -1px; left: 0; width: 0; height: 2px; background: #8078ee; transition: width .25s ease; }
.tour-tab > span { margin-top: 3px; font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.tour-tab div { display: flex; flex-direction: column; }
.tour-tab strong { color: #a8aec0; font-size: 14px; }
.tour-tab small { margin-top: 4px; color: #6f778d; font-size: 11px; }
.tour-tab.active::before { width: 100%; box-shadow: 0 0 14px rgba(128,120,238,.55); }
.tour-tab.active.cycling::before { animation: tourProgress 6.2s linear both; }
.tour-grid.is-paused .tour-tab.active::before { animation-play-state: paused; }
.tour-tab.active > span { color: #aaa4ff; }
.tour-tab.active strong { color: #fff; }
.tour-tab.active small { color: #a7adbe; }

@keyframes tourProgress {
    from { width: 0; }
    to { width: 100%; }
}

.tour-stage { position: relative; min-width: 0; }
.tour-stage::before { content: ""; position: absolute; inset: 8% -8%; border-radius: 50%; background: rgba(100, 88, 232, .2); filter: blur(70px); }
.tour-screen { position: relative; z-index: 1; overflow: hidden; min-height: 452px; color: #33394d; border: 1px solid rgba(255,255,255,.14); border-radius: 11px; background: #f8f9fc; box-shadow: 0 36px 80px rgba(0,0,0,.32); }
.tour-screen.active { animation: screenIn .62s cubic-bezier(.18,.74,.2,1); transform-origin: 50% 58%; }

.actual-tour-screen { margin: 0; min-height: 0; }
.actual-screen-shot { aspect-ratio: 1400 / 860; overflow: hidden; background: #eef0f5; }
.actual-screen-shot img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: top center; }
.actual-screen-shot.contain img { object-fit: contain; }

@keyframes screenIn {
    from { opacity: 0; filter: blur(7px); transform: translate3d(0, 16px, 0) scale(.982); }
    to { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
}

.screen-top { height: 48px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; padding: 0 16px; border-bottom: 1px solid #e4e7ef; background: #fff; font-size: 10px; }
.screen-top > span { display: flex; gap: 5px; }
.screen-top i { width: 7px; height: 7px; border-radius: 50%; background: #d6d9e2; }
.screen-top i:first-child { background: #fa8d8d; }
.screen-top i:nth-child(2) { background: #ecc772; }
.screen-top i:nth-child(3) { background: #73c99a; }
.screen-top b { justify-self: center; }
.screen-top small { justify-self: end; color: #74a58e; }
.screen-content.split { min-height: 404px; display: grid; grid-template-columns: 170px 1fr; }
.screen-tree { padding: 28px 17px; border-right: 1px solid #e8eaf0; background: #f6f7fa; }
.screen-tree p { margin: 0 0 15px 8px; color: #a0a5b4; font-size: 8px; font-weight: 800; letter-spacing: .08em; }
.screen-tree span { display: block; margin: 3px 0; padding: 8px; color: #858b9d; border-radius: 5px; font-size: 9px; }
.screen-tree .current { color: #5450c3; background: #e9e8fa; font-weight: 750; }
.screen-list { padding: 26px 24px; background: #fff; }
.screen-actions { display: flex; gap: 7px; margin-bottom: 24px; }
.screen-actions button, .screen-actions label { min-height: 30px; padding: 0 10px; border: 1px solid #e2e5ed; border-radius: 5px; color: #777e91; background: #fff; font-size: 8px; }
.screen-actions button:first-child { color: #fff; border-color: #5f59d9; background: #5f59d9; }
.screen-actions label { display: flex; align-items: center; margin-left: auto; min-width: 100px; color: #a0a5b3; background: #f8f9fb; }
.large-file-row { min-height: 77px; display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 8px; border-top: 1px solid #edf0f4; }
.large-file-row > .file-type { width: 30px; height: 35px; font-size: 10px; }
.large-file-row > div { display: flex; flex-direction: column; }
.large-file-row strong { font-size: 10px; }
.large-file-row small { margin-top: 3px; color: #9da2b1; font-size: 8px; }
.status { padding: 4px 8px; border-radius: 4px; color: #7f85a0; background: #f1f2f6; font-size: 7px; }
.status.saved { color: #278661; background: #e9f7f1; }
.more { color: #969bad; font-size: 9px; letter-spacing: 2px; }

.approval-content { min-height: 404px; display: grid; grid-template-columns: 178px 1fr; padding: 28px; gap: 24px; background: #f5f6fa; }
.approval-summary { padding: 27px 22px; color: #fff; border-radius: 9px; background: linear-gradient(145deg, #655edf, #4b55c3); box-shadow: 0 16px 30px rgba(71,75,188,.2); }
.approval-summary p { margin: 0; color: #d2d0ff; font-size: 9px; }
.approval-summary strong { display: block; margin-top: 16px; font-size: 45px; line-height: 1; }
.approval-summary span { display: inline-block; margin-top: 85px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.2); color: #d9d8ff; font-size: 8px; }
.approval-list { overflow: hidden; border: 1px solid #e7e9ef; border-radius: 9px; background: #fff; }
.approval-list > div { min-height: 91px; display: grid; grid-template-columns: 35px 1fr 48px 40px; align-items: center; gap: 8px; padding: 0 14px; border-bottom: 1px solid #eef0f4; }
.approval-list > div:last-child { border: 0; }
.avatar { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: #fff; font-size: 9px; font-weight: 800; }
.avatar.violet { background: #7a6edc; }.avatar.cyan { background: #3faab5; }.avatar.amber { background: #d39544; }
.approval-list p { display: flex; flex-direction: column; margin: 0; }
.approval-list b { font-size: 9px; }.approval-list small { margin-top: 3px; color: #959baa; font-size: 8px; }
.approval-list time { color: #a5aab7; font-size: 7px; }
.approval-list button { padding: 5px; border: 1px solid #dddff0; border-radius: 4px; color: #5f59cf; background: #f6f5ff; font-size: 7px; }

.history-content { min-height: 404px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 16px; padding: 22px; background: #f5f6fa; }
.history-chart, .history-events { padding: 18px; border: 1px solid #e7e9ef; border-radius: 8px; background: #fff; }
.chart-head { display: flex; align-items: center; justify-content: space-between; }
.chart-head p, .history-events > p { margin: 0; font-size: 9px; font-weight: 800; }
.chart-head span { color: #9ba0af; font-size: 7px; }
.chart-head i { display: inline-block; width: 5px; height: 5px; margin: 0 3px; border-radius: 50%; background: #665edd; }
.chart-head i:last-child { background: #46b28c; }
.chart-bars { height: 250px; display: flex; align-items: flex-end; justify-content: space-around; padding-top: 25px; border-bottom: 1px solid #e8eaf0; background: repeating-linear-gradient(to bottom, transparent 0, transparent 49px, #eef0f4 50px); }
.chart-bars > span { position: relative; width: 28px; height: 100%; display: flex; align-items: flex-end; justify-content: center; gap: 3px; }
.chart-bars i, .chart-bars b { width: 9px; border-radius: 3px 3px 0 0; background: #675fdd; height: var(--open); }
.chart-bars b { height: var(--save); background: #55b893; }
.chart-bars small { position: absolute; bottom: -20px; color: #9da2b0; font-size: 7px; }
.history-events > p { margin-bottom: 16px; }
.history-events > div { display: flex; align-items: flex-start; gap: 8px; padding: 12px 0; border-top: 1px solid #eef0f4; }
.history-events i { width: 24px; height: 24px; display: grid; place-items: center; flex: none; border-radius: 6px; font-size: 8px; font-style: normal; }
.event-green { color: #238663; background: #e8f6f0; }.event-purple { color: #6059cb; background: #eeecfd; }
.history-events span { display: flex; flex: 1; flex-direction: column; min-width: 0; }
.history-events b { overflow: hidden; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }.history-events small { color: #a0a5b1; font-size: 6px; }
.history-events time { color: #a6abb8; font-size: 6px; }

.transfer { background: #fff; }
.transfer .section-heading { margin-bottom: 48px; }
.transfer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.transfer-card {
    min-height: 156px;
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: start;
    gap: 22px;
    padding: 30px;
    border: 1px solid #e2e5ed;
    border-radius: 12px;
    background: #f9fafc;
}
.transfer-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #6059d5;
    background: #ecebfc;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
}
.transfer-card h3 { margin: 1px 0 9px; font-size: 18px; letter-spacing: -.035em; }
.transfer-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.transfer-callout {
    grid-column: 1 / -1;
    min-height: 168px;
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
    padding: 34px 38px;
    overflow: hidden;
    color: #fff;
    border-radius: 12px;
    background: linear-gradient(135deg, #171d39, #2c3262);
}
.transfer-callout-tag { color: #a49dfc; font-size: 9px; font-weight: 850; letter-spacing: .11em; }
.transfer-callout h3 { margin: 0 0 8px; font-size: 21px; letter-spacing: -.04em; }
.transfer-callout p { max-width: 680px; margin: 0; color: #a9b0c5; font-size: 13px; line-height: 1.7; }
.transfer-callout-flow { display: flex; align-items: center; gap: 9px; white-space: nowrap; }
.transfer-callout-flow span { padding: 9px 11px; color: #d9dcf0; border: 1px solid rgba(255,255,255,.12); border-radius: 7px; background: rgba(255,255,255,.06); font-size: 9px; font-weight: 750; }
.transfer-callout-flow i { color: #7f87a8; font-size: 10px; font-style: normal; }
.transfer-card:nth-child(2), .transfer-card:nth-child(4) { transition-delay: .09s; }

.protect {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #11172f;
}

.protect::after {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    top: -270px;
    left: -190px;
    border-radius: 50%;
    background: rgba(85, 76, 216, .16);
    filter: blur(10px);
}

.protect .container { position: relative; z-index: 1; }
.protect .section-heading { margin-bottom: 48px; }
.protect .section-heading h2 span { color: #a49dfc; }
.protect .section-heading > p:last-child { color: #a9b0c5; }

.protect-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.protect-card {
    display: flex;
    flex-direction: column;
    padding: 34px 32px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
}
.protect-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 26px; border-radius: 15px; background: rgba(123, 113, 238, .17); }
.protect-icon svg { width: 26px; fill: none; stroke: #a49dfc; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.protect-card h3 { margin: 0 0 12px; font-size: 21px; line-height: 1.4; letter-spacing: -.04em; }
.protect-card > p { margin: 0 0 22px; color: #a2a9be; font-size: 13px; line-height: 1.8; }
.protect-card > p.protect-meta { margin: auto 0 0; padding-top: 16px; color: #8189a3; border-top: 1px solid rgba(255,255,255,.09); font-size: 10px; font-weight: 750; letter-spacing: .04em; }

.protect-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
    margin-top: 16px;
    padding: 32px 38px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
}
.protect-band-tag { color: #a49dfc; font-size: 9px; font-weight: 850; letter-spacing: .11em; }
.protect-band h3 { margin: 9px 0 8px; font-size: 21px; letter-spacing: -.04em; }
.protect-band p { max-width: 640px; margin: 0; color: #a9b0c5; font-size: 13px; line-height: 1.7; }
.protect-band-flow { display: flex; align-items: center; gap: 9px; white-space: nowrap; }
.protect-band-flow span { padding: 9px 11px; color: #d9dcf0; border: 1px solid rgba(255,255,255,.12); border-radius: 7px; background: rgba(255,255,255,.06); font-size: 9px; font-weight: 750; }
.protect-band-flow i { color: #7f87a8; font-size: 10px; font-style: normal; }

.features { background: #f6f7fb; }
.feature-layout { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: repeat(2, 320px); gap: 18px; }
.feature-layout article { position: relative; overflow: hidden; border: 1px solid #e3e6ee; border-radius: 12px; background: #fff; }
.feature-large { grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: space-between; padding: 48px; }
.feature-small { padding: 34px 38px; }
.feature-tag { display: inline-block; margin-bottom: 15px; color: #645dde; font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.feature-layout h3 { margin: 0; font-size: 29px; line-height: 1.35; letter-spacing: -.045em; }
.feature-layout p { max-width: 440px; margin: 16px 0 0; color: var(--muted); font-size: 13px; line-height: 1.8; }

.merge-visual { position: relative; height: 255px; margin-top: 42px; border-top: 1px solid #edf0f4; }

.feature-screenshot {
    overflow: hidden;
    height: 280px;
    margin-top: 35px;
    border: 1px solid #e1e4ec;
    border-radius: 9px;
    background: #eef0f5;
    box-shadow: 0 16px 30px rgba(17,23,43,.09);
}

.feature-screenshot img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: top center; }
.source-file { position: absolute; z-index: 2; display: flex; align-items: center; gap: 12px; padding: 13px; border: 1px solid #e1e4ec; border-radius: 8px; background: #fff; box-shadow: 0 12px 26px rgba(17,23,43,.08); }
.source-file > span { width: 30px; height: 34px; display: grid; place-items: center; border-radius: 4px; color: #fff; font-size: 10px; font-weight: 900; }
.source-file p { display: flex; flex-direction: column; margin: 0; }
.source-file b { font-size: 9px; }.source-file small { color: #a0a5b4; font-size: 7px; }
.source-doc { top: 30px; left: 0; }.source-doc > span { background: #3e79df; }
.source-xls { top: 109px; left: 48px; }.source-xls > span { background: #2b9b69; }
.merge-result { position: absolute; z-index: 2; right: 0; bottom: 22px; width: 210px; display: flex; align-items: center; gap: 13px; padding: 17px; border-radius: 9px; color: #fff; background: linear-gradient(145deg, #6259dc, #3d4bc2); box-shadow: 0 18px 38px rgba(64,69,188,.28); }
.merge-result > div { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.14); }
.merge-result p { display: flex; flex-direction: column; margin: 0; color: #fff; }.merge-result b { font-size: 10px; }.merge-result small { color: #cbcaff; font-size: 8px; }
.merge-lines { position: absolute; top: 55px; right: 95px; bottom: 55px; left: 138px; border: 1px dashed #c7c9e7; border-left: 0; border-radius: 0 80px 80px 0; }
.merge-lines i { position: absolute; top: -3px; right: -3px; width: 6px; height: 6px; border-radius: 50%; background: #736ce2; box-shadow: 0 0 0 5px rgba(115,108,226,.11); }

.orbit { position: absolute; width: 190px; height: 190px; top: -45px; right: -35px; border: 1px solid #deddf6; border-radius: 50%; background: radial-gradient(circle, #f1f0ff 0 34%, transparent 35%); }
.orbit::before, .orbit::after { content: ""; position: absolute; inset: 25px; border: 1px dashed #dedcf6; border-radius: 50%; animation: orbitSpin 18s linear infinite; }
.orbit::after { inset: 55px; border-style: solid; background: #5f58da; box-shadow: 0 12px 30px rgba(91,84,211,.25); animation: orbitPulse 3.4s ease-in-out infinite; }
.orbit b { position: absolute; z-index: 2; inset: 0; display: grid; place-items: center; color: #fff; font-size: 25px; }
.orbit span, .orbit i { position: absolute; z-index: 3; width: 9px; height: 9px; border-radius: 50%; background: #7972e4; }
.orbit span { top: 38px; left: 18px; }.orbit i { right: 34px; bottom: 17px; background: #54b992; }

@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes orbitPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 12px 30px rgba(91,84,211,.25); }
    50% { transform: scale(1.07); box-shadow: 0 16px 38px rgba(91,84,211,.38), 0 0 0 9px rgba(95,88,218,.06); }
}
.security-feature h3, .security-feature p, .security-feature .feature-tag { position: relative; z-index: 3; max-width: 310px; }
.security-feature h3 { font-size: 25px; }
.security-feature p { max-width: 330px; }

.operation-feature { color: #fff; background: #161c38 !important; }
.operation-feature::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, #161c38 0%, rgba(22, 28, 56, .97) 40%, rgba(22, 28, 56, .38) 100%);
}
.operation-thumb {
    position: absolute;
    z-index: 0;
    top: 0;
    right: -55px;
    width: 78%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: left top;
    opacity: .55;
}
.operation-feature .feature-tag { color: #9b95ff; }
.operation-feature p { color: #99a0b6; }
.operation-feature h3 { position: relative; z-index: 2; font-size: 25px; }
.operation-feature p, .operation-feature .feature-tag { position: relative; z-index: 2; max-width: 350px; }
.pulse-visual { position: absolute; right: -42px; bottom: -48px; width: 245px; height: 180px; transform: rotate(-8deg); }
.pulse-visual::before { content: ""; position: absolute; inset: 20px; border: 1px solid rgba(126,118,238,.25); border-radius: 50%; }
.pulse-visual span { position: absolute; inset: 52px; border: 1px solid rgba(126,118,238,.45); border-radius: 50%; }
.pulse-visual i { position: absolute; bottom: 0; width: 8px; border-radius: 4px 4px 0 0; background: linear-gradient(to top, #534fc8, #8b83ff); }
.pulse-visual i:nth-child(2) { left: 44px; height: 52px; }.pulse-visual i:nth-child(3) { left: 73px; height: 93px; }.pulse-visual i:nth-child(4) { left: 102px; height: 69px; }.pulse-visual i:nth-child(5) { left: 131px; height: 116px; }

.platform { overflow: hidden; background: #fff; }
.architecture { position: relative; min-height: 480px; display: grid; grid-template-columns: 190px 75px 280px 75px 190px; align-items: start; justify-content: center; padding-top: 48px; }
.arch-node, .arch-center { position: relative; z-index: 2; display: flex; align-items: center; gap: 16px; min-height: 96px; padding: 19px 18px; border: 1px solid #e1e4ed; border-radius: 10px; background: #fff; box-shadow: 0 12px 30px rgba(24,31,56,.07); }
.arch-node > div, .arch-center > div { display: flex; flex-direction: column; }
.arch-node b, .arch-center b { font-size: 13px; line-height: 1.45; }
.arch-node small, .arch-center small { margin-top: 4px; color: #9399aa; font-size: 9px; line-height: 1.5; }
.arch-icon { width: 38px; height: 38px; display: grid; place-items: center; flex: none; border-radius: 9px; color: #fff; background: #6470a1; font-size: 15px; font-weight: 850; }
.office .arch-icon { background: #4a80dc; }
.arch-center { min-height: 128px; margin-top: -16px; padding-inline: 24px; color: #fff; border: 0; background: linear-gradient(135deg, #5951d4, #353f9c); box-shadow: 0 20px 45px rgba(59,62,157,.27); }
.arch-brand {
    width: 45px;
    height: 45px;
    display: block;
    flex: none;
    border-radius: 11px;
    box-shadow: 0 8px 18px rgba(20, 18, 84, .25);
}
.arch-center b { font-size: 15px; }.arch-center small { color: #cacbf1; }
.arch-line { position: relative; height: 84px; }
.arch-line::before { content: ""; position: absolute; top: 42px; right: 0; left: 0; height: 1px; background: #cfd3df; }
.arch-line i { position: absolute; z-index: 2; top: 39px; left: 50%; width: 7px; height: 7px; border-radius: 50%; background: #766ee0; box-shadow: 0 0 0 5px #eeedfc; animation: signal 2.4s ease-in-out infinite; }
.arch-line:nth-of-type(2) i { animation-delay: -1.2s; }

@keyframes signal {
    0% { transform: translateX(-30px); opacity: 0; }
    30%, 70% { opacity: 1; }
    100% { transform: translateX(30px); opacity: 0; }
}

.arch-branches { position: absolute; top: 230px; left: 50%; width: 690px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; transform: translateX(-50%); }
.arch-branches > span { position: absolute; top: -82px; right: 112px; left: 112px; height: 82px; border: 1px solid #d7dae4; border-bottom: 0; }
.arch-branches > span::before { content: ""; position: absolute; top: -52px; left: 50%; height: 52px; border-left: 1px solid #d7dae4; }
.arch-branches > div { position: relative; z-index: 2; min-height: 132px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px 14px; border: 1px solid #e2e5ed; border-radius: 9px; background: #fafbfc; text-align: center; }
.arch-branches i { width: 34px; height: 34px; display: grid; place-items: center; margin-bottom: 8px; border-radius: 8px; color: #fff; font-size: 9px; font-style: normal; font-weight: 850; }
.db-icon { background: #4d73bf; }.redis-icon { background: #d14f55; }.clock-icon { background: #7468d3; }
.arch-branches b { font-size: 11px; line-height: 1.45; }.arch-branches small { margin-top: 4px; color: #969cad; font-size: 9px; line-height: 1.5; }
.architecture:not(.visible) .arch-line i { animation-play-state: paused; }
.architecture.visible .arch-center { animation: architectureCore 3.2s ease-in-out 1s infinite; }
.architecture.visible .arch-branches > div { animation: architectureNodeIn .7s cubic-bezier(.18,.75,.2,1) both; }
.architecture.visible .arch-branches > div:nth-of-type(2) { animation-delay: .12s; }
.architecture.visible .arch-branches > div:nth-of-type(3) { animation-delay: .24s; }

@keyframes architectureCore {
    0%, 100% { box-shadow: 0 20px 45px rgba(59,62,157,.27); }
    50% { box-shadow: 0 24px 60px rgba(75,69,199,.39), 0 0 0 8px rgba(91,81,212,.045); }
}

@keyframes architectureNodeIn {
    from { opacity: 0; transform: translate3d(0, 16px, 0) scale(.97); }
    to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
.platform-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 18px; background: #e4e7ee; border: 1px solid #e4e7ee; }
.platform-notes p { display: flex; flex-direction: column; gap: 2px; margin: 0; padding: 23px 28px; background: #fff; }
.platform-notes strong { font-size: 11px; }.platform-notes span { color: #8f95a6; font-size: 10px; }

.cta-section { padding: 0 24px 24px; background: #fff; }
.cta-inner { position: relative; width: min(100%, 1380px); overflow: hidden; padding: 118px 88px 34px; color: #fff; border-radius: 16px; background: #11172f; }
.cta-inner::before, .cta-inner::after { content: ""; position: absolute; border: 1px solid rgba(139,130,255,.12); border-radius: 50%; }
.cta-inner::before { width: 500px; height: 500px; top: -310px; left: -50px; }
.cta-inner::after { width: 680px; height: 680px; right: -300px; bottom: -510px; }
.cta-orb { position: absolute; top: -180px; left: 18%; width: 480px; height: 480px; border-radius: 50%; background: rgba(87,76,218,.24); filter: blur(70px); }
.cta-inner > *:not(.cta-orb) { position: relative; z-index: 2; }
.cta-inner > .cta-orb { position: absolute; z-index: 1; }
.cta-content { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); align-items: center; gap: 82px; }
.cta-copy { max-width: 600px; }
.cta-inner h2 span { color: #a49dfc; }
.cta-copy > p:not(.kicker):not(.copy-feedback) { max-width: 570px; color: #a8afc2; line-height: 1.8; }
.cta-actions { justify-content: flex-start; }
.button-white { color: #272b42; background: #fff; }
.button-outline { color: #e4e6f0; border-color: rgba(255,255,255,.2); background: transparent; }
.button-outline:hover { background: rgba(255,255,255,.08); }
.copy-feedback { min-height: 24px; margin: 12px 0 0; color: #9dddc7; font-size: 12px; }

.cta-proof { overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 15px; background: rgba(255,255,255,.065); box-shadow: 0 30px 70px rgba(3,7,24,.22); backdrop-filter: blur(12px); }
.cta-proof-head { display: flex; align-items: center; gap: 13px; padding: 21px 22px; border-bottom: 1px solid rgba(255,255,255,.1); }
.cta-proof-head img { width: 42px; height: 42px; flex: none; border-radius: 10px; }
.cta-proof-head > div { display: flex; flex: 1; flex-direction: column; line-height: 1.45; }
.cta-proof-head small { color: #989fbc; font-size: 9px; letter-spacing: .04em; }
.cta-proof-head strong { font-size: 15px; }
.cta-proof-head > span { color: #8f88f8; font-size: 12px; font-weight: 850; }
.cta-points { margin: 0; padding: 6px 22px; list-style: none; }
.cta-points li { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.085); }
.cta-points li > span { width: 31px; height: 31px; display: grid; place-items: center; flex: none; border-radius: 8px; color: #b7b2ff; background: rgba(123,113,238,.13); font-size: 9px; font-weight: 850; }
.cta-points li > div { display: flex; flex-direction: column; line-height: 1.5; }
.cta-points strong { font-size: 12px; }
.cta-points small { color: #9299b2; font-size: 9px; }
.cta-contact { display: flex; align-items: center; justify-content: space-between; margin: 9px; padding: 15px 15px 15px 17px; border-radius: 9px; color: #191d34; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.cta-contact:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(3,7,24,.2); }
.cta-contact > span { display: flex; flex-direction: column; }
.cta-contact small { color: #777d90; font-size: 8px; }
.cta-contact strong { font-size: 11px; }
.cta-contact b { font-size: 15px; }
.cta-stack { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 48px; padding-top: 25px; color: #6f7794; border-top: 1px solid rgba(255,255,255,.09); font-size: 9px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.cta-stack i { width: 3px; height: 3px; border-radius: 50%; background: #4f5673; }

.site-footer { padding: 46px 0; color: #7d8496; background: #0c1125; }
.footer-inner { display: flex; align-items: center; }
.footer-brand { color: #fff; }.footer-brand .brand-mark { width: 30px; height: 30px; }
.footer-inner p { margin: 0 0 0 35px; font-size: 11px; }
.footer-meta { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.footer-inner small { font-size: 10px; }
.footer-legal { color: #687087; font-size: 10px; transition: color .2s ease; }
.footer-legal:hover, .footer-legal:focus-visible { color: #c5cada; }

[data-reveal] {
    opacity: 0;
    filter: blur(7px);
    transform: translate3d(0, 28px, 0);
    transition: opacity .75s ease, filter .75s ease, transform .8s cubic-bezier(.18,.76,.2,1);
}

[data-reveal].visible { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0); }
.value-item:nth-child(2), .feature-layout article:nth-child(2), .protect-card:nth-child(2) { transition-delay: .09s; }
.value-item:nth-child(3), .feature-layout article:nth-child(3), .protect-card:nth-child(3) { transition-delay: .18s; }

.hero-copy:not(.visible) > * { opacity: 0; transform: translate3d(0, 18px, 0); }
.hero-copy.visible > * { animation: heroItemIn .82s cubic-bezier(.16,.78,.2,1) backwards; }
.hero-copy.visible > :nth-child(1) { animation-delay: .08s; }
.hero-copy.visible > :nth-child(2) { animation-delay: .16s; }
.hero-copy.visible > :nth-child(3) { animation-delay: .27s; }
.hero-copy.visible > :nth-child(4) { animation-delay: .38s; }
.hero-copy.visible > :nth-child(5) { animation-delay: .48s; }
.hero-product.visible .actual-window { animation: productSettle 1.05s cubic-bezier(.16,.78,.2,1) .14s backwards; }
.hero-product.visible .actual-callout { animation: calloutSettle .72s cubic-bezier(.16,.78,.2,1) .62s backwards; }

.hero h1 em {
    background: linear-gradient(100deg, #aaa4ff 12%, #d6d3ff 48%, #8ea8ff 76%, #aaa4ff 100%) 0 0 / 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: headlineLight 8s ease-in-out infinite;
}

.actual-callout > span { position: relative; }
.actual-callout > span::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(89,111,234,.34);
    border-radius: 11px;
    animation: calloutPulse 2.8s ease-out infinite;
}

@keyframes heroItemIn {
    from { opacity: 0; transform: translate3d(0, 20px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes productSettle {
    from { opacity: 0; transform: perspective(1200px) translate3d(72px, 18px, 0) rotateX(2deg) rotateY(-8deg) scale(.96); }
}

@keyframes calloutSettle {
    from { opacity: 0; transform: translate3d(-24px, 16px, 36px) scale(.92); }
}

@keyframes headlineLight {
    0%, 20%, 100% { background-position: 0% 50%; }
    55%, 75% { background-position: 100% 50%; }
}

@keyframes calloutPulse {
    0% { opacity: .65; transform: scale(.9); }
    70%, 100% { opacity: 0; transform: scale(1.28); }
}

.motion-card {
    --card-x: 50%;
    --card-y: 50%;
    --card-rx: 0deg;
    --card-ry: 0deg;
    --card-lift: 0px;
    transform-style: preserve-3d;
}

.motion-card::before {
    content: "";
    position: absolute;
    z-index: 6;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(300px circle at var(--card-x) var(--card-y), rgba(255,255,255,.2), transparent 58%);
    opacity: 0;
    transition: opacity .35s ease;
}

.motion-card[data-reveal].visible {
    transform: perspective(1100px) translate3d(0, var(--card-lift), 0) rotateX(var(--card-rx)) rotateY(var(--card-ry));
}

.motion-card.is-hovered {
    --card-lift: -4px;
    filter: drop-shadow(0 18px 26px rgba(18, 24, 53, .12));
    transition: transform .18s cubic-bezier(.2,.72,.2,1), filter .3s ease;
    will-change: transform;
}

.motion-card.is-hovered::before { opacity: 1; }
.protect-card.motion-card::before,
.operation-feature.motion-card::before,
.cta-proof.motion-card::before { background: radial-gradient(320px circle at var(--card-x) var(--card-y), rgba(151,144,255,.13), transparent 60%); }

.button.motion-magnetic {
    --magnet-x: 0px;
    --magnet-y: 0px;
    transform: translate3d(var(--magnet-x), var(--magnet-y), 0);
    will-change: transform;
}

.button.motion-magnetic:hover { transform: translate3d(var(--magnet-x), calc(var(--magnet-y) - 2px), 0); }

@media (max-width: 1120px) {
    .site-nav { gap: 18px; font-size: 13px; }
    .hero { min-height: auto; }
    .hero-grid { grid-template-columns: .95fr 1.05fr; gap: 40px; }
    .hero-product { margin-right: 0; }
    .product-window { transform: scale(.92); transform-origin: left center; }
    .floating-card { transform: scale(.92); }
    .sync-card { left: -8px; }
    .tour-grid { grid-template-columns: 315px 1fr; gap: 45px; }
    .architecture { grid-template-columns: 170px 50px 250px 50px 170px; }
}

@media (max-width: 900px) {
    .site-header { height: 70px; }
    .menu-button { display: block; }
    .menu-button[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
    .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
    .site-nav { position: absolute; top: 69px; right: 0; left: 0; display: none; align-items: stretch; gap: 0; padding: 12px 24px 24px; color: var(--ink); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.98); box-shadow: 0 18px 28px rgba(17,23,43,.08); }
    .site-nav.open { display: flex; flex-direction: column; }
    .site-nav > a { padding: 13px 0; }
    .site-nav > a::after { display: none; }
    .site-nav .nav-cta { justify-content: center; padding: 11px 16px; color: #fff; background: var(--primary); }
    .family-site { display: block; }
    .family-toggle { width: 100%; justify-content: flex-start; margin: 5px 0 10px; padding: 0 14px; color: var(--primary); border-color: #d6d3ff; background: #f3f2ff; }
    .family-caret { margin-left: auto; }
    .family-list { position: static; width: 100%; margin: 0 0 10px; border-color: var(--line); background: var(--surface); box-shadow: none; }

    .hero { padding-top: 130px; }
    .hero-grid { grid-template-columns: minmax(0, 1fr); }
    .hero-copy { max-width: min(680px, 100%); }
    .hero-product { width: min(760px, 100%); margin: 25px 0 0; }
    .actual-window { transform: none; }
    .product-window { transform: none; }
    .hero-foot { margin-top: 20px; }

    .section { padding: 94px 0; }
    .tour-grid { grid-template-columns: 1fr; }
    .tour-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 0 45px; align-items: start; }
    .tour-copy .kicker, .tour-copy h2, .tour-copy > p { grid-column: 1; }
    .tour-tabs { grid-column: 2; grid-row: 1 / span 4; margin-top: 0; }

    .feature-layout { grid-template-columns: 1fr 1fr; grid-template-rows: 540px 330px; }
    .feature-large { grid-column: 1 / 3; grid-row: 1; }

    .transfer-callout { grid-template-columns: 130px minmax(0, 1fr); gap: 22px; }
    .transfer-callout-flow { grid-column: 2; }

    .protect-card { padding: 28px 22px; }
    .protect-card h3 br { display: none; }
    .protect-band { grid-template-columns: minmax(0, 1fr); align-items: start; gap: 22px; padding: 30px 26px; }

    .cta-inner { padding-inline: 58px; }
    .cta-content { grid-template-columns: 1fr; gap: 48px; }
    .cta-copy { max-width: 680px; }
    .cta-proof { width: min(100%, 610px); }

    .architecture { grid-template-columns: 150px 40px 230px 40px 150px; transform: scale(.9); transform-origin: top center; }
    .platform-notes { margin-top: -20px; }
}

@media (max-width: 700px) {
    .container { width: min(calc(100% - 32px), var(--container)); }
    .hero { padding: 124px 0 32px; }
    .hero h1 { font-size: 48px; }
    .hero-description { font-size: 15px; }
    .hero-product { width: 100%; margin: 28px 0 0; padding-bottom: 38px; transform: none; }
    .actual-callout { left: 10px; bottom: 4px; }
    .approval-card { right: 30px; }
    .hero-foot { flex-wrap: wrap; gap: 8px 12px; overflow: visible; justify-content: flex-start; white-space: normal; line-height: 1.4; }

    .section-heading h2, .tour-copy h2, .cta-inner h2 { font-size: 36px; }
    .section-heading > p:last-child, .tour-copy > p, .cta-copy > p:not(.kicker):not(.copy-feedback) { font-size: 15px; }
    .value-grid { grid-template-columns: 1fr; }
    .value-item { padding: 34px 15px 34px 0; border-bottom: 1px solid var(--line); }
    .value-item + .value-item { padding-left: 0; border-left: 0; }

    .tour-copy { display: block; }
    .tour-tabs { margin-top: 30px; }
    .tour-tab { padding: 18px 0; }
    .tour-screen { min-height: 390px; }
    .actual-tour-screen { min-height: 0; }
    .actual-screen-shot { aspect-ratio: 1400 / 860; }
    .screen-content.split { min-height: 342px; grid-template-columns: 115px 1fr; }
    .screen-tree { padding: 20px 9px; }
    .screen-list { padding: 18px 12px; }
    .screen-actions label { display: none; }
    .large-file-row { min-height: 68px; }
    .large-file-row > div strong { max-width: 155px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .approval-content { min-height: 342px; grid-template-columns: 105px 1fr; padding: 18px 12px; gap: 10px; }
    .approval-summary { padding: 20px 12px; }.approval-summary span { margin-top: 70px; }
    .approval-list > div { grid-template-columns: 28px 1fr 34px; padding: 0 8px; }
    .approval-list time { display: none; }.approval-list button { grid-column: 3; }
    .history-content { min-height: 342px; grid-template-columns: 1fr; }
    .history-chart { min-height: 295px; }.history-events { display: none; }
    .chart-bars { height: 220px; }

    .transfer-grid { grid-template-columns: 1fr; gap: 12px; }
    .transfer-card { min-height: 0; }
    .transfer-callout { grid-column: auto; grid-template-columns: 1fr; gap: 16px; }
    .transfer-callout-flow { grid-column: auto; white-space: normal; }

    .protect-grid { grid-template-columns: 1fr; gap: 12px; }
    .protect-card { padding: 30px 26px; }
    .protect-band-flow { flex-wrap: wrap; white-space: normal; }

    .feature-layout { display: block; }
    .feature-layout article { min-height: 350px; margin-bottom: 14px; }
    .feature-large { padding: 32px 26px; min-height: 620px !important; }
    .feature-small { padding: 30px 26px; }
    .merge-result { width: 190px; }

    .architecture { min-height: 620px; display: flex; flex-direction: column; align-items: stretch; gap: 24px; padding: 0 30px; transform: none; }
    .arch-node, .arch-center { width: 100%; margin: 0; }
    .arch-line { display: none; }
    .arch-center { order: -1; }
    .arch-branches { position: relative; top: auto; left: auto; width: 100%; grid-template-columns: 1fr; gap: 8px; transform: none; }
    .arch-branches > span { display: none; }
    .arch-branches > div { min-height: 85px; flex-direction: row; justify-content: flex-start; gap: 12px; text-align: left; }
    .arch-branches i { margin: 0; }
    .platform-notes { grid-template-columns: 1fr; margin-top: 32px; }

    .cta-section { padding: 0; }
    .cta-inner { padding: 72px 20px 28px; border-radius: 0; }
    .cta-actions { flex-direction: column; align-items: stretch; }
    .cta-content { gap: 38px; }
    .cta-proof { width: 100%; }
    .cta-stack { flex-wrap: wrap; gap: 12px; margin-top: 34px; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .footer-inner p, .footer-inner small { margin: 0; }
    .footer-meta { flex-direction: column; align-items: flex-start; gap: 7px; margin: 5px 0 0; }
}

@media (max-width: 430px) {
    .hero h1 { font-size: 41px; }
    .button { width: 100%; }
    .hero-facts { display: grid; grid-template-columns: 1fr 1fr; }
    .hero-product { margin-top: 20px; margin-bottom: 0; }
    .actual-window-bar { grid-template-columns: 1fr auto 1fr; }
    .actual-window-bar small { display: none; }
    .actual-callout { left: 8px; bottom: 5px; transform: scale(.9); transform-origin: bottom left; }
    .floating-card { animation: none; }
    .section { padding: 70px 0; }
    .section-heading { margin-bottom: 42px; }
    .section-heading h2, .tour-copy h2, .cta-inner h2 { font-size: 32px; }
    .tour-stage { margin-inline: -7px; }
    .actual-tour-screen { min-height: 0; }
    .screen-tree { display: none; }
    .screen-content.split { grid-template-columns: 1fr; }
    .approval-summary { display: none; }
    .approval-content { grid-template-columns: 1fr; }
    .feature-layout h3 { font-size: 25px; }
    .protect-card { padding: 26px 22px; }
    .protect-icon { width: 46px; height: 46px; margin-bottom: 20px; border-radius: 13px; }
    .protect-card h3, .protect-band h3 { font-size: 19px; }
    .protect-band { padding: 26px 22px; }
    .transfer-card { grid-template-columns: 42px 1fr; gap: 16px; padding: 25px 22px; }
    .transfer-number { width: 42px; height: 42px; }
    .transfer-callout { padding: 28px 24px; }
    .transfer-callout-flow { flex-wrap: wrap; }
    .source-xls { left: 16px; }
    .merge-lines { left: 100px; }
    .merge-result { right: -8px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
    .motion-card[data-reveal].visible, .actual-window, .actual-callout { filter: none; transform: none; }
}
