:root {
    --blue: #0b6bff;
    --blue-rgb: 11 107 255;
    --dark-blue: #0a3d91;
    --text: #1f2a37;
    --muted: #5f6b7a;
    --border: #e6ebf2;
    --surface: #ffffff;
    --surface-2: #f7faff;
    --radius: 14px;
    --shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Encode Sans", sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer
}

.container {
    width: 100%;
    margin-inline: auto;
    padding-inline: 20px;
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

.f {
    display: flex;
}

.b {
    justify-content: space-between;
}

.c {
    align-items: center;
}

.skip-link,
.vh {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
}

.skip-link:focus {
    top: 16px;
}

#header {
    position: relative;
    z-index: 1000;
}

.htop {
    background: var(--dark-blue);
    color: #fff;
    font-size: 14px;
}

.htop .container {
    min-height: 46px;
}

.htop .left,
.htop .right {
    display: flex;
    align-items: center;
}

.htop .left>*,
.htop .right>* {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 16px;
    color: rgba(255, 255, 255, .95);
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.htop .left>*:first-child,
.htop .right>*:first-child {
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.hdrop {
    background: transparent;
    border: 0;
}

.hdrop::after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    font-size: 12px;
    margin-left: 2px;
}

.cart-count {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #fff;
    color: var(--dark-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.header {
    position: relative;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--border);
}

.header .container {
    min-height: 84px;
}

.logo {
    padding: 12px 0;
}

.logo img {
    width: 200px;
    height: auto;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.mitem {
    position: relative;
}

.mlink {
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: #2d3553;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.mdropdown>.mlink::after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    font-size: 13px;
    transition: transform .2s ease;
}

.mdropdown:hover>.mlink,
.mdropdown.is-open>.mlink {
    background: rgba(var(--blue-rgb), .08);
    color: var(--blue);
}

.mdropdown.is-open>.mlink::after,
.mdropdown:hover>.mlink::after {
    transform: rotate(180deg);
}

.msub {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: 720px;
    max-width: min(720px, calc(100vw - 40px));
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    transform: translateY(8px);
}

.msub-single {
    width: 300px;
    display: block
}

.msub {
    --dropdown-left: 0px;
    left: var(--dropdown-left);
}

.mdropdown.is-open .msub,
.mdropdown:hover .msub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.msub::after {
    content: "";
    position: absolute;
    top: -30px;
    width: 100%;
    height: 38px;
}

.mdropdown.is-open .msub,
.mdropdown:hover .msub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.msitem {
    min-width: 0;
}

.msitem a {
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
    transition: background .2s ease, transform .2s ease;
}

.msitem a:hover,
.msitem a:focus-visible {
    background: var(--surface-2);
    outline: none;
}

.msitem i {
    flex: 0 0 42px;
    width: 42px;
    font-size: 35px;
    color: var(--blue);
    margin-top: 2px;
}

.msitem-right strong {
    display: block;
    margin-bottom: 6px;
    color: #1f2a37;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
}

.msitem-right p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

body.mhover::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(2px);
    z-index: 999;
    pointer-events: none;
}

.msub.is-right {
    left: auto;
    right: 0;
}

.msub-domain {
    width: 780px;
    max-width: min(780px, calc(100vw - 40px));
    padding: 0;
}

.domain-menu-top {
    background:
        linear-gradient(135deg, rgba(var(--blue-rgb), .06), rgba(var(--blue-rgb), .02));
    border-bottom: 1px solid var(--border);
    padding: 30px;
}

.domain-menu-head {
    margin-bottom: 30px;
}

.domain-menu-head strong {
    display: block;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 800;
    color: #1a2238;
    margin-bottom: 15px;
    letter-spacing: -.02em;
}

.domain-menu-head p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    max-width: 560px;
}

.domain-menu-search {
    display: block;
}

.domain-search-box {
    display: flex;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.domain-search-prefix {
    flex: 0 0 auto;
    padding: 0 16px 0 18px;
    color: #5d6b82;
    font-size: 15px;
    font-weight: 500;
    border-right: 1px solid var(--border);
    align-self: stretch;
    display: inline-flex;
    align-items: center;
}

.domain-search-box input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    color: #243049;
    outline: none;
    padding: 10px 16px;
}

.domain-search-box input::placeholder {
    color: #8a96a8;
    font-weight: 500;
}

.domain-search-btn {
    border: 0;
    background: rgb(var(--blue-rgb)/ 21%);
    color: var(--blue);
    transition: background .2s ease, transform .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.domain-search-btn:hover {
    background: var(--dark-blue);
}

.domain-search-btn i {
    font-size: 18px;
}

.domain-ext-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.domain-ext-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 21.5555%;
    height: 40px;
    padding: 0 14px;
    border-radius: 14px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    background: rgb(var(--blue-rgb) / 10%);
}

.domain-menu-grid {
    padding: 10px;
}

.domain-menu-grid .msitem a {
    min-height: 110px;
    padding: 18px;
    border-radius: 16px;
}

.domain-menu-grid .msitem i {
    flex: 0 0 44px;
    width: 44px;
    font-size: 28px;
    color: var(--blue);
    margin-top: 0;
}

.domain-menu-grid .msitem-right strong {
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 700;
    color: #1f2a37;
}

.domain-menu-grid .msitem-right p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}





.hero-slide {
    overflow: hidden;
    padding: 56px;
    position: relative;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.14);
    height: 700px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-slide .container {
    display: grid;
    gap: 40px;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    align-items: center;
}

.hero-slide-blue {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, .18), transparent 30%),
        linear-gradient(135deg, #0a4fc7 0%, #0b6bff 45%, #0d8bff 100%);
    color: #fff;
}

