/*(c) Haxter Corporation | All rights reserved. */
.wakersp_page {
    --wakersp_blue: #0067b8;
    --wakersp_blue_hover: #005da6;
    --wakersp_text: #1a1a1a;
    --wakersp_muted: #505050;
    --wakersp_border: #e5e5e5;
    --wakersp_soft: #f7f7f7;
    --wakersp_cloud: #f3f8fd;
    --wakersp_dark: #101418;
    --wakersp_width: 1396px;

    margin: 0;
    background: #ffffff;
    color: var(--wakersp_text);
    font-family: var(--hx26-font-system, "Segoe UI", Arial, sans-serif);
}

.wakersp_page * {
    box-sizing: border-box;
}

.wakersp_page a {
    color: inherit;
    text-decoration: none;
}

.wakersp_container {
    width: min(var(--wakersp_width), calc(100% - 48px));
    margin: 0 auto;
}

.wakersp_nav {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--wakersp_border);
}

.wakersp_nav_inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.wakersp_brand {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.wakersp_brand_mark {
    font-family: var(--hx26-font-brand, "BankGothic Lt BT", "Segoe UI", Arial, sans-serif);
    font-size: 18px;
    color: #000000;
}

.wakersp_brand_product {
    font-size: 16px;
    color: var(--wakersp_blue);
}

.wakersp_nav_links {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #333333;
    font-size: 14px;
}

.wakersp_nav_links a:hover {
    color: var(--wakersp_blue);
}

.wakersp_nav_cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 16px;
    background: var(--wakersp_blue);
    color: #ffffff !important;
    font-weight: 600;
}

.wakersp_nav_cta:hover {
    background: var(--wakersp_blue_hover);
}

.wakersp_hero {
    background:
        linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.78), rgba(255,255,255,0.24)),
        radial-gradient(circle at 78% 22%, rgba(0,103,184,0.20), transparent 34%),
        linear-gradient(135deg, #ffffff, #f3f8fd);
    min-height: 680px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--wakersp_border);
}

.wakersp_hero_grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.72fr);
    gap: 72px;
    align-items: center;
    padding: 86px 0;
}

.wakersp_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--wakersp_blue);
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wakersp_hero h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.98;
    font-weight: 600;
    letter-spacing: -0.055em;
}

.wakersp_hero_text {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--wakersp_muted);
    font-size: 20px;
    line-height: 1.55;
    letter-spacing: -0.015em;
}

.wakersp_hero_actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 34px;
}

.wakersp_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    background: var(--wakersp_blue);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
}

.wakersp_button:hover {
    background: var(--wakersp_blue_hover);
}

.wakersp_button_secondary {
    background: transparent;
    color: var(--wakersp_blue) !important;
    padding-left: 0;
}

.wakersp_button_secondary:hover {
    background: transparent;
    text-decoration: underline;
}

.wakersp_device_card {
    position: relative;
    min-height: 460px;
    background: #ffffff;
    border: 1px solid var(--wakersp_border);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
    padding: 32px;
    overflow: hidden;
}

.wakersp_device_card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: linear-gradient(90deg, var(--wakersp_blue), #64b5f6);
}

.wakersp_device_status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 34px;
}

.wakersp_device_name {
    margin: 0;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.wakersp_device_badge {
    padding: 5px 10px;
    background: #dff6dd;
    color: #107c10;
    font-size: 13px;
    font-weight: 700;
}

.wakersp_power_visual {
    height: 190px;
    display: grid;
    place-items: center;
    margin: 16px 0 30px;
    background:
        radial-gradient(circle, rgba(0,103,184,0.16), transparent 48%),
        #f7f7f7;
    border: 1px solid #eeeeee;
}

.wakersp_power_icon {
    width: 112px;
    height: 112px;
    border: 4px solid var(--wakersp_blue);
    border-radius: 50%;
    position: relative;
}

.wakersp_power_icon::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -22px;
    width: 5px;
    height: 58px;
    background: var(--wakersp_blue);
    transform: translateX(-50%);
    border-radius: 6px;
}

.wakersp_device_meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.wakersp_meta_item {
    padding: 14px;
    background: #fafafa;
    border: 1px solid #eeeeee;
}

.wakersp_meta_label {
    display: block;
    color: var(--wakersp_muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 700;
}

.wakersp_meta_value {
    display: block;
    margin-top: 6px;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
}

.wakersp_section {
    padding: 84px 0;
}

.wakersp_section_soft {
    background: var(--wakersp_soft);
}

.wakersp_section_cloud {
    background: var(--wakersp_cloud);
}

.wakersp_section_header {
    max-width: 820px;
    margin-bottom: 34px;
}

.wakersp_section_title {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.06;
    font-weight: 600;
    letter-spacing: -0.045em;
}

.wakersp_section_text {
    margin: 16px 0 0;
    color: var(--wakersp_muted);
    font-size: 18px;
    line-height: 1.62;
    letter-spacing: -0.01em;
}

.wakersp_grid_3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wakersp_card {
    background: #ffffff;
    border: 1px solid var(--wakersp_border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);
    padding: 28px;
    min-height: 260px;
}

.wakersp_card_marker {
    width: 42px;
    height: 4px;
    margin-bottom: 20px;
    background: var(--wakersp_blue);
}

.wakersp_card h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.16;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.wakersp_card p {
    margin: 14px 0 0;
    color: var(--wakersp_muted);
    font-size: 15px;
    line-height: 1.58;
}

.wakersp_split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 54px;
    align-items: center;
}

