:root {
    --bg: #07130d;
    --bg-soft: #0d2117;
    --panel: #ffffff;
    --panel-soft: #f2faf6;
    --ink: #13231b;
    --muted: #5c7066;
    --line: #d9ebe2;
    --brand: #06824f;
    --brand-dark: #055f3b;
    --accent: #f1b90b;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(8, 40, 24, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Inter", "Noto Sans Lao", system-ui, sans-serif;
    color: var(--ink);
    background: #f7fbf8;
    line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #fff;
    box-shadow: 0 6px 18px rgba(8, 30, 19, .08);
}
.header-top {
    min-height: 82px;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto auto;
    align-items: center;
    gap: 24px;
}
.brand-logo {
    display: inline-flex;
    align-items: center;
    width: min(300px, 44vw);
}
.brand-logo img {
    width: 230px;
    max-height: 72px;
    object-fit: contain;
    object-position: left center;
}
.header-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111;
    justify-self: end;
    white-space: nowrap;
    font-size: 15px;
}
.header-contact img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand);
    padding: 14px 18px;
    min-width: 250px;
    justify-content: center;
}
.header-actions a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 7px 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}
.header-link {
    border-right: 1px solid rgba(255,255,255,.25);
    border-radius: 0;
}
.header-register {
    background: #0b8f64;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.header-nav-wrap {
    border-top: 1px solid #dcddde;
    background: #fff;
}
.header-nav-row {
    min-height: 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px;
}
.primary-nav {
    display: block;
    overflow: visible;
}
.primary-menu,
.mobile-menu,
.sub-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}
.primary-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2.4vw, 42px);
}
.menu-item {
    position: relative;
}
.primary-menu > .menu-item > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #111;
    min-height: 64px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}
.primary-menu a:hover,
.primary-menu .menu-item.active > a {
    color: var(--brand);
}
.menu-caret {
    color: #8a918e;
    font-size: 10px;
    line-height: 1;
}
.sub-menu {
    min-width: 250px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 60;
    visibility: hidden;
    opacity: 0;
    transform: translateY(8px);
    background: #fff;
    border-top: 2px solid #e9db00;
    box-shadow: 0 14px 28px rgba(0,0,0,.18);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.sub-menu .sub-menu {
    top: -2px;
    left: 100%;
}
.menu-item:hover > .sub-menu,
.menu-item:focus-within > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.sub-menu a {
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    color: #111;
    border-bottom: 1px solid #d8dedb;
    font-family: "Inter", "Noto Sans Lao", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
    white-space: nowrap;
}
.sub-menu li:last-child > a { border-bottom: 0; }
.mobile-menu-button {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce8e2;
    border-radius: 3px;
    background: #fff;
    color: var(--brand);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}
.mobile-menu-panel { display: none; }
.nav-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.nav-icon-link img {
    max-width: 86px;
    max-height: 32px;
    object-fit: contain;
}
.nav-search {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #6b6b6b;
    border: 1px solid #e2e8e4;
    font-size: 20px;
    font-weight: 800;
}
.nav-search:hover {
    color: var(--brand);
    border-color: var(--brand);
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(7, 19, 13, .94);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
}
.topbar-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: .2px;
    white-space: nowrap;
}
.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    color: #052012;
    background: linear-gradient(135deg, #27e089, #87f3bc);
    font-size: 13px;
    font-weight: 900;
}
.nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    overflow-x: auto;
}
.nav a {
    color: rgba(255,255,255,.74);
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
}
.nav a:hover, .nav a.active {
    color: var(--white);
    background: rgba(39, 224, 137, .11);
}
.top-cta {
    color: #062113;
    background: #27e089;
    border-radius: 8px;
    padding: 9px 15px;
    font-weight: 800;
    font-size: 13px;
    white-space: nowrap;
}

.hero, .page-hero {
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(7,109,77,.94), rgba(15,143,102,.88)),
        url('/atphosting24/wp-content/uploads/2020/03/rocket-bg.svg') center/contain no-repeat,
        #f7f7f7;
}
.hero { padding: 92px 0; }
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
    gap: 44px;
    align-items: center;
}
.eyebrow {
    margin: 0 0 12px;
    color: #35e996;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.hero h1, .page-hero h1 {
    margin: 0;
    line-height: 1.08;
    font-size: clamp(36px, 6vw, 70px);
    letter-spacing: 0;
}
.hero-copy, .page-hero p {
    max-width: 700px;
    color: rgba(255,255,255,.76);
    font-size: 17px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}
