@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

* {box-sizing: border-box;}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-family: 'Noto Sans KR', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    word-break: keep-all;
    overflow-wrap: anywhere;
}

ul, li {list-style: none;}

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

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

:root {
    --bg: #ffffff;
    --ink: #0f1c39;
    --muted: #64748b;
    --line: rgba(15, 23, 42, .10);

    --brand0: #74aee8;
    --brand: #1a70cc;
    --brand2: #0d5db3;
    --brand3: #093d75;

    --brand-glass: rgba(14, 46, 124, 0.1);

    --glass: rgba(251, 251, 251, 0.3);
    --glass-line: rgba(15, 23, 42, .08);

    --radius: 14px;
    --shadow: 0 10px 30px rgba(15, 23, 42, .08);
    --shadow-soft: 0 8px 22px rgba(15, 23, 42, .10);

    --header-h: 80px;

    --grad: linear-gradient(90deg, #3ecbfa, #49be57);
    --grad2: linear-gradient(90deg, #adf6f0, #3283ff);
    --grad3: linear-gradient(90deg, #6eb6e4, #0f49b5);
    --g0: #3ecbfa;
    --g1: #49be57;
}

.text-highlight0 {color: var(--brand0);}
.text-highlight {color: var(--brand);}
.text-highlight2 {color: var(--brand2);}
.text-highlight-gr {color: #525a67;}
.text-highlight-gr2 {color: #3f4655;}
.text-highlight-gr3 {color: #212732;}
.text-highlight-w {color: #fff;}
.text-highlight-g {color: #49be57;}
.text-highlight-m {color: #10B981;}
.text-highlight-r {color: #ff6464;}

.sec--brand {background: var(--brand3);}
.sec--muted {background: #37404E;}
.sec--tint {background: rgba(15, 23, 42, .03);}
.sec--soft {background: #f7f7f7;}
.sec--dark {
    background: radial-gradient(1200px 800px at 20% 20%, rgba(0, 122, 255, .14), transparent 55%),
    radial-gradient(1000px 700px at 80% 40%, rgba(26, 83, 225, .12), transparent 55%),
    #0b1220;
    color: #fff;
}


nav ul {
    padding: 0;
    list-style: none;
}

nav ul li {
    display: inline;
}

main {
    min-height: 60vh;
}

picture, picture > img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}


/* Header */
.site-header {
    position: fixed;
    width: 100vw;
    top: 0;
    z-index: 1000;
    padding: 0 14px;

    height: var(--header-h);
    display: flex;
    align-items: center;

    background: transparent;

    transition: all .2s ease;
}

.site-header.is-scrolled {
    background: #fff;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--glass-line);
}

.header-inner {
    width: min(1200px, 100%);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.header-inner img {
    width: 200px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
    user-select: none;
}

.gnb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.gnb-item {
    position: relative;
}

.gnb-link {
    appearance: none;
    border: 0;
    background: transparent;
    cursor: pointer;

    height: 44px;
    padding: 0 14px;
    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;

    color: var(--ink);
    text-decoration: none;

    transition: all .2s ease;
}

.login {
    background-color: #495068;
    border-radius: 999px;
    padding: 0 15px;
    color: #fff;
    white-space: nowrap;
}

.gnb-link:hover, .dropdown-item:hover {
    color: var(--brand0);
}

.gnb-link:active {
    transform: translateY(1px);
}

.gnb-link:focus-visible {
    outline: 3px solid rgba(37, 99, 235, .28);
    outline-offset: 2px;
}

.gnb-link.cta {
    background: rgba(37, 99, 235, .12);
    color: var(--brand2);
}

.gnb-link.cta:hover {
    background: rgba(37, 99, 235, .18);
}

.gnb-item.login .gnb-link, .gnb-item.login .gnb-link:hover {
    color: #fff
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 18px);

    min-width: 240px;
    padding: 14px;

    background: white;

    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);

    opacity: 0;
    visibility: hidden;
    left: auto;
    transform: translateX(-50%) translateY(-6px);
    transition: all .2s ease;
}

.dropdown-item {
    display: flex;
    align-items: center;

    min-height: 48px;
    padding: 8px 14px;
    border-radius: 14px;

    color: var(--ink);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;

    transition: all .15s ease;
}

.dropdown-panel .dropdown-item + .dropdown-item {
    margin-top: 6px;
}

.dropdown.open .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-header .gnb-list > .gnb-item {
    display: block;
    min-width: 0;
    text-align: center;
}

.site-header .gnb-list > .gnb-item > .gnb-link {
    width: 100%;
    justify-content: center;
}

.site-header .dropdown-panel {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-6px);
    max-width: min(360px, calc(100vw - 24px));
}


.site-header .dropdown.open .dropdown-panel {
    transform: translateX(-50%) translateY(0);
}

.site-header .gnb-link:hover {
    color: var(--brand2);
}

.site-header .dropdown-item:hover {
    color: var(--brand2);
    background: var(--brand-glass);
}


/* mobile menu */
.mnav-toggle {
    display: none;
    width: 28px;
    height: 20px;

    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;

    position: relative;
    margin-left: 30px;
}

.mnav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0f172a;
    transition: all .2s ease;
}

.mnav-toggle span:nth-child(1) {
    top: 0;
}

.mnav-toggle span:nth-child(2) {
    top: 9px;
}

.mnav-toggle span:nth-child(3) {
    top: 18px;
}

.mnav-toggle[aria-expanded="true"] span {
    opacity: 0;
}

.mnav-bar {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
    border-radius: 2px;
    opacity: .92;
}

.mnav, .m-menu {
    display: none;
}

.mnav.is-open {
    display: block;
}

.mnav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(2px);
    z-index: 1100;
}

.mnav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 360px);
    height: 100vh;
    background: rgba(15, 23, 42, .92);
    border-left: 1px solid rgba(255, 255, 255, .12);
    z-index: 1110;
    transform: translateX(100%);
    transition: all .2s ease;
    display: flex;
    flex-direction: column;
}

.mnav.is-open .mnav-panel {
    transform: translateX(0);
}

.mnav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.mnav-brand {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .04em;
}

.mnav-close {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    cursor: pointer;
}

.mnav-body {
    padding: 10px 10px 18px;
    overflow: auto;
}

.mnav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mnav-item, .mnav-link {
    border-radius: 14px;
    overflow: hidden;
    box-sizing: border-box;
}

.mnav-item + .mnav-item, .mnav-link + .mnav-link {
    margin-top: 10px;
}

.mnav-acc {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    font-size: 17px;
}
.mnav-item .mnav-acc {
    border-bottom: none;
}
.mnav-chevron {
    opacity: .85;
}

.mnav-sub {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, .14);
    border-left: 1px solid rgba(255, 255, 255, .10);
    border-right: 1px solid rgba(255, 255, 255, .10);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    transition: all .2s ease;
}

.mnav-item.open .mnav-sub {
    max-height: 400px;
}

.mnav-sub a {
    display: block;
    padding: 12px 14px;
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.mnav-link a {
    display: block;
    padding: 14px 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}


/* footer */
footer.site-footer {
    background: linear-gradient(180deg, rgba(15, 23, 42, .96), rgba(15, 23, 42, .90));
    color: rgba(255, 255, 255, .86);
    padding: 50px 0;
    text-align: left;
}

.site-footer .footCnt {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px 22px;
    align-items: start;
}

.site-footer address {
    margin: 0;
    font-style: normal;
    display: grid;
    gap: 8px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .78);
}

.site-footer address span:first-child {
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
}

.site-footer a {
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.site-footer .privacy {
    justify-self: end;
    align-self: start;

    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 14px;
    border-radius: 999px;

    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    font-weight: 800;
}

.site-footer .privacy:hover {
    background: rgba(255, 255, 255, .14);
}

.site-footer .copy {
    grid-column: 1 / -1;
    margin: 6px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .60);
}


/* Back to Top */
.btn-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;

    width: 46px;
    height: 46px;
    border-radius: 999px;

    display: grid;
    place-items: center;

    background: rgba(15, 23, 42, .9);
    color: #fff;
    font-size: 18px;
    font-weight: 900;

    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .35);

    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);

    transition: all .2s ease;
}

.btn-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-top:hover {
    background: rgba(0, 122, 255, .95);
}


/* main */
.main-section {
    padding: 150px 0;
}

.main-hero-title {
    font-size: 60px;
    font-weight: 900;
    line-height: 130%;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

.resources {
    padding: 3rem 0;
}

#service .main-title {
    color: var(--ink)
}

.hero {
    height: 1000px;
}

.hero, #highlights, #solutions, #service {
    position: relative;
    align-items: center;
    overflow: hidden;
}

.bg {
    position: absolute;
    height: 100vh;
    overflow: hidden;
    transform: scale(1.03);
}

.hero .bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 200px 0 300px;
    color: var(--ink);
    display: flex;
    align-items: center;
}

.hero-eyebrow {
    margin: 0 0 14px;
    letter-spacing: .18em;
    font-size: 30px;
    font-weight: 700;
    opacity: .9;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}


.hero-desc {
    margin: 40px 0;
    color: #37404E;
    font-size: 20px;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .62));
    pointer-events: none;
}


.hero-grid {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.hero-title {
    margin: 0 0 14px;
    font-size: clamp(34px, 4.6vw, 56px);
    line-height: 1.06;
    text-shadow: 0 18px 50px rgba(0, 0, 0, .35);
}

.up-tit {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}

/* CTA */
.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.hero-btn {
    height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: -0.01em;
    border: 1px solid rgba(255, 255, 255, .22);
    transition: transform .14s ease, box-shadow .14s ease, background .14s ease, border-color .14s ease;
}

.hero-btn--primary {
    color: #fff;
    background: rgba(0, 122, 255, .92);
    border-color: rgba(0, 122, 255, .35);
    box-shadow: 0 18px 46px rgba(0, 122, 255, .24);
}

.hero-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 60px rgba(0, 122, 255, .28);
}

.hero-btn--ghost {
    color: #fff;
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
}

.hero-btn--ghost:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .32);
}

/* chips */
.hero-chips, .pills {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 8px;
    display: inline-grid;
}


