@charset "utf-8";

/* Homepage only: the public theme as a practical operating map, not a generic landing page. */
.webon-main--home {
    overflow: hidden;
}

.webon-home-banner {
    padding: 18px 0;
    border-bottom: 1px solid #dce5ef;
    background: #f5f8fc;
}

.webon-home-banner a,
.webon-home-banner img {
    display: block;
}

.webon-home-banner img {
    width: 100%;
    max-height: 420px;
    border-radius: 18px;
    object-fit: cover;
}

.webon-home-label {
    margin: 0 0 10px;
    color: var(--webon-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
}

.webon-home-hero {
    background: #0D2748;
}

.webon-home-hero::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 64px 64px;
    content: "";
    pointer-events: none;
}

.webon-home-hero__inner {
    position: relative;
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
    gap: clamp(52px, 7vw, 110px);
    min-height: 720px;
    align-items: center;
}

.webon-home-hero .webon-hero__content {
    max-width: 760px;
}

.webon-home-hero .webon-hero__eyebrow {
    color: #E2B573;
}

.webon-home-hero h2 {
    max-width: 720px;
    font-size: var(--webon-type-display);
}

.webon-home-hero .webon-hero__description {
    max-width: 680px;
    line-height: 1.75;
}

.webon-home-hero__facts {
    display: flex;
    gap: 0;
    margin: 46px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
    list-style: none;
}

.webon-home-hero__facts li {
    min-width: 0;
    padding-right: clamp(18px, 3vw, 38px);
}

.webon-home-hero__facts li + li {
    padding-left: clamp(18px, 3vw, 38px);
    border-left: 1px solid rgba(255, 255, 255, .16);
}

.webon-home-hero__facts strong,
.webon-home-hero__facts span {
    display: block;
}

.webon-home-hero__facts strong {
    color: #fff;
    font-size: 19px;
}

.webon-home-hero__facts span {
    margin-top: 5px;
    color: #AFC0D4;
    font-size: 12px;
}

.webon-hero-map {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    background: #F8FAFD;
    border-radius: 20px 6px 20px 6px;
    box-shadow: 28px 32px 0 rgba(4, 18, 36, .24);
    color: var(--webon-text);
    transform: rotate(1.5deg);
}

.webon-hero-map__bar,
.webon-hero-map__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.webon-hero-map__bar {
    min-height: 54px;
    padding: 0 22px;
    color: #DCE6F3;
    background: #173B6C;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .11em;
}

.webon-hero-map__status {
    position: relative;
    color: #fff;
    letter-spacing: 0;
}

.webon-hero-map__status::before {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 7px;
    background: #6FCF97;
    border-radius: 50%;
    content: "";
}

.webon-hero-map__body {
    padding: clamp(24px, 4vw, 38px);
}

.webon-hero-map__caption {
    margin: 0 0 24px;
    color: var(--webon-muted);
    font-size: 13px;
}

.webon-hero-map__core {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border: 1px solid #CBD8E8;
    background: #fff;
    border-radius: 12px;
}

.webon-hero-map__mark {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    color: #fff;
    background: var(--webon-primary);
    border-radius: 12px 4px 12px 4px;
    font-size: 21px;
    font-weight: 900;
}

.webon-hero-map__core strong,
.webon-hero-map__core small {
    display: block;
}

.webon-hero-map__core strong {
    color: var(--webon-primary-dark);
    font-size: 18px;
}

.webon-hero-map__core small {
    margin-top: 3px;
    color: var(--webon-muted);
}

.webon-hero-map__branches {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 30px;
}

.webon-hero-map__branches::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 22px;
    background: #CBD8E8;
    content: "";
}

.webon-hero-map__branches span {
    display: flex;
    min-height: 64px;
    gap: 10px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid var(--webon-line);
    background: #EEF3F9;
    border-radius: 9px;
    color: var(--webon-primary-dark);
    font-size: 14px;
    font-weight: 700;
}

.webon-hero-map__branches i {
    width: 24px;
    color: var(--webon-accent);
    font-size: 18px;
    text-align: center;
}