.atp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid rgba(6,130,79,.24);
    border-radius: 8px;
    color: var(--brand-dark);
    background: #fff;
    font-weight: 800;
    font-size: 14px;
}
.atp-btn-primary {
    color: #062113;
    background: linear-gradient(135deg, #27e089, #8cf5bd);
    border-color: transparent;
}
.atp-btn-small {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 12px;
}
.status-card {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.status-dot {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
    background: #27e089;
    box-shadow: 0 0 0 8px rgba(39,224,137,.12);
}
.status-card h2 { margin: 18px 0 8px; color: #fff; }
.status-card p, .status-card dd { color: rgba(255,255,255,.76); }
.status-card dl { margin: 18px 0 0; display: grid; gap: 10px; }
.status-card div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 10px;
}
.status-card dt { color: rgba(255,255,255,.58); }
.status-card dd { margin: 0; font-weight: 800; }

.home-visual {
    min-height: 370px;
    position: relative;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.82)),
        var(--rocket) center/82% auto no-repeat;
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: 0 22px 55px rgba(3, 48, 30, .22);
    padding: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-content: end;
}
.home-visual-card {
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255,255,255,.9);
    border: 1px solid var(--line);
    box-shadow: 0 10px 25px rgba(8, 56, 35, .1);
    color: var(--brand-dark);
    font-weight: 900;
}
.home-visual-card img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.page-hero { padding: 72px 0 58px; }
.page-hero h1 { max-width: 920px; font-size: clamp(32px, 5vw, 58px); }
.source-page-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(7,109,77,.94), rgba(7,109,77,.74)),
        var(--page-banner) center/cover no-repeat,
        #076d4d;
}
.source-page-hero .eyebrow { color: #e9db00; }
.source-page-hero h1 {
    max-width: 760px;
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 400;
}
.source-page-section { background: #fff; }
.source-page-panel {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding-top: 58px;
    padding-bottom: 58px;
}
.source-page-panel .wp-content {
    width: 100%;
}

.section { padding: 64px 0; }
.section-soft { background: var(--panel-soft); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 28px; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { margin: 0; font-size: clamp(26px, 4vw, 40px); line-height: 1.18; }

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.plan-card, .page-card, .content-panel {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.plan-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.plan-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #effaf5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
}
.plan-icon img {
    max-width: 36px;
    max-height: 36px;
    object-fit: contain;
}
.plan-group {
    margin: 0;
    color: var(--brand);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.plan-card h3 { margin: 0; font-size: 20px; line-height: 1.25; }
.plan-card p { margin: 0; color: var(--muted); font-size: 14px; }
.plan-price {
    margin: 6px 0;
    color: var(--brand-dark);
    font-size: 26px;
    font-weight: 900;
}
.plan-price span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.content-panel { padding: clamp(22px, 4vw, 42px); }
.content-panel.source-page-panel {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding-top: 58px;
    padding-bottom: 58px;
}
.visual-content-panel {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}
.wp-content { font-size: 16px; }
.wp-content h1, .wp-content h2, .wp-content h3 { line-height: 1.2; color: #0d3324; }
.wp-content h1 { font-size: clamp(30px, 4vw, 46px); }
.wp-content h2 { margin-top: 28px; font-size: clamp(24px, 3vw, 34px); }
.wp-content h3 { margin-top: 22px; font-size: 22px; }
.wp-content p, .wp-content li { color: #334a40; }
.wp-content a { color: var(--brand-dark); font-weight: 800; }
.wp-content blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    border-left: 4px solid var(--brand);
    background: #effaf5;
}
.wp-content table { width: 100%; border-collapse: collapse; }
.wp-content td, .wp-content th {
    padding: 10px;
    border: 1px solid var(--line);
    vertical-align: top;
}

.page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.page-grid.wide { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.page-card {
    padding: 18px;
    transition: transform .2s ease, border-color .2s ease;
}
.page-card:hover {
    border-color: rgba(6,130,79,.35);
    transform: translateY(-2px);
}
.page-card span {
    display: block;
    color: #0d3324;
    font-weight: 800;
    line-height: 1.3;
}
.page-card small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    word-break: break-word;
}
.center-link { margin-top: 24px; text-align: center; }
.center-link a { color: var(--brand-dark); font-weight: 900; }

.source-link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.source-link-card {
    min-height: 132px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-content: center;
    column-gap: 14px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(8, 40, 24, .08);
    transition: transform .2s ease, border-color .2s ease;
}
.source-link-card:hover {
    border-color: rgba(6,130,79,.4);
    transform: translateY(-2px);
}
.source-link-card img {
    grid-row: span 2;
    width: 44px;
    height: 44px;
    object-fit: contain;
    align-self: start;
}
.source-link-card span {
    display: block;
    color: #0d3324;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
}
.source-link-card small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}
.directory-groups {
    display: grid;
    gap: 32px;
}
.directory-group h3 {
    margin: 0 0 14px;
    color: var(--brand-dark);
    font-size: 22px;
    line-height: 1.25;
}

.atp-system-page {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 24px;
    max-width: 820px;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(8, 40, 24, .08);
}
.atp-system-icon {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #effaf5;
    border: 1px solid var(--line);
}
.atp-system-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}
.atp-system-page h2 {
    margin-top: 0;
}
.atp-system-page ol {
    margin: 18px 0 0;
    padding-left: 20px;
}
.atp-system-page li {
    margin: 6px 0;
}

.table-wrap {
    overflow-x: auto;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.price-table {
    min-width: 620px;
    width: 100%;
    border-collapse: collapse;
}
.price-table th, .price-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}
.price-table th {
    color: var(--brand-dark);
    background: #effaf5;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.price-table td:first-child {
    font-weight: 900;
}

.footer {
    color: rgba(255,255,255,.76);
    background: #07130d;
}
.footer-contact-strip {
    background: #0b5d47;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
}
.footer-contact-card {
    min-height: 118px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 24px 26px;
    background: rgba(255,255,255,.035);
}
.footer-contact-card img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}
.footer-contact-card strong {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
}
.footer-contact-card span {
    display: block;
    margin-top: 5px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.55;
}
.footer-contact-card a:hover { color: #fff; }
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.55fr repeat(3, minmax(0, .8fr));
    gap: 36px;
    padding: 54px 0 42px;
}
.footer h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.footer-about p {
    max-width: 460px;
    margin: 0 0 10px;
    color: rgba(255,255,255,.7);
    font-size: 14px;
}
.footer-mark {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    padding: 8px 10px;
    border-radius: 4px;
    background: #fff;
}
.footer-mark img {
    width: 220px;
    max-height: 54px;
    object-fit: contain;
    object-position: left center;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-links a {
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.45;
    transition: color .2s ease, transform .2s ease;
}
.footer-links a:hover {
    color: #35e996;
    transform: translateX(3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.09);
    background: rgba(0,0,0,.18);
}
.footer-bottom-row {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255,255,255,.58);
    font-size: 13px;
}

@media (max-width: 980px) {
    .header-top {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 14px 0;
        gap: 12px;
    }
    .brand-logo img { object-position: center; }
    .header-contact { justify-self: center; }
    .header-actions { width: min(100%, 320px); min-width: 0; }
    .header-nav-row { min-height: 54px; display: flex; justify-content: flex-end; }
    .primary-nav { display: none; }
    .nav-icon-link { display: none; }
    .mobile-menu-button { display: inline-flex; }
    .mobile-menu-panel {
        border-top: 1px solid #e1e8e4;
        background: #fff;
        box-shadow: 0 12px 20px rgba(8,30,19,.08);
    }
    .site-header.mobile-menu-open .mobile-menu-panel { display: block; }
    .mobile-menu {
        padding: 12px 0 18px;
        display: grid;
        gap: 2px;
    }
    .mobile-menu a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 36px;
        color: #101513;
        font-size: 13px;
        font-weight: 700;
        border-bottom: 1px solid #edf3ef;
    }
    .mobile-menu .sub-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        transform: none;
        min-width: 0;
        margin: 0 0 6px 14px;
        border: 0;
        box-shadow: none;
        background: transparent;
    }
    .mobile-menu .sub-menu a {
        min-height: 30px;
        padding: 6px 0;
        color: #596d63;
        border-bottom: 0;
        font-size: 12px;
        font-weight: 600;
        text-transform: none;
    }
    .hero-grid, .footer-main-grid, .footer-contact-grid { grid-template-columns: 1fr; }
    .footer-contact-card { min-height: 92px; }
    .footer-bottom-row { flex-direction: column; justify-content: center; text-align: center; padding: 14px 0; }
    .plan-grid, .page-grid, .page-grid.wide, .source-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .hero, .page-hero { padding: 52px 0; }
    .section { padding: 46px 0; }
    .plan-grid, .page-grid, .page-grid.wide, .source-link-grid { grid-template-columns: 1fr; }
    .source-link-card { min-height: 108px; }
    .atp-system-page { grid-template-columns: 1fr; padding: 22px; }
    .atp-system-icon { width: 72px; height: 72px; }
    .home-visual { grid-template-columns: 1fr; min-height: 0; background-size: 100% auto; }
    .header-contact { font-size: 13px; }
    .source-page-hero { min-height: 240px; }
    .source-page-panel { padding-top: 38px; padding-bottom: 38px; }
    .footer-main-grid { gap: 24px; padding: 38px 0 30px; }
    .footer-contact-card { grid-template-columns: 44px minmax(0, 1fr); padding: 20px 18px; }
    .footer-contact-card img { width: 36px; height: 36px; }
    .footer-mark img { width: 190px; }
}