.hero-chips > li {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, .20);
    color: rgba(255, 255, 255, .80);
    font-size: 20px;
    font-weight: 600;
    backdrop-filter: blur(10px);

    text-align: center;
    white-space: nowrap;
}

.pills {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    flex-wrap: wrap;
    font-size: 12px;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 8px;
    display: inline-grid;
}

.pills li {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(15, 23, 42, .12);
    box-shadow: 0 10px 26px rgba(15, 23, 42, .08);
    font-weight: 600;
    backdrop-filter: blur(10px);

    text-align: center;
    white-space: nowrap;
    font-size: 14px;
}

.oa-hero .pills li {
    background: rgba(191, 196, 213, 0.4);
}


.hero-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    font-weight: 900;
    font-size: 13px;
    color: rgba(255, 255, 255, .92);
}

.hero-kpi__t {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
}

.hero-kpi__v {
    margin-top: 6px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, .92);
}

.hero-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    align-items: start;
    padding: 12px;
    border-radius: 16px;
    background: rgba(11, 18, 32, .22);
    border: 1px solid rgba(255, 255, 255, .14);
}

.hero-ico {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: radial-gradient(12px 12px at 30% 30%, rgba(255, 255, 255, .30), transparent 60%),
    linear-gradient(90deg, rgba(62, 203, 250, .55), rgba(73, 190, 87, .40));
    box-shadow: 0 18px 40px rgba(62, 203, 250, .12);
}

.hero-item__t {
    font-weight: 950;
    color: rgba(255, 255, 255, .94);
    letter-spacing: -0.02em;
}

.hero-item__d {
    margin-top: 4px;
    font-size: 13px;
    color: rgba(255, 255, 255, .74);
    line-height: 1.45;
}

.hero-copy {
    animation: heroIn .7s ease both;
}

.hero-glass {
    animation-delay: .08s;
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-glass:hover {
    transform: translateY(-2px);
    transition: transform .18s ease;
}

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

.card {
    display: block;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .2);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .3s ease;
}

.card:hover {
    border: 1px solid rgba(29, 48, 69, 0.5);
}

.main-page .card:hover img {
    transform: scale(110%);
}

.card-media {
    overflow: hidden;
    height: 300px;
}

.card-media img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all .3s ease;
}


.card-body {
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-title {
    margin: 0 0 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, .2);
    font-size: 28px;
    letter-spacing: -0.02em;
}

.badge {
    color: var(--brand2);
    font-weight: 800;
}

.card-desc {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.card-link {
    margin-top: 6px;
    font-weight: 800;
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-link:hover {
    color: var(--brand);
}

.feature {
    display: grid;
    grid-template-columns:1.1fr .9fr;
    gap: 18px;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.feature-media img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.feature-body {
    padding: 22px;
}

.feature-kicker {
    margin: 0 0 10px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.feature-desc {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 18px;
}



.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 20px;
    margin-right: 20px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .06);
    color: var(--ink);
    font-weight: 800;
    transition: all .2s ease;
}

.btn.primary {
    background: rgba(0, 122, 255, .95);
    color: #fff;
    border-color: rgba(0, 122, 255, .25);
    box-shadow: 0 16px 32px rgba(0, 122, 255, .18);
}

.btn.ghost {
    background: rgba(255, 255, 255, .06);
}


.btn:hover {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 12px 22px rgba(0, 122, 255, .10);
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, .28);
}

.btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.site-footer {
    padding: 28px 0;
    border-top: 1px solid rgba(15, 23, 42, .08);
    background: #fff;
}

.site-footer .footer-inner {
    margin: 0 auto;
    color: var(--muted);
    font-size: 14px;
}


#solutions {
    background: radial-gradient(1200px 800px at 20% 20%, rgba(0, 122, 255, .14), transparent 55%),
    radial-gradient(1000px 700px at 80% 40%, rgba(26, 83, 225, .12), transparent 55%),
    #0b1220;
    color: #fff;
    padding: 8rem 0 3rem;
}

#solutions::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60vh;
    pointer-events: none;

    background: radial-gradient(
            900px 600px at 80% 85%,
            rgba(0, 122, 255, .20),
            transparent 60%
    ),
    radial-gradient(
            700px 520px at 95% 95%,
            rgba(26, 83, 225, .18),
            transparent 60%
    );
}


#solutions .solutions-page {
    display: flex;
    align-items: center;
    padding: clamp(60px, 10vw, 120px) 0;
}

#solutions .solutions-shell {
    width: 100%;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(18px, 4vw, 40px);
    align-items: center;
    padding: 0;
}


.title1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.04em;
}


.desc {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
    line-height: 1.7;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

#solutions .solutions-cta {
    gap: 10px;
    margin-bottom: 14px;
}

#solutions .solutions-cta .btn {
    text-align: center;
    white-space: nowrap;
}

#solutions .solutions-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.solutions-pills li {
    text-align: center;
    list-style: none;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    font-weight: 700;
}


/* Visual */
.solution-head .section-title-s {
    color: #fff;
}

#solutions .solutions-visual {
    position: relative;
    transform: translateZ(0);
}

#solutions .solutions-visual img {
    width: 100%;
    /*height: min(520px, 60vh);*/
    object-fit: contain;
    display: block;
    transform: scale(1.02);
}

#solutions .solutions-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

#solutions .solutions-glass-card {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 14px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

#solutions .gc-title {
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

#solutions .gc-desc {
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 600;
}


/* service */
.service-section {
    display: flex;
    align-items: center;
    padding: clamp(100px, 15vh, 150px) 0;
}

.solution-head .section-title-s,
#service .section-title-s. {
    line-height: 1.3;
}

.service-head {
    margin-bottom: clamp(20px, 3vw, 30px);
}

.kicker, .mv-kicker {
    margin: 0 0 10px;
    letter-spacing: .2em;
    font-weight: 800;
    opacity: .85;
    font-size: 18px;

    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.kicker::before {
    content: "";
    width: 1.1em;
    height: 3px;
    border-radius: 999px;
    background: var(--brand0);
}

.service-content {
    margin: 30px 5px 40px;
}


/* CONTACT CTA */
.contact-cta {
    position: relative;
    padding: 120px 0;
    color: #fff;
    overflow: hidden;
}

.contact-cta .contact-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            rgba(15, 23, 42, .72),
            rgba(15, 23, 42, .72)
    ),
    url("/assets/img/main_bg02.jpg") center / cover no-repeat;
    z-index: 0;
}


.contact-cta .container {
    position: relative;
    z-index: 1;
}

.container.wrap > .btn {
    width: 200px;
}

.wide-letter {
    letter-spacing: 2px;
}

h1, h2 {
    margin: 0;
}

.section-head {
    margin-bottom: 3rem;
}

.section-head--light .section-title {
    color: #fff;
}


.contact-cta .cta-row {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


.btn-ghost {
    background: rgba(15, 23, 42, .04);
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, .18);
    transition: all .2s ease;
}

.btn-ghost:hover {
    background: rgba(0, 122, 255, .06);
    border-color: rgba(0, 122, 255, .35);
    color: #007aff;
}

.btn-ghost-dark {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
    transition: all .2s ease;
}

.btn-ghost-dark:hover {
    background: rgba(255, 255, 255, .18);
}


/** ===== solutions ===== **/
.mv-hero {
    background: #ecf0f3;
    position: relative;
    overflow: hidden;
    padding: clamp(140px, 15vw, 160px) 0 clamp(120px, 14vw, 140px);
}

.fl-hero {
    padding: clamp(140px, 15vw, 160px) 0 clamp(120px, 14vw, 140px);
}

.mv-shell {
    margin: 0 auto;
}

.mv-customer {
    width: 100%;
    padding: 100px 0 120px;
}

.mv-desc {
    padding: 10px;
    color: var(--muted);
    font-size: 17px;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.mv-shell.reverse {
    grid-template-columns: 1.1fr .9fr;
}

.mv-title {
    margin: 0 0 12px;
    font-size: 4rem;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.mv-lead {
    margin: 0 30px 30px 0;
    line-height: 1.75;
    font-size: 17px;
}

.mv-hero-cta {
    margin-bottom: 14px;
}

.mv-pills {
    gap: 8px;
    margin: 0;
    font-size: 18px;

    list-style: none;
    padding: 0;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    display: inline-grid;
}

.mv-pills img {
    object-fit: contain;
    height: 16px;
}

.mv-pills li, .mv-pill {
    list-style: none;
    padding: 8px 12px;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    background: rgba(15, 23, 42, .04);
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, .18);
    transition: all .2s ease;
    white-space: nowrap;
}

.mv-section {
    padding: clamp(80px, 10vw, 100px) 0;
}

#mv_expected {
    padding: 3rem 0;
    background: #f7f7f7;
}

.mv-head {
    margin: 2rem;
}

.mv-sec-title {
    font-size: 46px;
    font-weight: 700;
}

.mv-split {
    display: grid;
    grid-template-columns:1.2fr .8fr;
    gap: clamp(16px, 4vw, 36px);
    align-items: center;

}

.mv-split2 {
    display: grid;
    grid-template-columns:.8fr 1.2fr;
    gap: clamp(20px, 5vw, 36px);
    align-items: center;
}

.mv-split2 img {
    width: 90%;
    margin: auto
}

.mv-split-reverse {
    grid-template-columns:.95fr 1.05fr;
}

.mv-media, .fl-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mv-media img {
    width: 70%;
    height: min(520px, 60vh);
    object-fit: contain;
    display: block;
}

.fl-media img {
    width: 100%;
    object-fit: contain;
    display: block;
}

.mv-h2 {
    margin: 0 0 10px;
    font-size: 36px;
    letter-spacing: -.02em;
}

p {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.8;
}

.mv-muted {
    margin: 0;
    font-size: 14px;
}

#main-feature .mv-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
    scroll-padding: 0;
    -webkit-overflow-scrolling: auto;
    scrollbar-width: auto;
}

#main-feature .mv-track::-webkit-scrollbar {
    display: initial;
}

#main-feature .mv-track > :nth-child(7) {
    grid-column: 2;
}


.mv-track::-webkit-scrollbar {
    display: initial;
}

.mv-track > :nth-child(7) {
    grid-column: 2;
}

.mv-slide-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-left: 10px;
    margin-bottom: 8px;
}