.hero-slide-dark {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, .12), transparent 24%),
        linear-gradient(135deg, #0f172a 0%, #13294f 45%, #0b6bff 100%);
    color: #fff;
}

.hero-slide-purple {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, .15), transparent 28%),
        linear-gradient(135deg, #1f2a73 0%, #4036b5 45%, #6b46ff 100%);
    color: #fff;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
}

.hero-title {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -.03em;
}

.hero-title span {
    display: block;
    color: rgba(255, 255, 255, .92);
}

.hero-desc {
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .88);
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-btn {
    min-height: 52px;
    padding: 0 22px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.hero-btn:hover {
    transform: translateY(-1px);
}

.hero-btn-primary {
    background: #fff;
    color: #12305f;
}

.hero-btn-primary:hover {
    background: #eff6ff;
    color: #12305f;
}

.hero-btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .28);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-feature {
    min-width: 150px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
}

.hero-feature strong {
    display: block;
    margin-bottom: 6px;
    font-size: 24px;
    line-height: 1;
    color: #fff;
    font-weight: 800;
}

.hero-feature span {
    display: block;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    font-weight: 600;
}

.hero-visual {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(30px);
}

.hero-glow-1 {
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, .12);
    top: 30px;
    left: 20px;
}

.hero-glow-2 {
    width: 260px;
    height: 260px;
    background: rgba(12, 40, 120, .22);
    right: 0;
    bottom: 0;
}

.hero-server-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 28px;
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(8, 25, 57, .22);
    overflow: hidden;
}

.hero-server-top {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 54px;
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.hero-server-top span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .7);
}

.hero-server-body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 20px;
}

.hero-stat-card {
    min-height: 128px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .10);
}

.hero-stat-card i {
    display: inline-flex;
    margin-bottom: 16px;
    font-size: 28px;
    color: #fff;
}

.hero-stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
    font-weight: 700;
}

.hero-stat-card small {
    display: block;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 500;
}

.hero-mini-domain {
    margin-top: 28px;
    max-width: 560px;
}

.hero-mini-domain-box {
    display: flex;
    align-items: center;
    min-height: 58px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .15);
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.hero-mini-domain-box span {
    padding: 0 16px 0 18px;
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    font-weight: 700;
    border-right: 1px solid rgba(255, 255, 255, .14);
    align-self: stretch;
    display: inline-flex;
    align-items: center;
}

.hero-mini-domain-box input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 0 16px;
    outline: none;
}

.hero-mini-domain-box input::placeholder {
    color: rgba(255, 255, 255, .62);
}

.hero-mini-domain-box button {
    width: 58px;
    height: 58px;
    border: 0;
    background: #fff;
    color: #12305f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-mini-exts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.hero-mini-exts span {
    min-width: 68px;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

.hero-visual-domain {
    overflow: hidden;
}

.domain-orb {
    width: 300px;
    height: 300px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .3), rgba(255, 255, 255, .06));
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 80px rgba(15, 23, 42, .25);
}

.domain-ring {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    border: 1px dashed rgba(255, 255, 255, .25);
    animation: spinRing 18s linear infinite;
}

.domain-card {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 260px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(14px);
}

.domain-card i {
    font-size: 24px;
    color: #fff;
    margin-top: 3px;
}

.domain-card strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
}

.domain-card small {
    display: block;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 500;
}

.domain-card-top {
    top: 52px;
    left: 10px;
}

.domain-card-bottom {
    right: 0;
    bottom: 48px;
}

.hero-visual-servers {
    min-height: 440px;
}

.stack-card {
    position: absolute;
    left: 50%;
    width: 420px;
    height: 110px;
    border-radius: 24px;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .11);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, .20);
}

.stack-card::before {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 24px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    box-shadow:
        0 22px 0 rgba(255, 255, 255, .12),
        0 44px 0 rgba(255, 255, 255, .10);
}

.stack-card-1 {
    top: 60px;
}

.stack-card-2 {
    top: 160px;
    width: 470px;
}

.stack-card-3 {
    top: 260px;
    width: 420px;
}

.stack-badge {
    position: absolute;
    right: 16px;
    top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.hero-controls {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    left: 0;
    bottom: 17px;
    right: 0;
    margin: auto;
    width: max-content;
}

.homePageSlider .swiper-pagination {
    position: static;
    width: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.homePageSlider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    opacity: 1;
    background: #9aa3b1;
}

.homePageSlider .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    background: white;
}

@keyframes spinRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1199px) {
    .hero-slide {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 42px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-visual,
    .hero-visual-domain,
    .hero-visual-servers {
        min-height: 360px;
    }

    .domain-card-top {
        left: 0;
    }

    .domain-card-bottom {
        right: 0;
    }
}

@media (max-width: 767px) {
    .hero {
        padding-top: 18px;
    }

    .hero-slide {
        padding: 24px 20px;
        border-radius: 24px;
        gap: 24px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
    }

    .hero-feature {
        width: 100%;
    }

    .hero-server-body {
        grid-template-columns: 1fr;
    }

    .hero-visual,
    .hero-visual-domain,
    .hero-visual-servers {
        min-height: 280px;
    }

    .domain-ring,
    .domain-card {
        display: none;
    }

    .domain-orb {
        width: 220px;
        height: 220px;
    }

    .stack-card-1,
    .stack-card-2,
    .stack-card-3 {
        width: 100%;
        max-width: 320px;
        height: 88px;
    }

    .stack-card-1 {
        top: 36px;
    }

    .stack-card-2 {
        top: 114px;
    }

    .stack-card-3 {
        top: 192px;
    }

    .stack-badge {
        position: static;
        margin-top: 220px;
    }

    .hero-controls {
        flex-direction: column;
        align-items: flex-start;
    }
}