/* Dark ATPHosting24 refresh */
:root {
    --bg: #060e06;
    --bg-soft: #0a1a0a;
    --panel: #122a12;
    --panel-soft: #0e240e;
    --ink: #e8f5e9;
    --muted: #a5d6a7;
    --line: rgba(0, 230, 118, .13);
    --brand: #00e676;
    --brand-dark: #00c853;
    --accent: #ffd740;
    --white: #ffffff;
    --shadow: 0 22px 55px rgba(0, 0, 0, .32);
}

@keyframes atpFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes atpGlowPulse {
    0%, 100% { box-shadow: 0 0 18px rgba(0, 230, 118, .18); }
    50% { box-shadow: 0 0 34px rgba(0, 230, 118, .34); }
}
@keyframes atpShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes atpTicker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes atpFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

body.atp-cake {
    font-family: "Noto Sans Lao", "Inter", system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
}
body.atp-cake::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body.atp-cake main,
body.atp-cake .site-header,
body.atp-cake .footer {
    position: relative;
    z-index: 1;
}
body.atp-cake .shell {
    min-width: 0;
}
.material-icons,
.material-icons-outlined,
.material-icons-round {
    font-family: "Material Icons Round" !important;
    font-weight: normal !important;
    font-style: normal !important;
    line-height: 1;
    vertical-align: middle;
    letter-spacing: normal !important;
    text-transform: none !important;
    white-space: nowrap !important;
    word-wrap: normal !important;
    direction: ltr !important;
    -webkit-font-feature-settings: "liga" !important;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "liga" !important;
}
body.material-icons-fallback .material-icons,
body.material-icons-fallback .material-icons-outlined,
body.material-icons-fallback .material-icons-round {
    width: 1em;
    min-width: 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", "Noto Sans Lao", system-ui, sans-serif !important;
    font-size: 0 !important;
    font-feature-settings: normal !important;
}
body.material-icons-fallback .material-icons::before,
body.material-icons-fallback .material-icons-outlined::before,
body.material-icons-fallback .material-icons-round::before {
    content: attr(data-fallback);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
}
::selection {
    color: #041006;
    background: var(--brand);
}

.site-header {
    background: rgba(6, 14, 6, .94);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .32);
    backdrop-filter: blur(22px);
}
.site-utility {
    background: rgba(0, 0, 0, .38);
    border-bottom: 1px solid rgba(0, 230, 118, .09);
    color: #66bb6a;
    font-size: 12px;
}
.site-utility-row,
.site-utility-left,
.site-utility-right,
.utility-item {
    display: flex;
    align-items: center;
}
.site-utility-row {
    min-height: 34px;
    justify-content: space-between;
    gap: 16px;
}
.site-utility-left,
.site-utility-right {
    gap: 16px;
    flex-wrap: wrap;
}
.utility-item {
    gap: 5px;
    white-space: nowrap;
    transition: color .2s ease;
}
.utility-item .material-icons-round {
    color: var(--brand);
    font-size: 15px;
}
a.utility-item:hover {
    color: var(--brand);
}
.header-top {
    min-height: 78px;
    gap: 18px;
}
.brand-logo {
    width: auto;
    max-width: min(300px, 46vw);
    padding: 7px 11px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 26px rgba(0, 0, 0, .18);
}
.brand-logo img {
    width: 220px;
    max-height: 58px;
}
.header-contact {
    color: var(--muted);
    padding: 9px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(0, 230, 118, .045);
}
.header-contact strong {
    color: var(--ink);
    font-weight: 700;
}
.header-actions {
    min-width: 230px;
    padding: 11px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    box-shadow: 0 10px 28px rgba(0, 230, 118, .2);
}
.header-actions a {
    color: #041006;
    border-radius: 9px;
}
.header-link {
    border-right: 1px solid rgba(4, 16, 6, .2);
}
.header-register {
    background: rgba(255, 255, 255, .22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
}
.header-nav-wrap {
    background: rgba(6, 14, 6, .88);
    border-top: 1px solid rgba(0, 230, 118, .08);
}
.header-nav-row {
    min-height: 58px;
}
.primary-menu {
    gap: clamp(8px, 1.9vw, 28px);
}
.primary-menu > .menu-item > a {
    min-height: 58px;
    color: #a5d6a7;
    font-size: 13px;
    font-weight: 700;
}
.primary-menu a:hover,
.primary-menu .menu-item.active > a {
    color: var(--brand);
}
.menu-caret {
    color: #388e3c;
}
.sub-menu {
    min-width: 255px;
    background: #0a1a0a;
    border: 1px solid var(--line);
    border-top: 2px solid var(--accent);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .42);
}
.sub-menu a {
    color: #a5d6a7;
    border-bottom: 1px solid rgba(0, 230, 118, .08);
}
.sub-menu a:hover {
    color: var(--brand);
    background: rgba(0, 230, 118, .045);
}
.nav-icon-link,
.nav-search,
.mobile-menu-button {
    border-color: var(--line);
    background: rgba(0, 230, 118, .045);
    color: var(--brand);
}
.nav-icon-link {
    width: 88px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 10px;
}
.nav-icon-link img {
    filter: drop-shadow(0 5px 12px rgba(0, 0, 0, .25));
}
.nav-search:hover,
.mobile-menu-button:hover {
    color: #041006;
    border-color: var(--brand);
    background: var(--brand);
}