.mv-slide-top .slide-title {
    font-size: 28px;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

#mv_expected .mv-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding-bottom: 6px;
}

#mv_expected .mv-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: #bee2ff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .20);
    opacity: .75;
    cursor: pointer;
    transition: transform .18s ease, opacity .18s ease, width .18s ease, background .18s ease;
}

#mv_expected .mv-dot.is-on {
    width: 22px;
    opacity: 1;
    background: #0f49b5;
    border-color: rgba(255, 255, 255, .35);
}


#mv_expected .mv-parallax {
    position: relative;
}

#mv_expected .mv-parallax {
    position: relative;
    --mv-slide-w: min(860px, 84vw);
    --mv-gap: 18px;
}

#mv_expected .mv-track {
    display: flex;
    gap: var(--mv-gap);
    overflow: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;

    padding: 10px 0 22px;
}

#mv_expected .mv-track::-webkit-scrollbar {
    display: none;
}

#mv_expected .mv-track::before,
#mv_expected .mv-track::after {
    content: "";
    flex: 0 0 calc((100% - var(--mv-slide-w)) / 2);
}

#mv_expected .mv-slide {
    flex: 0 0 var(--mv-slide-w);

    display: flex;
    gap: 30px;
    padding: 30px;
    min-height: 360px;

    transform: scale(.96);
    opacity: .78;

    margin: 0 auto;
    scroll-snap-align: center;

    border-radius: 22px;
    background: #fff;
    border: 1px solid #788895;

    overflow: hidden;
    transition: all .2s ease;
}

#mv_expected .mv-slide.is-active {
    transform: scale(1);
    opacity: 1;
    border-color: rgba(0, 122, 255, .3);
    box-shadow: 0 10px 20px rgba(15, 23, 42, .14);
}

#mv_expected .mv-slide > img {
    flex: 0 0 220px;
    width: 40%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, .08);
    background: rgba(15, 23, 42, .03);
}

#mv_expected .mv-slide > div {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}


.mv-sbtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: var(--brand2);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .12);
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
}

.mv-sbtn.prev {
    left: -60px;
}

.mv-sbtn.next {
    right: -60px;
}

.carrier-title {
    margin: clamp(18px, 3vh, 30px);
    padding: clamp(7px, 1.6vw, 10px) clamp(10px, 3vw, 14px);
    border-radius: 999px;
    text-align: center;
    font-weight: 800;

    background: rgba(213, 213, 213, 0.3);
    color: var(--brand3);
    border: 1px solid rgba(156, 156, 156, 0.3);

    font-size: 28px;
    line-height: 1.2;
    max-width: min(92vw, 520px);
}

.mv-figure {
    height: 90vh;
    margin: 5% 10%;
    overflow: hidden;
    background: #fff;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.mv-figure img {
    width: 100%;
    height: 60%;
    object-fit: contain;
    object-position: center;
    background: transparent;
    padding: 20px;
    display: block;
    border: 1px solid rgba(15, 23, 42, .18);
    border-radius: 20px;
}

.mv-chart {
    margin: 0;
    background-color: #f5f5f5;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Technology Profiles */
#mv-profiles {
    background-color: #ecf0f3;
}

#mv-profiles .section-title {
    line-height: .8;
    font-weight: 800;
}

#mv-profiles .mv-profile-grid {
    list-style: none;
    margin: clamp(20px, 2vh, 30px) 0;
    padding: 0;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

#mv-profiles .mv-profile {
    position: relative;
    border-radius: 18px;
    overflow: hidden;

    background: #fff;
    border: 1px solid rgba(15, 23, 42, .10);

    box-shadow: 0 12px 36px rgba(15, 23, 42, .12);
    transition: all .2s ease;
    isolation: isolate;
}

#mv-profiles .mv-profile img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;

    background: rgba(15, 23, 42, .03);

    transform: scale(1);
    transition: all .3s ease;
}

#mv-profiles .mv-profile > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    padding: 14px 14px;
    background: #fff;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

#mv-profiles .mv-profile span {
    font-weight: 900;
    font-size: 14px;
    color: #0f172a;
    letter-spacing: -.01em;
    line-height: 1.2;
}

.mv-cta-block {
    display: grid;
    grid-template-columns:1fr auto;
    gap: 16px;
    align-items: center;
    padding: clamp(18px, 2.8vw, 26px);
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, .08);
    background-color: var(--brand-glass);
}

.mv-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.mv-rbtn {
    height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 1px solid rgba(15, 23, 42, .12);
    background: #fff;
    transition: all .2s ease;
    color: #0b1220;
}

.mv-rbtn.primary {
    background: rgba(0, 122, 255, .92);
    border-color: rgba(0, 122, 255, .24);
    box-shadow: 0 14px 30px rgba(0, 122, 255, .18);
    color: #fff;
}

.mv-rbtn:hover {
    transform: translateY(-1px);
    border-color: rgba(15, 23, 42, .18);
}

.mv-customer-view {
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 12px 36px rgba(15, 23, 42, .12);
    padding: 14px;
}

.mv-tabbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.mv-tablist {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 4px;
    margin: 0;
}

.mv-tab {
    height: 40px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(15, 23, 42, .04);
    font-weight: 500;
    font-size: 18px;
    color: #0b1220;
    cursor: pointer;
}

.mv-tab.is-on {
    background: rgba(0, 122, 255, .12);
    border-color: rgba(0, 122, 255, .25);
    color: #007aff;
}

.mv-tab-nav {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.mv-idx {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, .12);
    background: rgba(255, 255, 255, .75);
    font-weight: 900;
    font-size: 18px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all .2s ease;
}

.mv-idx:hover {
    background: rgba(0, 122, 255, .12);
    border-color: rgba(0, 122, 255, .45);
    color: #007aff;
}

.mv-customer-stage {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .55);
    overflow: hidden;
}

.mv-customer-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    padding: 14px 18px;
    background: #fff;
}


/** ===== mvshield ===== **/
#mvshield {
    position: relative;
    padding-top: clamp(140px, 15vw, 160px);
    overflow: hidden;
    background: #ecf0f3;
}

#hero-mvshield {
    padding-bottom: clamp(100px, 10vh, 120px);
}

#mvshield .hero-wrap {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(18px, 4vw, 44px);
    align-items: center;
}

#mvshield .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand2);
    background: rgba(0, 122, 255, .10);
    border: 1px solid rgba(0, 122, 255, .18);
}

#mvshield .hero-title {
    margin: 14px 0 12px;
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: var(--ink);
}

.hero-title-accent {
    font-weight: 700;
    background: linear-gradient(90deg, #3ecbfa, #49be57);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-title-accent2 {
    font-weight: 700;
    background: linear-gradient(90deg, #6eb6e4, #0f49b5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-title-accent3 {
    font-weight: 700;
    background: linear-gradient(90deg, #adf6f0, #3283ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


#mvshield .hero-sub {
    margin: 40px 0 14px;
    max-width: 80ch;
    color: #455785;
    font-size: 17px;
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

#mvshield .hero-points {
    margin: 0 0 18px;
    padding: 0;
    display: grid;
    gap: 8px;
    color: rgba(15, 23, 42, .86);
    font-weight: 700;
    font-size: 13.5px;
}

#mvshield .hero-points li {
    display: flex;
    align-items: center;
    gap: 10px;
}

#mvshield .hero-points li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(0, 122, 255, .85);
    box-shadow: 0 10px 24px rgba(0, 122, 255, .18);
}

#mvshield .hero-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

#mvshield .btn {
    height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    border: 1px solid rgba(15, 23, 42, .12);
    transition: all .2s ease;
    text-decoration: none;
}

.logo-btn {
    padding: 1rem;
}

.logo-btn img {
    width: 100px;
}

#mvshield .hero-visual {
    position: relative;
    min-height: min(520px, 62vh);
}

#mvshield .hero-glow {
    position: absolute;
    inset: -60px -40px -40px -40px;
    background: radial-gradient(closest-side at 30% 30%, rgba(0, 122, 255, .26), transparent 60%),
    radial-gradient(closest-side at 70% 45%, rgba(26, 83, 225, .18), transparent 62%);
    filter: blur(12px);
    opacity: .9;
    pointer-events: none;
}

#mvshield .hero-card {
    position: relative;
}

#mvshield .hero-card img {
    width: 100%;
    height: min(520px, 62vh);
    object-fit: contain;
    display: block;
    transform: scale(1.02);
}


/* case */
#mv-cases {
    position: relative;
    padding: clamp(100px, 15vh, 150px) 0;
    overflow: hidden;
    background-color: #fff;

}

#mv-cases .mv-cases-wrap {
    position: relative;
    z-index: 1;
}

#mv-cases .mv-cases-head {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

#mv-cases .mv-cases-kicker {
    margin: 0;
    font-weight: 900;
    letter-spacing: .18em;
    font-size: 12.5px;
    opacity: .75;
}

#mv-cases .mv-cases-title {
    margin: 0 0 clamp(50px, 6vh, 70px);
    font-size: clamp(30px, 46px, 46px);
    line-height: 1.12;
    letter-spacing: -0.04em;
    color: var(--ink);
}

#mv-cases .mv-cases-sub {
    margin: 0;
    max-width: 72ch;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

/* grid */
#mv-cases .mv-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 14px;
}

/* card */
#mv-cases .mv-case {
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 12px 36px rgba(15, 23, 42, .10);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 180px;
}


/* media */
#mv-cases .mv-case-media {
    position: relative;
    padding: 14px 14px 0 14px;
    background: radial-gradient(320px 220px at 10% 20%, rgba(0, 122, 255, .14), transparent 62%),
    #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

#mv-cases .mv-case-media img {
    width: 100%;
    height: 100%;
    max-height: 170px;
    object-fit: contain;
    display: block;
}

#mv-cases .mv-case-body {
    padding: 22px 18px;
    display: grid;
    gap: 12px;
}

#mv-cases .mv-case-eyebrow {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    color: rgb(57, 198, 23);
}

#mv-cases .mv-case-title {
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.03em;
    font-weight: 500;
    color: var(--ink);
}

#mv-cases .mv-case-title strong {
    font-size: 24px;
}