.webon-hero-map__footer {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--webon-line);
    color: var(--webon-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
}

.webon-home-live {
    padding-top: clamp(52px, 7vw, 90px);
}

.webon-home-quick {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 46px;
    border: 1px solid var(--webon-line);
    border-radius: var(--webon-radius);
    box-shadow: var(--webon-shadow-sm);
}

.webon-home-quick > a {
    display: grid;
    min-width: 0;
    min-height: 104px;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 20px;
    background: #fff;
    color: var(--webon-text);
}

.webon-home-quick > a:first-child {
    border-radius: var(--webon-radius) 0 0 var(--webon-radius);
}

.webon-home-quick > a:last-child {
    border-radius: 0 var(--webon-radius) var(--webon-radius) 0;
}

.webon-home-quick > a + a {
    border-left: 1px solid var(--webon-line);
}

.webon-home-quick > a > i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--webon-primary);
    background: var(--webon-primary-soft);
    border-radius: 50%;
    font-size: 18px;
}

.webon-home-quick strong,
.webon-home-quick small {
    display: block;
}

.webon-home-quick strong {
    color: var(--webon-primary-dark);
    font-size: 16px;
}

.webon-home-quick small {
    margin-top: 4px;
    color: var(--webon-muted);
    font-size: 12px;
}

.webon-home-quick b {
    color: #9BAABC;
    font-weight: 400;
}

.webon-home-quick > a:hover b,
.webon-home-quick > a:focus-visible b {
    color: var(--webon-accent);
    transform: translateX(3px);
}

.webon-home-live-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.webon-home-feed {
    min-width: 0;
    padding: 26px;
    border: 1px solid var(--webon-line);
    background: #fff;
    border-radius: var(--webon-radius);
}

.webon-home-feed__head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    min-height: 70px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--webon-primary-dark);
}

.webon-home-feed__head span {
    color: var(--webon-primary-dark);
    font-size: var(--webon-type-card);
    font-weight: 800;
}

.webon-home-feed__head p {
    margin: 5px 0 0;
    color: var(--webon-muted);
    font-size: 12px;
}

.webon-home-feed__head > a {
    flex: 0 0 auto;
    color: var(--webon-muted);
    font-size: 12px;
    font-weight: 700;
}

.webon-home-feed .lat {
    margin: 0;
}

.webon-home-feed .lat_title,
.webon-home-feed .lt_more {
    display: none;
}

.webon-home-feed .lat ul {
    margin: 0;
    padding: 10px 0 0;
}

.webon-home-feed .lat li {
    margin: 0;
    padding: 12px 0;
    line-height: 1.45;
}

.webon-home-feed .lat li a {
    display: block;
    overflow: hidden;
    color: var(--webon-text);
    font-size: 14px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.webon-home-feed .lt_info {
    padding: 5px 0 0;
    color: var(--webon-muted);
    font-size: 11px;
}

.webon-home-feed .lt_nick {
    display: none;
}

.webon-home-feed__empty {
    display: flex;
    min-height: 218px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.webon-home-feed__empty::before {
    width: 38px;
    height: 3px;
    margin-bottom: 18px;
    background: var(--webon-accent);
    content: "";
}

.webon-home-feed__empty strong {
    color: var(--webon-primary-dark);
}

.webon-home-feed__empty span {
    margin-top: 7px;
    color: var(--webon-muted);
    font-size: 12px;
}

.webon-use-case-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-block: 1px solid var(--webon-line);
}

.webon-use-case-grid article {
    position: relative;
    min-width: 0;
    padding: 32px clamp(20px, 2.5vw, 38px) 36px;
}

.webon-use-case-grid article + article {
    border-left: 1px solid var(--webon-line);
}

.webon-use-case-grid__icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    color: var(--webon-primary);
    background: #fff;
    border: 1px solid var(--webon-line);
    border-radius: 14px 4px 14px 4px;
    font-size: 21px;
}

.webon-use-case-grid article > p {
    margin: 24px 0 6px;
    color: var(--webon-accent);
    font-size: 12px;
    font-weight: 800;
}