.hero,
.page-hero {
    position: relative;
    overflow: hidden;
    color: var(--ink);
    background:
        linear-gradient(170deg, #060e06 0%, #0d2e0d 42%, #081e08 100%);
}
.hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .1;
    background-image:
        linear-gradient(rgba(0, 230, 118, .18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 230, 118, .18) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 86%);
}
.hero > .shell,
.page-hero > .shell {
    position: relative;
    z-index: 1;
}
.hero {
    padding: 82px 0 92px;
}
.hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: clamp(32px, 5vw, 68px);
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 15px;
    color: var(--brand);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .18em;
}
.eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 12px rgba(0, 230, 118, .8);
}
.hero h1,
.page-hero h1 {
    max-width: 850px;
    color: var(--ink);
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.12;
    text-shadow: 0 14px 40px rgba(0, 0, 0, .32);
}
.hero-copy,
.page-hero p {
    color: #a5d6a7;
    line-height: 1.9;
}
.hero-actions {
    gap: 14px;
    margin-top: 30px;
}
.atp-btn {
    min-height: 43px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--brand);
    background: rgba(0, 230, 118, .04);
    box-shadow: none;
    transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
}
.atp-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 230, 118, .35);
    background: rgba(0, 230, 118, .09);
    color: var(--ink);
}
.atp-btn-primary {
    color: #041006;
    border-color: transparent;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    box-shadow: 0 9px 24px rgba(0, 230, 118, .22);
    position: relative;
    overflow: hidden;
}
.atp-btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
    transition: transform .55s ease;
}
.atp-btn-primary:hover::before {
    transform: translateX(100%);
}
.atp-btn-small {
    min-height: 38px;
}
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 34px;
}
.hero-stats div {
    min-width: 108px;
}
.hero-stats strong {
    display: block;
    color: var(--brand);
    font-family: "DM Mono", monospace;
    font-size: 26px;
    line-height: 1.05;
}
.hero-stats span {
    display: block;
    margin-top: 4px;
    color: #388e3c;
    font-size: 12px;
}
.home-visual {
    min-height: 390px;
    align-content: end;
    border: 1px solid rgba(0, 230, 118, .18);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(18, 42, 18, .92), rgba(6, 14, 6, .96)),
        var(--rocket) center 36px / 70% auto no-repeat;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}
.home-visual::before {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 22px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
    opacity: .82;
    background-size: 200% 100%;
    animation: atpShimmer 4s linear infinite;
}
.home-visual::after {
    content: "ATPHOSTING24 CLOUD";
    position: absolute;
    top: 42px;
    right: 22px;
    color: #388e3c;
    font-family: "DM Mono", monospace;
    font-size: 11px;
    letter-spacing: .08em;
}
.home-visual-card {
    min-height: 112px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(18, 42, 18, .94), rgba(10, 26, 10, .98));
    box-shadow: 0 15px 35px rgba(0, 0, 0, .24);
    animation: atpFadeUp .6s ease both;
}
.home-visual-card:nth-child(2) { animation-delay: .08s; }
.home-visual-card:nth-child(3) { animation-delay: .16s; }
.home-visual-card:nth-child(4) { animation-delay: .24s; }
.home-visual-card img {
    filter: drop-shadow(0 0 8px rgba(0, 230, 118, .25));
}
.home-visual-card span {
    color: var(--muted);
}

.service-ticker {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(0, 230, 118, .028);
}
.service-ticker-track {
    display: flex;
    width: max-content;
    gap: 42px;
    padding: 11px 0;
    white-space: nowrap;
    animation: atpTicker 28s linear infinite;
}
.service-ticker span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #66bb6a;
    font-size: 12.5px;
}
.service-ticker .material-icons-round {
    color: var(--brand);
    font-size: 16px;
}
.system-status-section {
    padding: 20px 0 4px;
    background: var(--bg);
}
.hosting-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    padding: 13px 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(0, 230, 118, .045);
}
.hosting-status-left,
.hosting-status-right,
.hosting-status-right span {
    display: flex;
    align-items: center;
}
.hosting-status-left {
    gap: 9px;
    color: #a5d6a7;
    font-size: 13px;
}
.hosting-status-left strong {
    color: var(--brand);
}
.hosting-status-right {
    gap: 16px;
    flex-wrap: wrap;
}
.hosting-status-right span {
    gap: 5px;
    color: #388e3c;
    font-size: 12px;
}
.hosting-status-right .material-icons-round {
    color: var(--brand);
    font-size: 15px;
}
.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 6px rgba(0, 230, 118, .1), 0 0 12px rgba(0, 230, 118, .8);
}

.section {
    padding: 72px 0;
    background: var(--bg);
}
.section-soft {
    background: linear-gradient(180deg, var(--bg) 0%, var(--panel-soft) 50%, var(--bg) 100%);
}
.section-head h2,
.directory-group h3 {
    color: var(--ink);
}
.section-head p,
.section-head .eyebrow {
    color: var(--brand);
}
.section-head.left {
    max-width: 820px;
}
.plan-card,
.page-card,
.content-panel,
.source-link-card,
.table-wrap,
.atp-system-page {
    color: var(--ink);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(18, 42, 18, .9), rgba(6, 14, 6, .96));
    box-shadow: var(--shadow);
}
.plan-card,
.page-card,
.source-link-card,
.atp-system-page {
    position: relative;
    overflow: hidden;
}
.plan-card::before,
.page-card::before,
.source-link-card::before,
.atp-system-page::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    opacity: 0;
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
    transition: opacity .25s ease;
}
.plan-card:hover::before,
.page-card:hover::before,
.source-link-card:hover::before,
.atp-system-page:hover::before {
    opacity: 1;
}
.plan-card:hover,
.page-card:hover,
.source-link-card:hover {
    border-color: rgba(0, 230, 118, .26);
    transform: translateY(-4px);
}
.plan-icon,
.atp-system-icon {
    border-color: var(--line);
    background: rgba(0, 230, 118, .06);
}
.plan-icon img,
.source-link-card img,
.atp-system-icon img {
    filter: drop-shadow(0 0 8px rgba(0, 230, 118, .22));
}
.plan-group {
    color: var(--brand);
}
.plan-card h3,
.page-card span,
.source-link-card span,
.atp-system-page h2 {
    color: var(--ink);
}
.plan-card p,
.page-card small,
.source-link-card small,
.atp-system-page li {
    color: #66bb6a;
}
.plan-price {
    color: var(--brand);
    font-family: "DM Mono", monospace;
}
.plan-price span {
    color: #388e3c;
}
.content-panel {
    border-radius: 18px;
}
.content-panel.source-page-panel {
    padding: clamp(24px, 4vw, 46px);
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(18, 42, 18, .9), rgba(6, 14, 6, .96));
    box-shadow: var(--shadow);
}
.visual-content-panel {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}
.source-page-section {
    background: var(--bg);
}
.source-page-hero {
    min-height: 320px;
    background:
        linear-gradient(90deg, rgba(6, 14, 6, .96), rgba(13, 46, 13, .76)),
        var(--page-banner) center / cover no-repeat,
        #081e08;
}
.source-page-hero .eyebrow {
    color: var(--brand);
}
.source-page-hero h1 {
    font-weight: 800;
}
.wp-content {
    color: var(--muted);
}
.content-panel:not(.visual-content-panel) .wp-content h1,
.content-panel:not(.visual-content-panel) .wp-content h2,
.content-panel:not(.visual-content-panel) .wp-content h3,
.content-panel:not(.visual-content-panel) .wp-content h4 {
    color: var(--ink);
}
.content-panel:not(.visual-content-panel) .wp-content p,
.content-panel:not(.visual-content-panel) .wp-content li {
    color: #a5d6a7;
}
.content-panel:not(.visual-content-panel) .wp-content a,
.center-link a {
    color: var(--brand);
}
.content-panel:not(.visual-content-panel) .wp-content blockquote {
    color: var(--muted);
    border-left-color: var(--brand);
    background: rgba(0, 230, 118, .055);
}
.content-panel:not(.visual-content-panel) .wp-content td,
.content-panel:not(.visual-content-panel) .wp-content th {
    border-color: var(--line);
}
.source-link-card {
    border-radius: 14px;
}
.table-wrap {
    background: rgba(6, 14, 6, .96);
    border-radius: 14px;
}
.price-table th,
.price-table td {
    border-bottom-color: rgba(255, 255, 255, .035);
}
.price-table th {
    color: var(--brand);
    background: rgba(0, 230, 118, .06);
}
.price-table td {
    color: var(--muted);
}
.price-table td:first-child {
    color: var(--ink);
}