.watermark {
    position: absolute;
    right: -10px;
    bottom: -46px;
    font-weight: 900;
    letter-spacing: -0.04em;
    font-size: clamp(280px, 30vh, 300px);
    color: rgba(0, 122, 255, .09);
    pointer-events: none;
    user-select: none;
}

.watermark-gr {
    color: red;
}

/* responsive */
#about-mvshield {
    padding: clamp(100px, 13vh, 120px) 0;
    align-items: center;

    text-align: center;
}

#about-mvshield img {
    height: auto;
    margin-top: 3rem;
    display: block;
    border-radius: 22px;
}

#about-mvshield .about-content .basic {
    font-size: 20px;
    font-weight: 500;
    margin: 30px 0 5px;
}

#about-mvshield .about-content .accent {
    display: inline-block;
    padding: 4px 12px;
    margin: 0 4px;
    font-size: 26px;
    font-weight: 900;
    color: var(--brand3);
    background: rgba(0, 122, 255, .10);
    vertical-align: baseline;
}


/* ===== OS Support ===== */
#os-support {
    padding: 70px 0;
    background: #f7f7f7;
}

#os-support .head {
    font-size: 30px;
    font-weight: 600;
}

#os-support .support-title {
    margin-left: 2rem;
}

.wrap {
    width: min(1200px, calc(100% - 28px));
    margin: 0 auto;
}

#os-support .head {
    text-align: center;
    margin-bottom: clamp(30px, 4vh, 40px);
}

#os-support .grid {
    display: grid;
    grid-template-columns: 2fr 3fr 2fr 2fr;
    gap: 12px;
}

#os-support .os {
    border-radius: 20px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 14px 36px rgba(15, 23, 42, .10);
    padding: 14px;
    display: grid;
    gap: 10px;
    align-content: start;
}

#os-support .logo {
    width: 85px;
    height: 85px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(15, 23, 42, .03);
    border: 1px solid rgba(15, 23, 42, .08);
}

#os-support .logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.os-centos .name {
    display: flex;
    justify-content: space-between;
    margin-left: 10px;
}

#os-support .name strong {
    display: block;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: rgba(15, 23, 42, .92);
}

#os-support .name span {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    font-weight: 800;
    color: rgba(15, 23, 42, .60);
}

#os-support .chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
}


#os-support .note {
    margin: 14px 2px 0;
    color: rgba(29, 39, 60, 0.62);
    font-size: 14px;
    font-weight: 600;
}

#os-support .grid.four {
    grid-template-columns: 1fr 1.3fr 1fr;
}

#os-support .grid.four .os-centos {
    grid-column: span 1;
}


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

.journey .grid.three img {
    padding: 30px 30px 0;
    max-height: 170px;
}

.journey {
    padding-top: clamp(100px, 11vh, 110px);
    background: #fff;
}

.journey .head {
    display: grid;
    gap: 10px;
}
img.cycle-dot{ margin: 30px auto ;}
.journey .kicker {
    margin: 0;
    font-weight: 900;
    letter-spacing: .18em;
    font-size: 12px;
    opacity: .75;
}

.journey .title {
    margin: 0;
    font-weight: 700;
    line-height: 1.12;
    font-size: 46px;
    letter-spacing: -0.04em;
    color: #0f172a;
}

#ltsecure-page header {
    text-align: center;
}
#ltsecure-page .journey {padding: 130px 0;}


#ltsecure-page .journey .title {font-size: 30px;}
#ltsecure-page .journey .hero-title-accent {font-size: clamp(40px, 6vw, 46px);}

.journey .sub {
    margin: 0;
    color: var(--ink);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.75;
    max-width: 78ch;
}

.journey section {
    display: grid;
    gap: 14px;
}

.journey .grid {
    display: grid;
    gap: 14px;
}

.mvshield-desc {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    align-items: center;
}

.mvshield-desc .desc {
    flex-grow: 1;
    margin: 2rem;
    color: rgba(15, 23, 42, .5);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.journey .card.media {
    padding: 0;
    overflow: hidden;
}

.journey .card.media img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.journey .card.media.wide img {
    height: auto;
    object-fit: contain;
    padding: 18px;
}

.journey .badge {
    display: inline-flex;
    height: 32px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: .14em;
    font-size: 11.5px;
    color: var(--brand3);
    background: rgba(0, 122, 255, .10);
    border: 1px solid rgba(0, 122, 255, .18);
}

.journey .terms {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.journey .term {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 10px;
    align-items: start;
    padding: 12px 12px;
    border-radius: 18px;
    background: rgba(15, 23, 42, .03);
    border: 1px solid rgba(15, 23, 42, .08);
}

.journey .term b {
    font-weight: 900;
    color: rgba(15, 23, 42, .92);
}

.journey .term span {
    color: rgba(15, 23, 42, .72);
    font-weight: 700;
    line-height: 1.65;
    font-size: 13.5px;
}

.journey .thumb {
    margin-top: 12px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(15, 23, 42, .03);
    border: 1px solid rgba(15, 23, 42, .08);
    display: grid;
    place-items: center;
}

.journey .thumb img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    display: block;
}

.journey .list {
    margin: 40px 0 0;
    padding: 0;
    display: grid;
    gap: 4px;
}

.journey .list li {
    list-style: none;
    display: flex;
    gap: 5px;
    align-items: flex-start;
    color: rgba(15, 23, 42, .76);
    font-size: 18px;
    font-weight: 600;
}

.journey .list li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .76);
    margin-top: 11px;
}

.journey .note-box {
    margin-top: 12px;
    color: rgba(44, 51, 67, 0.78);
    font-size: 15px;
    line-height: 1.7;
    display: flex;
    gap: 5px;
    align-items: flex-start;
}

.journey .note-box::before {
    content: "";
    width: 5px;
    height: 1px;
    background: rgba(15, 23, 42, .76);
    margin-top: 13px;
}

.callout {
    color: #c3c3c3;
    border-radius: 22px;
    padding: 25px;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 14px 36px rgba(15, 23, 42, .10);
    display: grid;
    margin-top: 70px;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
}

.callout .h3 {
    color: #fff;
    font-weight: 600;
    font-size: 28px;
}

.journey .cta {
    height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    color: #fff;
    background: rgba(0, 122, 255, .95);
    border: 1px solid rgba(0, 122, 255, .22);
    box-shadow: 0 16px 36px rgba(0, 122, 255, .18);
}

.journey .links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.journey .linkbtn {
    height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    color: rgba(15, 23, 42, .92);
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(15, 23, 42, .12);
}

.journey #rocky-migration {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    margin: clamp(100px, 10vh, 110px) auto;
}

.journey #rocky-migration::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(247, 247, 247, .8);
    z-index: 0;
}

.journey #rocky-migration > * {
    position: relative;
    z-index: 1;
}

.journey #rocky-migration .head {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 500;
}

.journey #rocky-migration .head .bold{
    font-weight: 700;
    font-size: 40px;
}

.journey #rocky-migration .title {
    margin: 0;
}

.journey #rocky-migration .sub {
    margin: 0;
    max-width: 80ch;
}

.journey #rocky-migration .card {
    padding: 18px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 14px 36px rgba(15, 23, 42, .10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.journey #rocky-migration .card {
    display: flex;
    flex-direction: column;
}

.journey #rocky-migration .card img {
    flex-grow: 1;
    object-fit: contain;
}

.journey #rocky-migration .h3 {
    margin: 10px 0 15px;
    font-size: 22px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: rgba(15, 23, 42, .92);
}

.journey #rocky-migration .list {
    margin-top: 12px;
    gap: 10px;
}

.journey #rocky-migration .list li {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(15, 23, 42, .78);
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.journey #rocky-migration .badge {
    background: rgba(0, 122, 255, .12);
    border-color: rgba(0, 122, 255, .20);
}

#cost-saving {
    padding: 120px 0;
    background-color: #37404e;
}

#cost-saving .head .title {
    color: #fff;
    margin-bottom: clamp(40px, 5vh, 50px);
}

#cost-saving .head .sub {
    color: #bee2ff;
    font-size: 30px;
}

#cost-saving .media {
    margin: 2rem 0;
}


/** ===== flexera ===== **/
#main-feature {
    padding: 120px 0 130px;
}

#main-feature header {
    margin-bottom: 2rem
}

.flex-feature-title {
    margin: 0 0 60px;
    font-size: 46px;
    line-height: 1.04;
    text-align: center;
}


.fl-title {
    margin: 0 0 40px;
    font-size: 4rem;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.fl-sub-title {
    font-size: 36px;
    font-weight: 500;
    color: #212732;
}

.fl-sec-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
}

.fl-card p {
    color: var(--ink);
    margin-top: 30px;
    font-size: 17px;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.fl-section3 {
    text-align: center;
}

.fl-img-wrapper {
    margin-bottom: 3rem;
}

.fl-section3 .fl-title3 {
    font-weight: 600;
    font-size: 56px;
    letter-spacing: -0.03em;
}

.fl-desc {
    font-size: 1.2rem;
    font-weight: 300;
    color: #414959;
    margin: 1.2rem 0 6rem;
}

.flex-func {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 1fr;
    align-items: stretch;
    gap: 18px;
}

.func-card {
    border-radius: 22px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 14px 36px rgba(15, 23, 42, .10);
    display: grid;
    text-align: center;
    justify-items: center;

    min-height: 300px;
    padding: 20px 14px;
    gap: 16px;
    align-content: start;
}

.func-card .f-card-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
}

.func-card .f-card-list {
    margin: 0 auto;
    color: #dedede;
}

.func-card .func-icon {
    width: 80px;
    height: 80px;
    border-radius: 999px;

    margin: 1rem;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 10px 26px rgba(15, 23, 42, .10);

    color: #304465;
    font-size: 40px;
    flex: 0 0 56px;
}


.func-card > div:last-child {
    width: 100%;
    display: grid;
    justify-items: center;
    gap: 10px;
}

.func-card .f-card-pills {
    margin: 8px auto 0;
    padding: 0;
    width: fit-content;
    flex-wrap: wrap;
    font-size: 16px;
    color: #d5d5d5;
}


/** ===== ltsecure ===== **/
#ltsecure-page, #ltsecure-page * {
    box-sizing: border-box;
}