.wakersp_panel {
    background: #ffffff;
    border: 1px solid var(--wakersp_border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
    padding: 34px;
}

.wakersp_panel_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid #eeeeee;
}

.wakersp_panel_row:last-child {
    border-bottom: 0;
}

.wakersp_panel_title {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}

.wakersp_panel_description {
    margin: 5px 0 0;
    color: var(--wakersp_muted);
    font-size: 14px;
    line-height: 1.45;
}

.wakersp_panel_status {
    flex: 0 0 auto;
    padding: 5px 10px;
    background: #f3f8fd;
    color: var(--wakersp_blue);
    font-size: 13px;
    font-weight: 700;
}

.wakersp_pricing {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 920px;
}

.wakersp_price_card {
    background: #ffffff;
    border: 1px solid var(--wakersp_border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);
    padding: 32px;
}

.wakersp_price_label {
    color: var(--wakersp_blue);
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wakersp_price {
    margin: 18px 0 0;
    font-size: 44px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.wakersp_price small {
    font-size: 17px;
    color: var(--wakersp_muted);
    font-weight: 500;
    letter-spacing: 0;
}

.wakersp_price_card p {
    margin: 16px 0 0;
    color: var(--wakersp_muted);
    font-size: 15px;
    line-height: 1.6;
}

.wakersp_cta {
    min-height: 420px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.82), rgba(0,0,0,0.48)),
        radial-gradient(circle at 78% 18%, rgba(0,103,184,0.80), transparent 34%),
        #101418;
    color: #ffffff;
}

.wakersp_cta_content {
    max-width: 760px;
    padding: 76px 0;
}

.wakersp_cta h2 {
    margin: 0;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.04;
    font-weight: 600;
    letter-spacing: -0.045em;
}

.wakersp_cta p {
    margin: 18px 0 0;
    color: rgba(255,255,255,0.82);
    font-size: 18px;
    line-height: 1.62;
}

.wakersp_cta_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

.wakersp_cta_link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: #8fd0ff !important;
    font-size: 15px;
    font-weight: 600;
}

.wakersp_cta_link:hover {
    text-decoration: underline;
}

.wakersp_footer {
    padding: 34px 0;
    border-top: 1px solid var(--wakersp_border);
    color: var(--wakersp_muted);
    font-size: 13px;
}

.wakersp_footer_inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

@media (max-width: 1084px) {
    .wakersp_hero_grid,
    .wakersp_split {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .wakersp_grid_3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .wakersp_nav_links {
        display: none;
    }
}

@media (max-width: 640px) {
    .wakersp_container {
        width: min(100% - 32px, var(--wakersp_width));
    }

    .wakersp_hero {
        min-height: auto;
    }

    .wakersp_hero_grid {
        padding: 58px 0;
    }

    .wakersp_hero h1 {
        font-size: clamp(42px, 12vw, 54px);
        line-height: 1.04;
    }

    .wakersp_hero_text,
    .wakersp_section_text,
    .wakersp_cta p {
        font-size: 17px;
        line-height: 1.68;
    }

    .wakersp_hero_actions,
    .wakersp_cta_actions {
        align-items: stretch;
        flex-direction: column;
    }

    .wakersp_button,
    .wakersp_button_secondary,
    .wakersp_cta_link {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding-left: 22px;
    }

    .wakersp_grid_3,
    .wakersp_pricing {
        grid-template-columns: 1fr;
    }

    .wakersp_section {
        padding: 62px 0;
    }

    .wakersp_device_meta {
        grid-template-columns: 1fr;
    }

    .wakersp_panel_row {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

.wakersp_brand_logo {
    display: block;
    height: 42px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.wakersp_signature {
    padding: 34px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--wakersp_border, #e5e5e5);
}

.wakersp_signature_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.wakersp_signature_logo {
    display: block;
    width: auto;
    object-fit: contain;
}

.wakersp_signature_logo_product {
    height: 42px;
    max-width: 220px;
}

.wakersp_signature_logo_haxter {
    height: 34px;
    max-width: 210px;
}

.wakersp_signature_divider {
    width: 1px;
    height: 38px;
    background: #cfcfcf;
}

@media (max-width: 640px) {
    .wakersp_signature_inner {
        gap: 18px;
        flex-wrap: wrap;
    }

    .wakersp_signature_logo_product {
        height: 34px;
        max-width: 180px;
    }

    .wakersp_signature_logo_haxter {
        height: 28px;
        max-width: 170px;
    }

    .wakersp_signature_divider {
        height: 30px;
    }
}