.footer {
    color: #66bb6a;
    border-top: 1px solid var(--line);
    background: rgba(0, 0, 0, .35);
}
.footer-contact-strip {
    background: rgba(0, 230, 118, .045);
    border-color: var(--line);
}
.footer-contact-card {
    background: transparent;
    border-right: 1px solid rgba(0, 230, 118, .06);
}
.footer-contact-card:last-child {
    border-right: 0;
}
.footer-contact-card strong,
.footer h3 {
    color: var(--ink);
}
.footer-contact-card span,
.footer-about p,
.footer-links a,
.footer-bottom-row {
    color: #66bb6a;
}
.footer-contact-card a:hover,
.footer-links a:hover {
    color: var(--brand);
}
.footer-mark {
    border-radius: 10px;
    background: rgba(255, 255, 255, .96);
}
.footer-bottom {
    border-top: 1px solid var(--line);
    background: rgba(0, 0, 0, .24);
}

.floating-top,
.floating-whatsapp {
    position: fixed;
    right: 24px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform .25s ease, opacity .25s ease, background .25s ease;
}
.floating-top {
    bottom: 88px;
    width: 44px;
    height: 44px;
    color: var(--brand);
    border: 1px solid var(--line);
    background: #122a12;
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
}
.floating-top.show {
    opacity: 1;
    pointer-events: auto;
}
.floating-top:hover {
    color: #041006;
    background: var(--brand);
    transform: translateY(-2px);
}
.floating-whatsapp {
    bottom: 24px;
    width: 54px;
    height: 54px;
    color: #fff;
    background: #25d366;
    box-shadow: 0 10px 28px rgba(37, 211, 102, .35);
}
.floating-whatsapp:hover {
    transform: scale(1.06);
}
.floating-top .material-icons-round,
.floating-whatsapp .material-icons-round {
    font-size: 25px;
}

@media (max-width: 980px) {
    .site-utility-row {
        justify-content: center;
    }
    .site-utility-left {
        display: none;
    }
    .header-top {
        grid-template-columns: 1fr;
    }
    .header-contact {
        justify-self: center;
    }
    .header-nav-row {
        background: transparent;
    }
    .mobile-menu-panel {
        border-top-color: var(--line);
        background: #0a1a0a;
        box-shadow: 0 18px 34px rgba(0, 0, 0, .34);
    }
    .mobile-menu a {
        color: var(--ink);
        border-bottom-color: rgba(0, 230, 118, .08);
    }
    .mobile-menu .sub-menu a {
        color: #66bb6a;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .home-visual {
        order: -1;
    }
}