#ltsecure-page {
    color: var(--ink);
    background: var(--bg);
}

#ltsecure-page .lt-top {
    padding: 18px 0 0;
}

#ltsecure-page .lt-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: .18em;
    font-size: 12px;
    opacity: .8;
}

#ltsecure-page .lt-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(90deg, #3ecbfa, #49be57);
    box-shadow: 0 0 0 4px rgba(62, 203, 250, .14);
}

/* headings */
#ltsecure-page .lt-kicker {
    margin: 0;
    font-weight: 800;
    letter-spacing: .1em;
    font-size: 14px;
    color: #34beed;
}

#ltsecure-page .lt-title {
    margin: 0 0 12px;
    font-size: clamp(30px, 4.2vw, 56px);
    line-height: 1.3;
    letter-spacing: -0.04em;
}

#ltsecure-page .lt-h2 {
    margin: 0;
    font-size: clamp(24px, 3.6vw, 42px);
    line-height: 1.12;
}

#ltsecure-page .lt-h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

#ltsecure-page .lt-lead {
    margin: 0;
    color: rgba(15, 23, 42, .70);
    font-size: 17px;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

#ltsecure-page .lt-sub {
    margin: 10px 0 0;
    font-weight: 500;
    line-height: 1.6;
    color: #ff9c9c;
}

#ltsecure-page .lt-sub.composition {
    color: #4b5461;
}

#ltsecure-page .lt-muted {
    color: rgba(15, 23, 42, .62);
    margin: 8px 0 0;
    line-height: 1.7;
}

#ltsecure-page .lt-accent {
    display: inline-block;
    padding: 4px 10px;
    margin: 0 4px;
    border-radius: 999px;
    font-weight: 900;
    background: rgba(62, 203, 250, .12);
    border: 1px solid rgba(62, 203, 250, .20);
}

/* sections */
#ltsecure-page .lt-sec {
    padding: 150px 0;
}

#ltsecure-page .lt-head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    margin-bottom: 55px;
}

#ltsecure-page .lt-head--dark .lt-sub {
    color: rgba(255, 255, 255, .74);
}

#ltsecure-page .lt-hero {
    padding: clamp(140px, 15vw, 160px) 3rem clamp(120px, 14vw, 140px);
}

#ltsecure-page .lt-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(18px, 4vw, 44px);
    align-items: center;
}

#ltsecure-page .lt-hero-copy {
    display: grid;
    gap: 14px;
}

#ltsecure-page .lt-hero-visual {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .70);
    box-shadow: 0 16px 44px rgba(15, 23, 42, .10);
}

#ltsecure-page .lt-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Risk */
#ltsecure-page .lt-risk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 70px;
}

#ltsecure-page .lt-risk {
    border-radius: 20px;
    position: relative;
    overflow: hidden;

    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .06);
    color: #dddddd;

    display: flex;
    flex-direction: column;
    gap: 10px;

    padding: 10px 0 0 12px;
}

.lt-risk img {justify-self: end}

#ltsecure-page .lt-risk strong {
    color: #fff;
}

#ltsecure-page .lt-risk::before {
    content: attr(data-icon);
    font-size: 34px;
    line-height: 1;
}

#ltsecure-page .lt-risk-no {
    display: inline-block;
    border-radius: 15px;
    padding: 0 10px;
    color: var(--ink);
    background-color: rgba(255, 255, 255, 0.55);
    text-align: center;
    font-weight: 600;
}


#ltsecure-page .lt-risk {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    min-height: 240px;

    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .06);
    color: #dddddd;

    padding: 10px 30px 80px;
    display: flex;
    flex-direction: column;
}

#ltsecure-page .lt-risk-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 24px;
    border-radius: 12px;

    background-color: #2b4c9b;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}


#ltsecure-page .lt-risk-text {
    font-size: 18px;
    line-height: 1.5;
    word-break: keep-all;
    z-index: 2;
}

#ltsecure-page .lt-risk strong {
    display: block;
    font-size: 22px;
    color: #fff;
    margin-top: 5px;
}


#ltsecure-page .lt-risk-img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: auto;
    pointer-events: none;
}


#ltsecure-page .lts-title {
    line-height: 1.6;
}
.cycle {font-size: 40px; font-weight: 700;
}

/* Solution */
#ltsecure-page .lt-solution {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 16px;
    align-items: start;
}

#ltsecure-page .lt-gloss {
    margin-top: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 14px 36px rgba(15, 23, 42, .10);
    padding: 18px;
    display: grid;
    gap: 14px;
}

#ltsecure-page .lt-img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, .08);
    display: block;
}

#ltsecure-page .lt-bullets {
    margin: 0;
    padding-left: 16px;
    color: rgba(15, 23, 42, .78);
    line-height: 1.75;
    font-weight: 750;
    font-size: 13.5px;
}

#ltsecure-page .lt-aside-card {
    border-radius: 22px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 14px 36px rgba(15, 23, 42, .10);
    padding: 18px;
    display: grid;
    gap: 10px;
}

#ltsecure-page .lt-aside-card + .lt-aside-card {
    margin-top: 14px;
}

#ltsecure-page .lt-aside-card--dark {
    background: rgba(15, 23, 42, .92);
    color: rgba(255, 255, 255, .90);
    border-color: rgba(255, 255, 255, .10);
}

#ltsecure-page .lt-aside-card--dark .lt-muted {
    color: rgba(255, 255, 255, .74);
}

#ltsecure-page .lt-grad-sample {
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #3ecbfa, #49be57);
    border: 1px solid rgba(255, 255, 255, .18);
}

#ltsecure-page .lt-check {
    margin-top: 3rem;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

#ltsecure-page .lt-check li {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 600;
    line-height: 1.55;
    color: rgba(15, 23, 42, .78);
    font-size: 20px;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

#ltsecure-page .lt-aside-card--dark .lt-check li {
    color: rgba(255, 255, 255, .82);
}


/* OS grid */
#ltsecure-page .lt-os-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

#ltsecure-page .lt-os {
    border-radius: 20px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 14px 36px rgba(15, 23, 42, .10);
    padding: 14px;
    display: grid;
    gap: 10px;
    align-content: start;
}

#ltsecure-page .lt-os-ic {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(15, 23, 42, .03);
    border: 1px solid rgba(15, 23, 42, .08);
}

#ltsecure-page .lt-os-ic img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

#ltsecure-page .lt-os-name {
    font-weight: 900;
    letter-spacing: -0.02em;
    color: rgba(15, 23, 42, .88);
}

/* Compare */
#ltsecure-page .lt-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, .08);
    background: rgba(255, 255, 255, .06);
}

#ltsecure-page .lt-table th,
#ltsecure-page .lt-table td {
    padding: 18px;
    border: 1px solid rgba(15, 23, 42, .08);
    font-size: 18px;
    font-weight: 600;
    color: rgba(15, 23, 42, .82);
    text-align: center;
    vertical-align: top;
    word-break: keep-all;
    line-height: 1.55;
}

#ltsecure-page .lt-table thead th {
    background: rgba(15, 23, 42, .06);
    font-weight: 900;
    border: 1px solid rgba(15, 23, 42, .08);
}

#ltsecure-page .lt-th-accent {
    color: var(--ink);
    font-size: 20px;
    font-weight: 800
}

#ltsecure-page .lt-table th:nth-child(1),
#ltsecure-page .lt-table td:nth-child(1) {
    background: rgba(15, 23, 42, .06);
}

#ltsecure-page .lt-table th:nth-child(3),
#ltsecure-page .lt-table td:nth-child(3) {
    width: 54%;
}

#ltsecure-page .lt-td-title {
    font-weight: 900;
    color: rgba(15, 23, 42, .92);
}

#ltsecure-page .lt-compare-mobile {
    display: none;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

#ltsecure-page .lt-compare-card {
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 8px 8px rgba(15, 23, 42, 0.08);
    margin: 1rem 0;
}

#ltsecure-page .lt-compare-swiper {
    padding-bottom: 10px;
}

#ltsecure-page .lt-compare-swiper .swiper-wrapper {
    align-items: stretch;
}

#ltsecure-page .lt-compare-swiper .swiper-slide {
    height: auto;
}


#ltsecure-page .lt-compare-card-head {
    padding: 14px 14px 10px;
    background: radial-gradient(320px 220px at 10% 20%, rgba(62, 203, 250, .14), transparent 62%),
    #fff;
    display: grid;
    gap: 8px;
}

#ltsecure-page .lt-compare-pill {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 12px;
    background: rgba(62, 203, 250, .12);
    border: 1px solid rgba(62, 203, 250, .20);
}

#ltsecure-page .lt-compare-item {
    font-weight: 900;
    letter-spacing: -0.02em;
}

#ltsecure-page .lt-compare-card-body {
    padding: 12px 14px 14px;
    display: grid;
    gap: 10px;
}

#ltsecure-page .lt-compare-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    align-items: start;
}

#ltsecure-page .lt-compare-k {
    font-weight: 900;
    color: rgba(15, 23, 42, .70);
    font-size: 12.5px;
}

#ltsecure-page .lt-compare-v {
    font-weight: 800;
    color: rgba(15, 23, 42, .84);
    font-size: 13.5px;
    line-height: 1.5;
}

#ltsecure-page .lt-compare-pagination {
    margin-top: 14px;
    position: static;
}

#ltsecure-page .lt-table thead th:nth-child(3) {
    background: radial-gradient(420px 240px at 30% 30%, rgba(62, 150, 250, 0.18), transparent 65%),
    radial-gradient(420px 240px at 70% 60%, rgba(105, 239, 239, 0.19), transparent 65%),
    rgba(15, 23, 42, .03);
}

#ltsecure-page .lt-table tbody td:nth-child(3) {
    position: relative;
    font-weight: 900;
    color: rgba(15, 23, 42, .92);
    background: linear-gradient(90deg, rgba(62, 203, 250, .10), rgba(73, 190, 87, .08));
}


/* WHY */
#ltsecure-page .lt-sec--dark .lt-h2 {
    color: rgba(255, 255, 255, .96);
}

#ltsecure-page .lt-why-tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin: 18px 0 14px;
}