.webon-use-case-grid h3 {
    margin: 0;
    color: var(--webon-primary-dark);
    font-size: var(--webon-type-subheading);
    line-height: 1.35;
}

.webon-use-case-grid ul {
    margin: 22px 0 0;
    padding: 18px 0 0;
    border-top: 1px solid var(--webon-line);
    color: var(--webon-muted);
    list-style: none;
}

.webon-use-case-grid li {
    position: relative;
    padding: 4px 0 4px 13px;
    font-size: 14px;
}

.webon-use-case-grid li::before {
    position: absolute;
    top: 13px;
    left: 0;
    width: 4px;
    height: 4px;
    background: #9BAABC;
    border-radius: 50%;
    content: "";
}

.webon-home-skin-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.webon-home-skin-list > a {
    display: flex;
    min-width: 0;
    min-height: 260px;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--webon-line);
    background: #fff;
    border-radius: var(--webon-radius);
    color: var(--webon-text);
    transition: border-color var(--webon-transition), box-shadow var(--webon-transition), transform var(--webon-transition);
}

.webon-home-skin-list > a:hover,
.webon-home-skin-list > a:focus-visible {
    border-color: #9FB3CD;
    box-shadow: var(--webon-shadow-sm);
    transform: translateY(-4px);
}

.webon-home-skin-list > a > span {
    color: #9BAABC;
    font-size: 12px;
    font-weight: 800;
}

.webon-home-skin-list > a > div {
    margin-top: auto;
}

.webon-home-skin-list code {
    color: var(--webon-accent);
    font-size: 12px;
    font-weight: 800;
}

.webon-home-skin-list h3 {
    margin: 6px 0 8px;
    color: var(--webon-primary-dark);
    font-size: var(--webon-type-card);
    line-height: 1.4;
}

.webon-home-skin-list p {
    margin: 0;
    color: var(--webon-muted);
    font-size: 13px;
}

.webon-home-skin-list b {
    align-self: end;
    margin-top: 24px;
    color: var(--webon-primary);
    font-size: 20px;
    font-weight: 400;
}

.webon-home-foundation {
    color: #fff;
    background: #102F55;
}

.webon-home-foundation__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
    gap: clamp(50px, 8vw, 120px);
    align-items: center;
}

.webon-home-foundation h2 {
    max-width: 660px;
    margin: 0;
    color: #fff;
    font-size: var(--webon-type-section);
    line-height: var(--webon-leading-heading);
    letter-spacing: -.04em;
}

.webon-home-foundation__intro {
    max-width: 680px;
    margin: 24px 0 0;
    color: #C7D3E2;
    font-size: var(--webon-type-body);
    line-height: 1.8;
}

.webon-home-foundation__specs {
    margin: 38px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .17);
}

.webon-home-foundation__specs > div {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.webon-home-foundation__specs dt {
    color: #E2B573;
    font-weight: 800;
}

.webon-home-foundation__specs dd {
    margin: 0;
    color: #C7D3E2;
}

.webon-home-checklist {
    padding: 12px clamp(24px, 4vw, 44px);
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .05);
    border-radius: 18px 5px 18px 5px;
}

.webon-home-checklist > div {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 21px 0;
}

.webon-home-checklist > div + div {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.webon-home-checklist i {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--webon-primary-dark);
    background: #E2B573;
    border-radius: 50%;
}

.webon-home-checklist strong,
.webon-home-checklist small {
    display: block;
}

.webon-home-checklist strong {
    color: #fff;
}

.webon-home-checklist small {
    margin-top: 4px;
    color: #AFC0D4;
}

.webon-home-commerce {
    background: var(--webon-accent-soft);
}

.webon-home-commerce__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 50px;
    align-items: center;
    padding-block: clamp(52px, 7vw, 82px);
}

.webon-home-commerce h2 {
    margin: 0;
    color: var(--webon-primary-dark);
    font-size: var(--webon-type-section);
    line-height: var(--webon-leading-heading);
    letter-spacing: -.04em;
}