@media (max-width: 640px) {
    .site-utility-row {
        width: min(100% - 24px, 360px);
    }
    .site-utility-right {
        width: 100%;
        justify-content: center;
        gap: 12px;
    }
    .brand-logo {
        max-width: 100%;
    }
    .brand-logo img {
        width: 210px;
    }
    .header-actions {
        width: 100%;
        max-width: 330px;
    }
    .header-actions a {
        flex: 1;
        min-width: 0;
        padding-left: 8px;
        padding-right: 8px;
    }
    .header-nav-row {
        width: min(100% - 32px, 358px);
        overflow: hidden;
    }
    .nav-search,
    .mobile-menu-button {
        flex: 0 0 40px;
    }
    .hero,
    .page-hero {
        padding: 54px 0 62px;
    }
    .hero h1,
    .page-hero h1 {
        max-width: 100%;
        font-size: clamp(28px, 9.7vw, 38px);
        overflow-wrap: anywhere;
    }
    .hero-copy,
    .page-hero p {
        max-width: 100%;
    }
    .hero-stats {
        gap: 16px;
    }
    .home-visual {
        grid-template-columns: 1fr;
        min-height: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding-top: 86px;
    }
    .home-visual::after {
        left: 40px;
        right: auto;
        max-width: calc(100% - 64px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .hosting-status {
        align-items: flex-start;
    }
    .hosting-status-right {
        gap: 10px;
    }
    .service-ticker-track {
        gap: 28px;
    }
    .floating-top {
        right: 82px;
        bottom: 24px;
    }
}

@media (max-width: 520px) {
    body.atp-cake .shell {
        width: min(358px, calc(100% - 32px));
        margin-left: 16px;
        margin-right: auto;
    }
    .site-utility-row {
        width: min(358px, calc(100% - 32px));
        margin-left: 16px;
        margin-right: auto;
    }
    .header-top {
        justify-items: stretch;
    }
    .brand-logo,
    .header-contact,
    .header-actions {
        justify-self: stretch;
        margin-left: 0;
        margin-right: 0;
    }
    .brand-logo {
        justify-content: center;
    }
    .header-actions {
        max-width: none;
    }
    .header-nav-row {
        width: min(358px, calc(100% - 32px));
        margin-left: 16px;
        margin-right: auto;
    }
}

/* Responsive comfort pass */
html,
body.atp-cake {
    max-width: 100%;
}

body.atp-cake .site-header {
    overflow: visible;
}

@media (min-width: 981px) and (max-width: 1180px) {
    body.atp-cake .shell {
        width: min(100% - 32px, 1120px);
    }

    .brand-logo img {
        width: 190px;
    }

    .header-contact {
        padding: 8px 12px;
        font-size: 13px;
    }

    .header-actions {
        min-width: 206px;
        padding: 9px;
    }

    .primary-menu {
        gap: clamp(8px, 1.25vw, 18px);
    }

    .primary-menu > .menu-item > a {
        font-size: 12.5px;
    }

    .nav-icon-link {
        width: 78px;
    }
}

@media (min-width: 641px) and (max-width: 980px) {
    .site-header {
        position: relative;
    }

    .header-top {
        grid-template-columns: minmax(220px, .8fr) minmax(260px, 1fr);
        justify-items: stretch;
        padding: 14px 0 12px;
        gap: 12px 18px;
    }

    .brand-logo {
        grid-column: 1;
        grid-row: 1;
        justify-content: center;
        max-width: none;
        width: 100%;
        min-height: 72px;
    }

    .brand-logo img {
        width: 210px;
        object-position: center;
    }

    .header-contact {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: center;
        width: min(100%, 360px);
        justify-content: center;
    }

    .header-actions {
        grid-column: 2;
        grid-row: 1;
        align-self: stretch;
        width: 100%;
        max-width: none;
        min-width: 0;
    }

    .header-nav-row {
        min-height: 58px;
        justify-content: space-between;
    }

    .nav-search {
        margin-left: auto;
    }

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

    .footer-contact-card {
        grid-template-columns: 42px minmax(0, 1fr);
        padding: 20px 14px;
    }

    .footer-contact-card img {
        width: 34px;
        height: 34px;
    }

    .footer-contact-card strong {
        font-size: 14px;
    }

    .footer-contact-card span {
        font-size: 12px;
    }

    .footer-main-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 980px) {
    .site-header {
        position: relative;
    }

    .site-header.mobile-menu-open {
        z-index: 80;
    }

    .header-nav-row {
        display: flex;
        gap: 12px;
    }

    .mobile-menu-panel {
        max-height: min(72vh, 620px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .mobile-menu {
        padding: 12px 0 16px;
    }

    .mobile-menu a {
        min-height: 42px;
        padding: 8px 2px;
        line-height: 1.35;
    }

    .mobile-menu .sub-menu {
        margin-left: 16px;
        padding-left: 12px;
        border-left: 1px solid rgba(0, 230, 118, .13);
    }

    .hero-grid {
        gap: 28px;
    }

    .home-visual {
        order: initial;
    }
}

@media (max-width: 640px) {
    .site-header {
        box-shadow: 0 10px 24px rgba(0, 0, 0, .26);
    }

    .site-utility {
        font-size: 11px;
    }

    .site-utility-row {
        min-height: 32px;
    }

    .site-utility-right {
        justify-content: space-between;
        gap: 8px;
    }

    .header-top {
        padding: 10px 0 12px;
        gap: 10px;
    }

    .brand-logo {
        width: 100%;
        min-height: 72px;
        justify-content: center;
        padding: 8px 10px;
        border-radius: 12px;
    }

    .brand-logo img {
        width: min(210px, 70vw);
        object-position: center;
    }

    .header-contact {
        width: 100%;
        justify-content: center;
        padding: 9px 12px;
        font-size: 12.5px;
        overflow: hidden;
    }

    .header-contact strong {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .header-actions {
        padding: 10px;
        border-radius: 12px;
    }

    .header-actions a {
        min-height: 38px;
        font-size: 12px;
    }

    .header-nav-row {
        min-height: 56px;
        justify-content: flex-end;
    }

    .nav-search,
    .mobile-menu-button {
        width: 40px;
        height: 40px;
    }

    .mobile-menu-panel .shell {
        width: calc(100% - 24px);
    }

    .hero {
        padding: 42px 0 50px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-actions .atp-btn {
        width: 100%;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .hero-stats strong {
        font-size: clamp(20px, 7vw, 24px);
    }

    .hero-stats span {
        font-size: 10.5px;
    }

    .home-visual {
        padding: 72px 18px 18px;
        border-radius: 16px;
    }

    .home-visual-card {
        min-height: 92px;
        padding: 14px;
    }

    .hosting-status {
        padding: 14px;
    }

    .hosting-status-left,
    .hosting-status-right {
        width: 100%;
    }

    .hosting-status-right {
        display: grid;
        grid-template-columns: 1fr;
    }

    .footer-contact-grid {
        gap: 0;
    }

    .footer-contact-card {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 230, 118, .08);
    }

    .footer-contact-card:last-child {
        border-bottom: 0;
    }

    .footer-main-grid {
        text-align: left;
    }

    .footer-links {
        gap: 8px;
    }

    .footer-bottom-row {
        font-size: 12px;
    }
}

@media (max-width: 520px) {
    body.atp-cake .shell,
    .site-utility-row,
    .header-nav-row {
        width: calc(100% - 24px);
        margin-left: auto;
        margin-right: auto;
    }

    .site-utility-right {
        width: 100%;
    }

    .header-top {
        justify-items: center;
    }

    .brand-logo,
    .header-contact,
    .header-actions {
        justify-self: center;
        max-width: none;
    }
}

@media (max-width: 380px) {
    body.atp-cake .shell,
    .site-utility-row,
    .header-nav-row {
        width: calc(100% - 32px);
    }

    .site-utility {
        font-size: 10.5px;
    }

    .site-utility-right {
        gap: 6px;
    }

    .utility-item {
        gap: 3px;
    }

    .utility-item .material-icons-round {
        font-size: 13px;
    }

    .header-actions a {
        padding-left: 6px;
        padding-right: 6px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 31px;
    }

    .hero-copy,
    .page-hero p {
        font-size: 15px;
    }
}

@media (max-width: 430px) {
    body.atp-cake .shell,
    .site-utility-row,
    .header-nav-row {
        width: calc(100% - 32px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    body.atp-cake .hero h1,
    body.atp-cake .page-hero h1 {
        font-size: clamp(27px, 7.5vw, 30px) !important;
        line-height: 1.18 !important;
        max-width: 100% !important;
        text-wrap: balance;
        overflow-wrap: anywhere;
    }

    body.atp-cake .hero-copy,
    body.atp-cake .page-hero p {
        font-size: 15px !important;
    }

    body.atp-cake .header-actions {
        gap: 8px;
    }

    body.atp-cake .header-actions a {
        min-height: 38px;
        font-size: 12px;
    }

    body.atp-cake .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    body.atp-cake .hero-stats div {
        min-width: 0 !important;
    }

    body.atp-cake .hero-stats strong {
        font-size: clamp(19px, 6.1vw, 22px) !important;
    }

    body.atp-cake .hero-stats span {
        font-size: 10px !important;
    }
}

/* Final mobile header and viewport safety pass */
body.atp-cake {
    overflow-x: clip;
}

@media (max-width: 640px) {
    body.atp-cake .header-top {
        width: calc(100% - 24px);
        margin-left: auto;
        margin-right: auto;
    }

    body.atp-cake .header-actions {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        gap: 8px;
        overflow: hidden;
    }

    body.atp-cake .header-actions a {
        width: 100%;
        min-width: 0;
        padding: 8px 6px;
        overflow: hidden;
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    body.atp-cake .header-link {
        border-right: 0;
        box-shadow: inset -1px 0 0 rgba(4, 16, 6, .16);
    }

    body.atp-cake .site-utility-right {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, auto));
        justify-content: center;
    }

    body.atp-cake .utility-item {
        min-width: 0;
    }

    body.atp-cake .home-visual,
    body.atp-cake .hero-grid,
    body.atp-cake .plan-grid,
    body.atp-cake .page-grid,
    body.atp-cake .source-link-grid,
    body.atp-cake .footer-contact-grid,
    body.atp-cake .footer-main-grid {
        max-width: 100%;
    }
}

@media (max-width: 380px) {
    body.atp-cake .site-utility-right {
        grid-template-columns: repeat(2, minmax(0, auto));
    }

    body.atp-cake .site-utility-right .utility-item:last-child {
        display: none;
    }
}

/* Homepage hosting plan showcase */
body.atp-cake .hosting-plans-section {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 8vw, 92px) 0;
    background:
        linear-gradient(180deg, rgba(6, 14, 6, .98), rgba(9, 20, 29, .96)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 72px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 72px);
}

body.atp-cake .hosting-plans-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(0, 230, 118, .13), transparent 32%, rgba(79, 172, 254, .12) 66%, transparent);
}

body.atp-cake .hosting-plans-section > .shell {
    position: relative;
    z-index: 1;
}

body.atp-cake .hosting-plans-head {
    max-width: 780px;
    margin: 0 auto 26px;
    text-align: center;
}

body.atp-cake .hosting-plans-head .eyebrow {
    margin: 0 0 10px;
    color: #82f2b5;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

body.atp-cake .hosting-plans-head h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(30px, 4.6vw, 52px);
    line-height: 1.12;
    font-weight: 900;
}

body.atp-cake .hosting-plans-head p {
    margin: 14px auto 0;
    max-width: 680px;
    color: rgba(232, 245, 233, .76);
    font-size: clamp(15px, 2vw, 17px);
}

body.atp-cake .hosting-guarantees {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, auto));
    justify-content: center;
    gap: 12px;
    margin: 0 auto 28px;
}

body.atp-cake .hosting-guarantee-item {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    color: rgba(255, 255, 255, .84);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
}

body.atp-cake .hosting-guarantee-item .material-icons-round {
    color: #82f2b5;
    font-size: 21px;
}

body.atp-cake .hosting-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

body.atp-cake .hosting-plan-card {
    --plan-accent: #82f2b5;
    --plan-accent-2: #1fd686;
    position: relative;
    min-width: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 24px 20px 20px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
    box-shadow: 0 20px 48px rgba(0, 0, 0, .26);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

body.atp-cake .hosting-plan-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(90deg, var(--plan-accent), var(--plan-accent-2));
}

body.atp-cake .hosting-plan-card:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--plan-accent) 62%, rgba(255, 255, 255, .12));
    box-shadow: 0 26px 68px rgba(0, 0, 0, .34);
}