#ltsecure-page .lt-why-tabs button {
    flex-grow: 1;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .88);
    border-radius: 24px;
    padding: 30px 12px;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

#ltsecure-page .lt-why-tabs button:hover {
    background: rgba(255, 255, 255, .10);
    transform: translateY(-1px);
}

#ltsecure-page .lt-why-tabs button.is-active {
    background: rgba(144, 255, 252, 0.3);
    border-color: rgba(255, 255, 255, .26);
}

#ltsecure-page .lt-why-body {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
}

#ltsecure-page .lt-why-card {
    border-radius: 22px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    padding: 25px;
    min-height: 140px;
    width: 100%;
    display: grid;
    align-content: center;
}

#ltsecure-page .lt-why-card p {
    margin: 0;
    line-height: 1.75;
    font-size: 20px;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

#ltsecure-page .lt-why-nav {
    display: flex;
    gap: 10px;
}

#ltsecure-page .lt-why-tabs [role="tab"] {
    display: grid;
    justify-items: center;
    gap: 8px;
    text-align: center;
}

#ltsecure-page .lt-why-icn {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin: 10px 0 20px;
}

#ltsecure-page .lt-why-icn__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
}

#ltsecure-page .lt-why-tabs [role="tab"] .lt-why-icn__img.is-off {
    display: block;
}

#ltsecure-page .lt-why-tabs [role="tab"].is-active .lt-why-icn__img.is-off {
    display: none;
}

#ltsecure-page .lt-why-tabs [role="tab"].is-active .lt-why-icn__img.is-on {
    display: block;
}


#ltsecure-page .lt-nav {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .92);
    font-weight: 900;
    cursor: pointer;
    transition: transform .12s ease, background .12s ease;
}

#ltsecure-page .lt-nav:hover {
    background: rgba(255, 255, 255, .10);
    transform: translateY(-1px);
}

#ltsecure-page .lt-why-mobile {
    display: none;
}

#ltsecure-page .lt-accent-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(90deg, #3ecbfa, #49be57);
    box-shadow: 0 0 0 4px rgba(62, 203, 250, .12);
    display: inline-block;
    margin-right: 10px;
}

/* target customers */
#ltsecure-page .lt-cust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

#ltsecure-page .lt-cust {
    border-radius: 22px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 14px 36px rgba(15, 23, 42, .10);
    padding: 16px;
    display: grid;
    gap: 10px;
}

#ltsecure-page .lt-cust-ic {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(15, 23, 42, .03);
    border: 1px solid rgba(15, 23, 42, .08);
    padding: 10px;
}

#ltsecure-page .lt-cust p {
    margin: 0;
    font-weight: 850;
    line-height: 1.55;
    color: rgba(15, 23, 42, .82);
}

#ltsecure-page .lts-target {
    background-color: var(--brand);
    padding: 1rem 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

#ltsecure-page .lts-target .lts-target-title {
    font-size: 30px
}

#ltsecure-page .lts-target .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#ltsecure-page .lts-target li {
    margin: 20px 0;
    display: flex;
    gap: 12px
}

/* process */
#ltsecure-page .lt-process {
    text-align: center;
}

#ltsecure-page .lt-process-visual img {
    width: 100%;
    height: auto;
    display: block;
}

#ltsecure-page .lt-details {
    margin: 1rem 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, .3);
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
    overflow: hidden;
}

#ltsecure-page .lt-details + .lt-details {
    margin-top: 10px;
}

#ltsecure-page .lt-details summary {
    list-style: none;
    cursor: pointer;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #fff;
}

#ltsecure-page .lt-details summary::-webkit-details-marker {
    display: none;
}

#ltsecure-page .lt-details summary::after {
    content: "";
    margin-left: auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(15, 23, 42, .55);
    border-bottom: 2px solid rgba(15, 23, 42, .55);
    transform: rotate(45deg);
    transition: transform .15s ease;
}

#ltsecure-page .lt-details[open] summary::after {
    transform: rotate(-135deg);
}

#ltsecure-page .lt-details-body {
    padding: 15px;
    color: #fff;
    line-height: 1.75;
    border-top: 1px solid rgba(15, 23, 42, .08);
    display: flex;
}

#ltsecure-page .lt-faq .faq, #ltsecure-page .lt-details-body {
    color: var(--ink);
    padding: 16px 24px;
    font-size: 18px;
    word-break: keep-all;
    overflow-wrap: anywhere;
}


#ltsecure-page .lt-q, #ltsecure-page .lt-a {
    width: 40px !important;
    height: 40px !important;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 8px;
    min-width: 40px;
    flex: 0 0 40px;
}

#ltsecure-page .lt-q {
    background: var(--brand2);
    color: #fff;
}

.chip {
    background-color: rgba(98, 190, 230, 0.3);
    border: rgba(54, 136, 172, 0.7);
}

#ltsecure-page .lt-a {
    background: rgb(66, 66, 66);
    color: #fff;
}

.service-title, .solution-title {
    text-align: center;
    font-size: 56px;
    font-weight: 600;
    color: var(--ink);
    opacity: 0;
    transform: translateY(30px);
    animation: serviceReveal 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    padding-bottom: 80px;
}

.service-title::before {
    content: "";
    display: block;
    width: min(100px, 52%);
    height: 3px;
    border-radius: 999px;
    margin: 12px auto 0;
    background: var(--grad3);
    opacity: .95;
}

.service-title.rocky::before {
    background: var(--grad);
}

@keyframes serviceReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/** ===== migration ===== **/
#migration-target {
    background-color: #e7ebf1;
}

#migration-target .rl-h2,
#migration-target .media-wrap {
    text-align: center;
}

.mv-section.rocky {
    padding-bottom: 130px;
}

#migration-target .media-wrap * {
    margin: 0 auto;
}

.safe-migration {
    text-align: center;
}


/** ===== location ===== **/
#location {
    padding-bottom: 3rem;
}

#location .lo-wrap {
    padding: 180px 3rem 50px;
    text-align: center;
}

#location .mv-h1 {
    margin: 0 0 10px;
    font-size: 56px;
    line-height: 1.06;
    letter-spacing: -0.04em;
}

#location .lo-desc {
    margin-bottom: 4rem;
    color: rgba(15, 23, 42, .70);
    line-height: 1.8;
}

#location .map-area {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .80);
    box-shadow: 0 18px 52px rgba(15, 23, 42, .12);
}

#location .map-area iframe {
    width: 100%;
    height: clamp(280px, 48vh, 520px);
    display: block;
    border: 0;
}

.location-card {
    margin: 40px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.direction {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.dir-column h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f8f8f8;
}

.info-list {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.8;
}

.info-list p {
    display: flex;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.info-list p .strong {
    white-space: nowrap;
}

.strong {
    font-weight: 700;
    color: #222222;
    margin-right: 8px;
}

.bus, .subway, .chip {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-right: 6px;
    vertical-align: middle;
}

.bus-g {
    background-color: #00b050;
}

.bus-b {
    background-color: #0070c0;
}

.subway {
    background-color: #ff8c00;
    border-radius: 20px;
    padding: 3px 12px;
}

.version {
    border-radius: 20px;
    padding: 3px 9px;
}

.transport-row {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}


/** ===== about =====**/

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.wrap.about-biz {
    margin: 130px auto;
}
.reveal {
    animation: fadeInUp 0.8s ease-out forwards;
}

.about-sec {
    padding: 200px 0 150px;
    margin: 0 auto;
}

.section-title-s {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 60px;
}

.section-title {
    font-size: 46px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 70px;
    text-align: center;
}

.hero-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
}

.hero-text-wrap {
    text-align: center;
}

.hero-quote {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand3);
    margin-bottom: 15px;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.about-desc {
    color: #37404E;
    line-height: 1.8;
    word-break: keep-all;
}


.hero-img-wrap img {
    width: 110%;
    height: auto;
}

.biz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.biz-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.biz-card:hover {
    border-color: var(--brand);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.biz-card i {
    font-size: 2rem;
    color: var(--brand);
    margin-bottom: 20px;
    display: block;
}

.biz-card span {
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.biz-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}


.eng-service {
    grid-column: span 3;
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    display: flex;
    gap: 40px;
}

.eng-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.eng-item span {
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    display: block;
}

.client-wrap {
    text-align: center;
    background: #fff;
}


#about-page .about-hero {
    padding-top: clamp(140px, 15vw, 160px);
}

#about-page .about-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(18px, 3vw, 34px);
    align-items: center;
}

#about-page .about-hero__desc {
    max-width: 72ch;
}

#about-page .about-hero__cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

#about-page .about-head {
    display: grid;
    gap: 6px;
    margin-bottom: 18px;
}

#about-page .about-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

#about-page .about-card {
    padding: 18px;
    display: grid;
    justify-content: center;
    gap: 10px;
    border-radius: 22px;
    border: 1px solid #b6b6b6;
    box-shadow: 0 0px 36px rgba(15, 23, 42, .12);
}

#about-page .about-card__title {
    letter-spacing: -0.02em;
    color: #1a2e5e;
    text-align: center;
    font-size: 22px;
    margin: 2px 0 0;
    line-height: 1.2;
}

#about-page .about-card__desc {
    text-align: center;
    font-size: 17px;
    padding: 0 1.5rem;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

#about-page .about-icn {
    width: 140px;
    height: 140px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--brand-glass);
    border: 1px solid var(--glass-line);
    margin: 1rem auto 2rem;
    font-size: 4rem;
}

#about-page .about-icn svg {
    width: 80px;
    height: 80px;
    color: var(--brand);
}

#about-page .about-eng {
    padding: 24px 50px 18px;
    margin-top: 14px;
}

#about-page .about-eng__top {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
}

#about-page .about-acc details {
    border-top: 1px solid var(--line);
    padding: 12px 0;
}

#about-page .about-acc details:first-child {
    border-top: 0;
    padding-top: 0;
}

#about-page .about-acc summary {
    cursor: pointer;
    font-weight: 800;
    letter-spacing: -0.02em;
    list-style: none;
}

#about-page .about-acc summary::-webkit-details-marker {
    display: none;
}

#about-page .about-acc summary::after {
    content: "";
    float: right;
    width: 10px;
    height: 10px;
    margin-top: 6px;
    border-right: 2px solid rgba(15, 23, 42, .55);
    border-bottom: 2px solid rgba(15, 23, 42, .55);
    transform: rotate(45deg);
    transition: transform .18s ease;
}