.webon-home-commerce p:not(.webon-home-label) {
    max-width: 780px;
    margin: 16px 0 0;
    color: #5F6776;
    font-size: 16px;
}

.webon-home-commerce__status {
    padding: 13px 18px;
    border: 1px solid #D9B883;
    background: rgba(255, 255, 255, .5);
    border-radius: 999px;
    color: var(--webon-primary-dark);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.webon-home-start .webon-home-label {
    color: #E2B573;
}

@media (max-width: 1200px) {
    .webon-home-hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(350px, .78fr);
        gap: 48px;
    }

    .webon-home-quick {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .webon-home-quick > a:nth-child(3) {
        border-left: 0;
    }

    .webon-home-quick > a:nth-child(n + 3) {
        border-top: 1px solid var(--webon-line);
    }

    .webon-home-quick > a:first-child,
    .webon-home-quick > a:last-child {
        border-radius: 0;
    }

    .webon-home-skin-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .webon-home-hero__inner,
    .webon-home-foundation__grid {
        grid-template-columns: 1fr;
    }

    .webon-home-hero__inner {
        gap: 52px;
        padding-bottom: 90px;
    }

    .webon-hero-map {
        width: min(100%, 610px);
        transform: none;
    }

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

    .webon-home-feed:last-child {
        grid-column: 1 / -1;
    }

    .webon-use-case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .webon-use-case-grid article:nth-child(3) {
        border-left: 0;
    }

    .webon-use-case-grid article:nth-child(n + 3) {
        border-top: 1px solid var(--webon-line);
    }
}

@media (max-width: 768px) {
    .webon-home-hero__inner {
        min-height: auto;
        gap: 44px;
        padding-block: 72px 76px;
    }

    .webon-home-hero h2 { font-size:clamp(36px,10vw,44px); }

    .webon-home-hero__facts {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .webon-home-hero__facts li,
    .webon-home-hero__facts li + li {
        padding: 0 12px;
        text-align: center;
    }

    .webon-home-hero__facts li:first-child {
        padding-left: 0;
    }

    .webon-home-hero__facts li:last-child {
        padding-right: 0;
    }

    .webon-home-hero__facts strong {
        font-size: 15px;
    }

    .webon-home-hero__facts span {
        font-size: 10px;
        line-height: 1.45;
    }

    .webon-hero-map {
        box-shadow: 14px 16px 0 rgba(4, 18, 36, .22);
    }

    .webon-hero-map__body {
        padding: 22px 18px;
    }

    .webon-hero-map__branches span {
        padding: 12px;
        font-size: 12px;
    }

    .webon-home-quick,
    .webon-home-live-grid,
    .webon-use-case-grid,
    .webon-home-skin-list,
    .webon-home-commerce__inner {
        grid-template-columns: 1fr;
    }

    .webon-home-quick > a + a,
    .webon-home-quick > a:nth-child(3) {
        border-top: 1px solid var(--webon-line);
        border-left: 0;
    }

    .webon-home-quick > a {
        min-height: 88px;
    }

    .webon-home-feed:last-child {
        grid-column: auto;
    }

    .webon-use-case-grid article + article,
    .webon-use-case-grid article:nth-child(3) {
        border-top: 1px solid var(--webon-line);
        border-left: 0;
    }

    .webon-home-skin-list > a {
        min-height: 190px;
    }

    .webon-home-foundation__grid {
        gap: 42px;
    }

    .webon-home-foundation__specs > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .webon-home-commerce__inner {
        gap: 28px;
    }

    .webon-home-commerce .webon-button,
    .webon-home-commerce__status {
        width: 100%;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .webon-hero-map__branches {
        grid-template-columns: 1fr;
    }

    .webon-home-hero__facts span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .webon-home-skin-list > a,
    .webon-home-quick b {
        transition: none;
    }

    .webon-home-skin-list > a:hover,
    .webon-home-skin-list > a:focus-visible,
    .webon-home-quick > a:hover b,
    .webon-home-quick > a:focus-visible b {
        transform: none;
    }
}