body.atp-cake .hosting-plan-card--shared {
    --plan-accent: #7c9cff;
    --plan-accent-2: #42d2ff;
}

body.atp-cake .hosting-plan-card--reseller {
    --plan-accent: #ff8fb5;
    --plan-accent-2: #ffbf69;
}

body.atp-cake .hosting-plan-card--dedicated {
    --plan-accent: #4facfe;
    --plan-accent-2: #00f2fe;
}

body.atp-cake .hosting-plan-card--vps {
    --plan-accent: #43e97b;
    --plan-accent-2: #38f9d7;
}

body.atp-cake .hosting-plan-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    color: #06100d;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--plan-accent), var(--plan-accent-2));
    box-shadow: 0 14px 28px color-mix(in srgb, var(--plan-accent) 28%, transparent);
}

body.atp-cake .hosting-plan-icon .material-icons-round {
    font-size: 30px;
}

body.atp-cake .hosting-plan-card h3 {
    margin: 0;
    padding-right: 72px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.22;
    font-weight: 900;
}

body.atp-cake .hosting-plan-tagline {
    min-height: 48px;
    margin: 9px 0 0;
    color: rgba(232, 245, 233, .68);
    font-size: 13px;
    line-height: 1.55;
}

body.atp-cake .hosting-plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 18px 0 12px;
    color: #ffffff;
}

body.atp-cake .hosting-plan-amount {
    color: #ffffff;
    font-family: "Inter", "Noto Sans Lao", system-ui, sans-serif;
    font-size: clamp(30px, 3.1vw, 38px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

body.atp-cake .hosting-plan-period {
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
    font-weight: 800;
}

body.atp-cake .hosting-plan-features {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

body.atp-cake .hosting-plan-features li {
    min-height: 36px;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    gap: 9px;
    padding: 9px 0;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    line-height: 1.35;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

body.atp-cake .hosting-plan-features li:last-child {
    border-bottom: 0;
}

body.atp-cake .hosting-plan-features .material-icons-round {
    margin-top: 1px;
    color: var(--plan-accent);
    font-size: 18px;
}

body.atp-cake .hosting-plan-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding: 12px 14px;
    color: #06100d;
    font-size: 15px;
    font-weight: 900;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--plan-accent), var(--plan-accent-2));
    box-shadow: 0 14px 30px color-mix(in srgb, var(--plan-accent) 22%, transparent);
}

body.atp-cake .hosting-plan-button:hover {
    transform: translateY(-2px);
}

body.atp-cake .hosting-plan-button .material-icons-round {
    font-size: 20px;
}

body.atp-cake .hosting-plan-badge {
    position: absolute;
    top: 16px;
    right: 14px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 9px;
    color: #06100d;
    font-size: 11px;
    font-weight: 900;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--plan-accent), var(--plan-accent-2));
}

body.atp-cake .hosting-plan-badge .material-icons-round {
    font-size: 15px;
}

@media (max-width: 1180px) {
    body.atp-cake .hosting-plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    body.atp-cake .hosting-plans-section {
        padding: 46px 0 58px;
    }

    body.atp-cake .hosting-plans-section .shell {
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
    }

    body.atp-cake .hosting-plans-head p {
        overflow-wrap: anywhere;
    }

    body.atp-cake .hosting-guarantees,
    body.atp-cake .hosting-plans-grid {
        grid-template-columns: 1fr;
    }

    body.atp-cake .hosting-guarantees {
        gap: 10px;
    }

    body.atp-cake .hosting-plan-card {
        padding: 22px 18px 18px;
    }

    body.atp-cake .hosting-plan-card h3 {
        padding-right: 0;
        font-size: 20px;
    }

    body.atp-cake .hosting-plan-tagline {
        min-height: 0;
    }

    body.atp-cake .hosting-plan-badge {
        top: 18px;
        right: 18px;
    }
}