#about-page .about-acc details[open] summary::after {
    transform: rotate(225deg);
}

#about-page .about-acc p {
    margin: 8px 0 0;
}

.about-head {
    margin-bottom: 18px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.about-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--line, rgba(15, 23, 42, .10));
    box-shadow: var(--shadow, 0 10px 30px rgba(15, 23, 42, .08));
    display: grid;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    font-weight: 950;
    font-size: 12px;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--brand3);
    background: rgba(0, 122, 255, .10);
    border: 1px solid rgba(0, 122, 255, .18);
    width: fit-content;
}

.about-tags {
    list-style: none;
    padding: 0;
    margin: 2px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-tags > li {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 850;
    color: rgba(15, 23, 42, .72);
    background: rgba(15, 23, 42, .04);
    border: 1px solid rgba(15, 23, 42, .10);
}

.about-eng {
    margin-top: 14px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid #b6b6b6;
    box-shadow: var(--shadow, 0 10px 30px rgba(15, 23, 42, .08));
}

.about-eng .about-kicker {
    margin-bottom: 13px;
}

.about-eng__head {
    display: grid;
    gap: 8px;
    padding-bottom: 14px;
    margin-bottom: 14px;
}

.about-eng__desc {
    margin: 0;
    max-width: 70ch;
}

.about-eng__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.about-eng__item {
    padding: 20px 14px;
    border-radius: 18px;
    background: rgba(15, 23, 42, .03);
    border: 1px solid rgba(15, 23, 42, .10);
    display: grid;
    gap: 6px;
}

.about-eng__t {
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    border-bottom: 1px solid rgba(15, 23, 42, 0.35);
    padding-bottom: .8rem;
    margin-bottom: .8rem;
}

#about-page .about-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ink);
}

#about-page .about-sub {
    text-align: center;
    color: #455785;
    font-size: 1.1rem;
}

#about-page .about-client {
    padding: 120px 0;
}

#about-page .about-clients img {
    width: 100%;
    height: auto;
    display: block;
}



/** ===== rocky linux ===== **/
#rlmig-page {
    --rl-bg: var(--bg, #fff);
    --rl-ink: var(--ink, #0f172a);
    --rl-muted: var(--muted, #64748b);
    --rl-line: var(--line, rgba(15, 23, 42, .10));
    --rl-brand: var(--brand, #007aff);
    --rl-brand2: var(--brand2, #1a53e1);
    --rl-glass: var(--glass, rgba(251, 251, 251, .3));
    --rl-glass-line: var(--glass-line, rgba(15, 23, 42, .08));
    --rl-radius: 18px;
    --rl-shadow: var(--shadow, 0 10px 30px rgba(15, 23, 42, .08));
    color: var(--rl-ink);
}

#rlmig-page * {
    box-sizing: border-box;
}

#rlmig-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* typography */
#rlmig-page .rl-eyebrow {
    margin: 0 0 10px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 12px;
    color: rgba(15, 23, 42, .55);
}

#rlmig-page .rl-h1 {
    margin: 0 0 12px;
    font-size: 46px;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

#rlmig-page .rl-h2 {
    margin: 0;
    font-size: 46px;
    line-height: 1.3;
}

#rlmig-page .rl-h3 {
    margin: 0;
    font-size: 20px;
    letter-spacing: -0.02em;
}

#rlmig-page .mt-desc {
    font-size: 18px;
    color: #4b5461;
    margin: 1.5rem 0;
}

#rlmig-page .rl-accent {
    background: linear-gradient(90deg, var(--g0, #3ecbfa), var(--g1, #49be57));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#rlmig-page .rl-lead {
    margin: 0;
    color: var(--rl-muted);
    line-height: 1.75;
    font-size: 17px;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

#rlmig-page .rl-text {
    margin: 10px 0 0;
    color: var(--rl-muted);
    line-height: 1.75;
}

#rlmig-page .rl-muted {
    color: var(--rl-muted);
}

/* hero */
#rlmig-page .rl-hero {
    padding: clamp(140px, 15vw, 160px) 0;
}

.solution-title {
    padding-top: clamp(120px, 10vw, 150px);
}

#rlmig-page .rl-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(18px, 3.5vw, 40px);
    align-items: center;
}

#rlmig-page .rl-hero__media {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--rl-shadow);
    border: 1px solid var(--rl-glass-line);
    margin: 0;
}

#rlmig-page .rl-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#rlmig-page .rl-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 16px 0 10px;
}

#rlmig-page .rl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--rl-glass-line);
    color: rgba(15, 23, 42, .88);
    background: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-weight: 900;
    letter-spacing: -0.01em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45);
}

#rlmig-page .rl-btn--solid {
    color: white;
    background: linear-gradient(90deg, var(--g0, #3ecbfa), var(--g1, #49be57));
    border-color: rgba(0, 0, 0, .06);
}

#rlmig-page .rl-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

#rlmig-page .rl-badge {
    min-width: 170px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding: 0 12px;
    font-weight: 500;
    border-radius: 999px;
    background: rgba(15, 23, 42, .04);
    border: 1px solid var(--rl-line);
    font-size: 15px;
    color: rgba(15, 23, 42, .72);
}

/* sections */
#rlmig-page .rl-section {
    padding: 120px 0;
}

#rlmig-page .rl-head {
    display: grid;
    gap: 6px;
    margin-bottom: 60px;
}

#rlmig-page .rl-figure img {
    width: 100%;
    object-fit: contain;
    height: auto;
}

#rlmig-page .rl-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: center;
}

#rlmig-page .rl-split__media {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--rl-glass-line);
    background: rgba(255, 255, 255, .55);
    box-shadow: var(--rl-shadow);
}

#rlmig-page .rl-check {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

#rlmig-page .rl-check li {
    position: relative;
    padding-left: 26px;
    color: rgba(15, 23, 42, .78);
    font-weight: 800;
}

#rlmig-page .rl-check li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 14px;
    height: 14px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--g0, #3ecbfa), var(--g1, #49be57));
    opacity: .85;
}

/* plans */
#rlmig-page .rl-section--plans {
    background: rgba(15, 23, 42, .02);
    border-top: 1px solid var(--rl-line);
    border-bottom: 1px solid var(--rl-line);
}

#rlmig-page .rl-plans {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

#rlmig-page .rl-plan {
    border-radius: 22px;
    background: rgba(255, 255, 255, .70);
    border: 1px solid var(--rl-glass-line);
    box-shadow: var(--rl-shadow);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    text-align: left;
}

#rlmig-page .rl-plan--mid {
    background: rgba(255, 255, 255, .82);
    border-color: rgba(0, 122, 255, .16);
}

#rlmig-page .rl-plan__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px;
    color: #fff;
    background-color: #253a70;
    gap: 12px;
}

#rlmig-page .rl-plan:first-child .rl-plan__top {
    background-color: #495e93;
}

#rlmig-page .rl-plan:last-child .rl-plan__top {
    background-color: #132757;
}

#rlmig-page .rl-tag {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .02em;
    background: rgba(207, 220, 253, 0.3);
    border: 1px solid var(--rl-line);
    color: #fff;
    margin-bottom: 8px;
}

#rlmig-page .rl-tag--accent {
    background: rgba(0, 122, 255, .10);
    border-color: rgba(0, 122, 255, .16);
    color: rgba(0, 122, 255, .88);
}

#rlmig-page .rl-icn {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(0, 122, 255, .10);
    border: 1px solid rgba(0, 122, 255, .14);
}

#rlmig-page .rl-icn svg {
    width: 22px;
    height: 22px;
    color: rgba(0, 122, 255, .92);
}

#rlmig-page .rl-plan__desc {
    margin: 0;
    padding: 10px;
    color: rgba(15, 23, 42, .78);
    line-height: 1.65;
}

#rlmig-page .rl-plan__cols {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 4px;
}

#rlmig-page .rl-col {
    border-top: 1px solid var(--rl-line);
    padding-top: 10px;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

#rlmig-page .rl-col__t {
    font-weight: 900;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

#rlmig-page .rl-k {
    font-weight: 700;
    font-size: 1.1rem;
    color: rgba(15, 23, 42, .86);
    margin: 6px 0;
}

#rlmig-page .rl-ul {
    margin: 6px 0 0;
    padding-left: 18px;
    color: rgba(15, 23, 42, .72);
    line-height: 1.7;
}

#rlmig-page .rl-ul li {
    margin: 4px 0;
}

#rlmig-page .rl-bul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

#rlmig-page .rl-bul > li {
    position: relative;
    padding-left: 12px;
    font-weight: 600;
    color: #37404E;
}

#rlmig-page .rl-bul > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .7em;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: #37404E;
    opacity: .95;
}

#rlmig-page .rl-subbul {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
    font-size: .8rem;
}

#rlmig-page .rl-subbul > li {
    position: relative;
    padding-left: 16px;
    color: rgba(55, 59, 71, 0.72);
}

#rlmig-page .rl-subbul > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .7em;
    width: 7px;
    height: 2px;
    border-radius: 999px;
    background: rgba(55, 59, 71, 0.72);
}


#rlmig-page .rl-col__t {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 12.5px;
    letter-spacing: -0.01em;

    background: rgba(0, 122, 255, .10);
    border: 1px solid rgba(0, 122, 255, .18);
    color: rgba(0, 122, 255, .92);

    margin: 0 0 10px;
}

#rlmig-page .rl-ul {
    margin: 6px 0 0;
    padding-left: 16px;
    line-height: 1.75;
}

#rlmig-page .rl-ul li {
    margin: 6px 0;
}


/** ===== oss =====**/
#oss-audit-page {
    color: var(--ink, #0f172a);
    background: var(--bg, #ffffff);
}

#oss-audit-page * {
    box-sizing: border-box;
}

#oss-audit-page .oa-kicker {
    margin: 0 0 10px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--muted, #64748b);
}

#oss-audit-page .oa-title {
    margin: 0 0 12px;
    font-size: 46px;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

#oss-audit-page .oa-h2 {
    margin: 0;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

#oss-audit-page .oa-h3 {
    margin: 0 0 5px;
    font-size: 22px;
    line-height: 1.25;
}

#oss-audit-page .oa-h4 {
    text-align: center;
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.25;
}

#oss-audit-page .lead,
#oss-audit-page .oa-p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    font-size: 17px;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

#oss-audit-page .oa-muted {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 17px;
    text-align: center;
}

/* Buttons */
#oss-audit-page .oa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--line, rgba(15, 23, 42, .12));
    text-decoration: none;
    color: var(--ink, #0f172a);
    background: rgba(255, 255, 255, .72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55);
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

#oss-audit-page .oa-btn--solid {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(90deg, var(--g0, #3ecbfa), var(--g1, #49be57));
    box-shadow: 0 14px 34px rgba(15, 23, 42, .16);
}

#oss-audit-page .oa-figure__wrap {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--line, rgba(15, 23, 42, .12));
    box-shadow: var(--shadow, 0 10px 30px rgba(15, 23, 42, .08));
}

#oss-audit-page .oa-figure {margin: 0;}

#oss-audit-page .oa-figure img {
    width: 100%;
    height: auto;
    display: block;
}

/* Sections */
#oss-audit-page .oa-section {
    padding: clamp(100px, 11vh, 120px) 0 clamp(80px, 10vh, 100px);
}

#oa-case.oa-section {padding-bottom: 0; !important;}

#oss-audit-page .oa-section--tint {
    background: linear-gradient(180deg,
    rgba(14, 46, 124, .06),
    rgba(14, 46, 124, .02) 45%,
    rgba(255, 255, 255, 0));
}


#oss-audit-page .oa-head {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

/* Hero */
#oss-audit-page .oa-hero {
    padding: clamp(140px, 15vw, 160px) 0;
    position: relative;
    background-color: #E5E7EB;
}

#oss-audit-page .oa-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(18px, 3vw, 34px);
    align-items: center;
}

#oss-audit-page .oa-hero__copy {
    display: grid;
    gap: 14px;
}

#oss-audit-page .oa-hero__cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 2px;
}

#oss-audit-page .oa-insight {
    text-align: center;
}

#oss-audit-page .oa-insight .oa-h2 {
    position: relative;
    font-size: 38px;
}

#oss-audit-page .oa-insight__media {
    margin: 50px 0;
}

#oss-audit-page .oa-scope {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 14px;
    align-items: stretch;
}

#oss-audit-page .oa-plus {
    font-size: 2rem;
    margin: 0;
    color: rgba(15, 23, 42, .84)
}

#oss-audit-page .oa-divider {
    display: grid;
    place-items: center;
    padding: 10px 0;
}

#oss-audit-page .oa-divider span {
    width: 2px;
    height: 100%;
}

#oss-audit-page .oa-card {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--line, rgba(15, 23, 42, .12));
    background: rgba(255, 255, 255, .70);
    box-shadow: var(--shadow, 0 10px 30px rgba(15, 23, 42, .08));
    display: grid;
    gap: 12px;
    text-align: center;
}

.oa-stack {
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
}

#oss-audit-page .oa-card-title {
    padding: 20px 30px;
    background-color: var(--brand2);
    color: #fff;
    margin: 0 0 5px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 600;
}

.oa-subcard {
    flex-grow: 1;
    font-size: 20px;
    font-weight: 700;
    padding:20px 10px;
    color: rgba(15, 23, 42, .84);
}

.oa-list .oa-badge {
    margin: 0 0 12px;
}

#oss-audit-page .oa-badge {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .05em;
    padding:14px 10px;
    border-radius: 16px;
    color: rgba(15, 23, 42, .84);
    background: rgba(15, 23, 42, .05);
    border: 1px solid rgba(15, 23, 42, .10);
    display: flex;
    justify-content: center;
    align-items: center;
}

#oss-audit-page .oa-badge--strong, .oa-subcard {
    color: #0b2a66;
    background: rgba(14, 46, 124, .08);
    border-color: rgba(14, 46, 124, .16);
    display: flex;
    justify-content: center;
    align-items: center;
}

#oss-audit-page .oa-list {
    margin: 0;
    padding: 24px;
    color: var(--muted, #455785);
    line-height: 1.7;
}

#oss-audit-page .oa-subcard {
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(15, 23, 42, .05);
}

#oss-audit-page .oa-subcard__title {
    margin: 0;
    letter-spacing: -0.02em;
}

#oss-audit-page .oa-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

#oss-audit-page .oa-chip {
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .62);
    color: rgba(15, 23, 42, .86);
    font-weight: 800;
    letter-spacing: -0.01em;
    text-align: center;
}

/* Cases */
#oss-audit-page .oa-cases {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

#oss-audit-page .oa-case {
    flex-grow: 1;
    padding: 40px 30px;
    border-radius: 22px;
    border: 1px solid var(--line, rgba(15, 23, 42, .12));
    background: rgba(255, 255, 255, .72);
    box-shadow: var(--shadow, 0 10px 30px rgba(15, 23, 42, .08));
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#oss-audit-page .oa-bullets {
    margin: 2px 0 0;
    padding-left: 8px;
    color: var(--muted, #64748b);
    line-height: 1.75;
}

/* Benefits */
#oss-audit-page .oa-benefits {
    margin: 30px 0 80px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

#oss-audit-page .oa-benefit {
    padding: 30px 20px 48px;
    border-radius: 22px;
    border: 1px solid var(--line, rgba(15, 23, 42, .12));
    background: rgba(255, 255, 255, .70);
    box-shadow: var(--shadow, 0 10px 30px rgba(15, 23, 42, .08));
    display: flex;
    flex-direction: column;
    align-items: center;
}


#oss-audit-page .oa-icon {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(14, 46, 124, .08);
    border: 1px solid rgba(14, 46, 124, .14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .40);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}


#oss-audit-page .oa-bottom {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line, rgba(15, 23, 42, .12));
}

#oss-audit-page .oa-bottom__cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.oa-section.case {
    padding-bottom: 0;
}



/** ===== login ===== **/
.auth {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px 16px;
    background: url("/assets/img/main_bg01.jpg") center/cover no-repeat;
}

.auth-card {
    width: min(420px, 100%);
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 20px 70px rgba(0, 0, 0, .35);
    padding: 18px;
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(62, 203, 250, .30), rgba(73, 190, 87, .22));
    opacity: .16;
    pointer-events: none;
}

.auth-brand {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 6px 6px 14px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    position: relative;
}

.auth-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .14);
    padding: 6px;
}

.auth-kicker {
    font-size: 12px;
    letter-spacing: .14em;
    font-weight: 900;
    color: rgba(255, 255, 255, .72);
}

.auth-title {
    margin: 2px 0 0;
    font-size: 22px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: rgba(255, 255, 255, .92);
}

.auth-form {
    display: grid;
    gap: 10px;
    padding: 14px 6px 6px;
    position: relative;
}

.auth-label {
    font-weight: 850;
    font-size: 16px;
    color: rgba(255, 255, 255, .78);
}

.auth-input {
    width: 100%;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(11, 18, 32, .38);
    color: rgba(255, 255, 255, .92);
    padding: 0 12px;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.auth-input::placeholder {
    color: rgba(255, 255, 255, .42);
}

.auth-input:focus {
    border-color: rgba(0, 122, 255, .45);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, .18);
    background: rgba(11, 18, 32, .46);
}

.auth-btn {
    height: 46px;
    border: 0;
    border-radius: 14px;
    font-weight: 950;
    letter-spacing: -0.01em;
    color: #fff;
    background: rgba(0, 122, 255, .92);
    box-shadow: 0 18px 46px rgba(0, 122, 255, .22);
    cursor: pointer;
    transition: transform .14s ease, box-shadow .14s ease, filter .14s ease;
    margin-top: 6px;
}

.auth-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 60px rgba(0, 122, 255, .28);
    filter: brightness(1.02);
}

.auth-note {
    margin: 8px 0 0;
    min-height: 18px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .70);
    text-align: center;
}




.riskdeck{
    display:grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.riskcard{
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.06);
    box-shadow: 0 18px 44px rgba(0,0,0,.24);
    min-height: 150px;

    display:grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    gap: 10px 12px;
    align-content: start;
}

.riskcard__wm{
    position:absolute;
    right:-8px;
    bottom:-10px;
    width: 120px;
    height: 120px;
    color: rgba(255,255,255,.14);
    pointer-events:none;
    transform: rotate(-10deg);
}

.riskcard__wm svg{
    width:100%;
    height:100%;
    display:block;
}

.riskcard__no{
    grid-column: 1;
    grid-row: 1;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display:grid;
    place-items:center;
    font-weight: 950;
    letter-spacing: .02em;
    color: rgba(255,255,255,.90);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
}

.riskcard__txt{
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
    color: rgba(255,255,255,.86);
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.01em;
}

.riskcard__txt strong{
    color: rgba(255,255,255,.96);
    font-weight: 950;
}

.riskcard:hover{
    transform: translateY(-2px);
    transition: transform .18s ease;
}

@media (max-width: 1024px){
    .riskdeck{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .riskcard{ min-height: 156px; }
    .riskcard__wm{ width: 132px; height: 132px; }
}

@media (max-width: 560px){
    .riskdeck{ grid-template-columns: 1fr; }
    .riskcard{
        border-radius: 18px;
        padding: 16px 14px 14px;
        min-height: 132px;
    }
    .riskcard__wm{ width: 110px; height: 110px; }
    .riskcard__txt{ font-size: 15px; }
}

#ltsecure-page .lt-why-mobile .lt-why-icn {
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    vertical-align: middle;
}

#ltsecure-page .lt-why-mobile .lt-why-icn__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#ltsecure-page .lt-why-mobile .lt-details .lt-why-icn__img.is-on {display: none;}
#ltsecure-page .lt-why-mobile .lt-details .lt-why-icn__img.is-off {display: block;}
#ltsecure-page .lt-why-mobile .lt-details[open] .lt-why-icn__img.is-on {display: block;}

#ltsecure-page .lt-why-mobile .lt-details[open] .lt-why-icn__img.is-off {display: none;}

.support-link-mobile { display: none; }

[data-reveal] {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .55s ease, transform .55s ease;
}

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