/* Homepage API integration showcase */
body.atp-cake .api-interface-section {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 7vw, 86px) 0;
    background:
        linear-gradient(135deg, #edf3f8 0%, #f8fbfd 45%, #eef5fb 100%),
        linear-gradient(90deg, rgba(15, 23, 42, .035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(15, 23, 42, .03) 1px, transparent 1px);
    background-size: auto, 72px 72px, 72px 72px;
}

body.atp-cake .api-interface-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(66, 133, 244, .08), transparent 34%, rgba(244, 67, 54, .07) 68%, transparent);
}

body.atp-cake .api-interface-section > .shell {
    position: relative;
    z-index: 1;
}

body.atp-cake .api-interface-head {
    max-width: 820px;
    margin: 0 auto 30px;
    text-align: center;
}

body.atp-cake .api-interface-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 16px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 6px;
    background: linear-gradient(135deg, #4285f4, #1a73e8);
    box-shadow: 0 10px 24px rgba(66, 133, 244, .2);
}

body.atp-cake .api-interface-head h2 {
    margin: 14px 0 0;
    color: #111827;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 900;
    overflow-wrap: anywhere;
}

body.atp-cake .api-interface-head h2 span {
    color: transparent;
    background: linear-gradient(135deg, #4285f4, #e3312b);
    -webkit-background-clip: text;
    background-clip: text;
}

body.atp-cake .api-interface-subtitle {
    max-width: 760px;
    margin: 10px auto 0;
    color: #64748b;
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.7;
}

body.atp-cake .api-interface-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

body.atp-cake .api-card {
    --api-accent: #6366f1;
    --api-accent-2: #8b5cf6;
    --api-soft: #eef2ff;
    position: relative;
    min-width: 0;
    min-height: 178px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 18px 20px;
    overflow: hidden;
    color: #111827;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, .32);
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

body.atp-cake .api-card::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--api-accent), var(--api-accent-2));
}

body.atp-cake .api-card:hover {
    transform: translateY(-6px);
    border-color: rgba(148, 163, 184, .58);
    box-shadow: 0 20px 44px rgba(15, 23, 42, .15);
}

body.atp-cake .api-card-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(135deg, color-mix(in srgb, var(--api-accent) 12%, transparent), transparent 72%);
    transition: opacity .28s ease;
}

body.atp-cake .api-card:hover .api-card-glow {
    opacity: 1;
}

body.atp-cake .api-icon-wrap {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--api-soft), #ffffff);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .72), 0 10px 20px rgba(15, 23, 42, .06);
    transition: transform .22s ease;
}

body.atp-cake .api-card:hover .api-icon-wrap {
    transform: scale(1.06);
}

body.atp-cake .api-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--api-accent), var(--api-accent-2));
}

body.atp-cake .api-card--amazon .api-logo,
body.atp-cake .api-card--ebay .api-logo,
body.atp-cake .api-card--service-api .api-logo {
    font-size: 10px;
}

body.atp-cake .api-card--alibaba .api-logo {
    font-size: 26px;
}

body.atp-cake .api-card-name {
    display: block;
    color: #111827;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

body.atp-cake .api-card-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 4px 10px;
    color: #64748b;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: 6px;
    background: #f1f5f9;
}

body.atp-cake .api-card--service-api { --api-accent: #6366f1; --api-accent-2: #8b5cf6; --api-soft: #eef2ff; }
body.atp-cake .api-card--aliexpress { --api-accent: #e3312b; --api-accent-2: #f57224; --api-soft: #fff1ed; }
body.atp-cake .api-card--lazada { --api-accent: #0f1470; --api-accent-2: #f15a24; --api-soft: #eef0ff; }
body.atp-cake .api-card--alibaba { --api-accent: #ff6a00; --api-accent-2: #ff8f1f; --api-soft: #fff4e8; }
body.atp-cake .api-card--taobao { --api-accent: #ff4400; --api-accent-2: #ff7a1a; --api-soft: #fff1e8; }
body.atp-cake .api-card--jd { --api-accent: #c81926; --api-accent-2: #e3312b; --api-soft: #fff0f1; }
body.atp-cake .api-card--amazon { --api-accent: #232f3e; --api-accent-2: #ff9900; --api-soft: #fff6e5; }
body.atp-cake .api-card--c1688 { --api-accent: #e4393c; --api-accent-2: #ff6b35; --api-soft: #fff0f1; }
body.atp-cake .api-card--biyao { --api-accent: #222222; --api-accent-2: #d4a853; --api-soft: #f5f5f5; }
body.atp-cake .api-card--tmall { --api-accent: #c41230; --api-accent-2: #000000; --api-soft: #fff0f3; }
body.atp-cake .api-card--translate { --api-accent: #4285f4; --api-accent-2: #34a853; --api-soft: #eef5ff; }
body.atp-cake .api-card--shopee { --api-accent: #ee4d2d; --api-accent-2: #f53d2d; --api-soft: #fff1ec; }
body.atp-cake .api-card--ebay { --api-accent: #e53238; --api-accent-2: #0064d2; --api-soft: #f5f8ff; }

@media (max-width: 640px) {
    body.atp-cake .api-interface-section {
        padding: 44px 0 54px;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    body.atp-cake .api-interface-section .shell {
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
        margin-left: 12px !important;
        margin-right: 12px !important;
    }

    body.atp-cake .api-interface-head,
    body.atp-cake .api-interface-grid {
        width: 340px;
        max-width: 340px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    body.atp-cake .api-interface-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    body.atp-cake .api-interface-head h2 {
        font-size: clamp(25px, 8vw, 31px);
        line-height: 1.18;
    }

    body.atp-cake .api-interface-head h2 span {
        display: block;
    }

    body.atp-cake .api-card {
        min-height: 150px;
        padding: 18px 10px 14px;
        gap: 9px;
    }

    body.atp-cake .api-icon-wrap {
        width: 52px;
        height: 52px;
    }

    body.atp-cake .api-logo {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    body.atp-cake .api-card--amazon .api-logo,
    body.atp-cake .api-card--ebay .api-logo,
    body.atp-cake .api-card--service-api .api-logo {
        font-size: 8px;
    }

    body.atp-cake .api-card-name {
        font-size: 14px;
    }

    body.atp-cake .api-card-tag {
        font-size: 9px;
        padding-inline: 7px;
    }
}

@media (max-width: 360px) {
    body.atp-cake .api-interface-grid {
        gap: 8px;
        width: 296px;
        max-width: 296px;
    }

    body.atp-cake .api-card {
        min-height: 136px;
        padding: 16px 7px 12px;
    }

    body.atp-cake .api-card-name {
        font-size: 13px;
    }
}
