.webao-panel,
.webao-login-panel {
    --webao-primary: #4f46e5;
    --webao-primary-dark: #3730a3;
    --webao-primary-bright: #7c3aed;
    --webao-ink: #07071f;
    --webao-muted: #5f5b7a;
    --webao-border: #e8e7f8;
    --webao-soft: #f6f4ff;
    --webao-shadow: 0 24px 70px rgba(35, 29, 98, 0.12);
    color: var(--webao-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.webao-panel * {
    box-sizing: border-box;
}

.webao-login-panel,
.webao-app {
    background:
        radial-gradient(circle at 18% 5%, rgba(79, 70, 229, 0.12), transparent 28%),
        radial-gradient(circle at 92% 20%, rgba(124, 58, 237, 0.10), transparent 24%),
        linear-gradient(180deg, #fbfbff 0%, #ffffff 100%);
}

.webao-app {
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px;
    border: 1px solid var(--webao-border);
    border-radius: 24px;
}

.webao-panel__top,
.webao-login-panel__box {
    border: 1px solid var(--webao-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--webao-shadow);
    backdrop-filter: blur(14px);
}

.webao-panel__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
    padding: 22px 28px;
}

.webao-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.webao-brand__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, #5b21e7 0%, #7c3aed 100%);
    color: #fff;
    box-shadow: 0 18px 34px rgba(79, 70, 229, 0.24);
}

.webao-brand__icon svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
}

.webao-panel__eyebrow {
    margin: 0 0 5px;
    color: var(--webao-primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.webao-panel h2,
.webao-panel h3,
.webao-login-panel h2 {
    margin-top: 0;
    color: var(--webao-ink);
    line-height: 1.1;
}

.webao-panel__top h2 {
    margin-bottom: 0;
    font-size: 26px;
    font-weight: 900;
}

.webao-panel__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 14px;
}

.webao-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 6px;
    border: 1px solid var(--webao-border);
    border-radius: 15px;
    background: #fff;
}

.webao-tabs__button,
.webao-panel__logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 11px 18px;
    border: 0;
    border-radius: 12px;
    color: var(--webao-ink);
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.webao-tabs__button {
    background: transparent;
}

.webao-tabs__button svg,
.webao-panel__logout svg,
.webao-card-title svg,
.webao-payment-select__button svg,
.webao-form__actions svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
}

.webao-tabs__button.is-active {
    background: linear-gradient(135deg, var(--webao-primary) 0%, var(--webao-primary-bright) 100%);
    color: #fff;
    box-shadow: 0 14px 28px rgba(79, 70, 229, 0.28);
}

.webao-panel__logout {
    border: 1px solid var(--webao-border);
    background: #fff;
}

.webao-panel__logout:hover {
    color: #fff;
    background: var(--webao-ink);
}

.webao-panel__notice {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #eeebff;
    color: var(--webao-primary-dark);
    font-weight: 900;
}

.webao-tab-panel {
    display: none;
}

.webao-tab-panel.is-active {
    display: block;
}

.webao-panel__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    gap: 26px;
}

.webao-card {
    border: 1px solid var(--webao-border);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--webao-shadow);
}

.webao-card--primary {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    padding: 44px;
    color: #fff;
    background:
        radial-gradient(circle at 78% 23%, rgba(124, 58, 237, 0.72), transparent 26%),
        radial-gradient(circle at 18% 82%, rgba(79, 70, 229, 0.45), transparent 30%),
        linear-gradient(135deg, #171044 0%, #2b1978 54%, #4f46e5 100%);
}

.webao-card--primary h3 {
    margin-bottom: 0;
    color: #fff;
    font-size: 34px;
    font-weight: 950;
}

.webao-hosting-card__head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 46px;
}

.webao-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #c4b5fd;
    font-weight: 900;
}

.webao-pill i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.14);
}

.webao-hosting-card__date {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 8px;
}

.webao-hosting-card__date span,
.webao-progress__meta {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #d8d2ff;
    font-weight: 900;
}

.webao-hosting-card__date svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
}

.webao-hosting-card__date strong {
    font-size: 36px;
    font-weight: 950;
}

.webao-hosting-card__date small {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.webao-server-visual {
    position: absolute;
    right: 20px;
    top: 112px;
    width: 230px;
    color: #9da4ff;
    opacity: 0.86;
}

.webao-server-visual svg {
    width: 100%;
    height: auto;
}

.webao-progress {
    position: absolute;
    left: 44px;
    right: 44px;
    bottom: 42px;
    z-index: 2;
}

.webao-progress__meta {
    justify-content: space-between;
    margin-bottom: 14px;
}

.webao-progress__track {
    height: 16px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
}

.webao-progress__track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    transition: width 0.25s ease;
}

.webao-server-card {
    padding: 44px;
}

.webao-card-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    font-size: 29px;
    font-weight: 950;
}

.webao-card-title svg {
    width: 32px;
    height: 32px;
    padding: 7px;
    border-radius: 12px;
    background: #eee9ff;
    color: var(--webao-primary);
}

.webao-server-list {
    display: grid;
}

.webao-server-row {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid var(--webao-border);
}

.webao-server-row__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #eee9ff;
    color: var(--webao-primary);
}

.webao-server-row__icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
}

.webao-server-row span {
    display: block;
    margin-bottom: 6px;
    color: var(--webao-muted);
    font-weight: 800;
}

.webao-server-row strong,
.webao-server-row a {
    color: var(--webao-ink);
    font-size: 18px;
    font-weight: 900;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.webao-server-row a {
    color: var(--webao-primary);
}

.webao-status-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.webao-status-tile {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    align-items: center;
    min-height: 112px;
    padding: 20px;
    border: 1px solid var(--webao-border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 42px rgba(35, 29, 98, 0.08);
}

.webao-status-tile svg {
    grid-row: span 2;
    width: 58px;
    height: 58px;
    padding: 14px;
    border-radius: 50%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
}

.webao-status-tile strong {
    align-self: end;
    font-size: 18px;
    font-weight: 950;
}

.webao-status-tile span {
    align-self: start;
    color: var(--webao-primary);
    font-weight: 900;
}

.webao-status-tile--green svg {
    color: #22c55e;
    background: #dcfce7;
}

.webao-status-tile--purple svg {
    color: #7c3aed;
    background: #f1e7ff;
}

.webao-status-tile--orange svg {
    color: #f59e0b;
    background: #fef3c7;
}

.webao-status-tile--blue svg {
    color: #2563eb;
    background: #dbeafe;
}

.webao-payment-card {
    min-height: 570px;
    padding: 44px;
    background:
        radial-gradient(circle at 84% 18%, rgba(124, 58, 237, 0.12), transparent 24%),
        #fff;
}

.webao-payment-layout {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.webao-payment-layout h3 {
    margin-bottom: 16px;
    font-size: 30px;
    font-weight: 950;
}

.webao-payment-layout p {
    max-width: 540px;
    color: var(--webao-ink);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 650;
}

.webao-payment-visual {
    width: 280px;
    color: var(--webao-primary);
    opacity: 0.58;
}

.webao-payment-visual svg {
    width: 100%;
    height: auto;
}

.webao-payment-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin: 42px 0 34px;
}

.webao-payment-option {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 132px;
    padding: 22px;
    border: 2px solid var(--webao-border);
    border-radius: 18px;
    background: #fff;
    color: var(--webao-ink);
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(35, 29, 98, 0.06);
}

.webao-payment-option.is-active {
    border-color: var(--webao-primary);
    box-shadow: 0 20px 44px rgba(79, 70, 229, 0.16);
}

.webao-payment-option__check {
    position: absolute;
    top: -13px;
    right: -13px;
    display: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--webao-primary);
    color: #fff;
    line-height: 34px;
    font-weight: 950;
}

.webao-payment-option.is-active .webao-payment-option__check {
    display: block;
}

.webao-payment-option strong {
    font-size: 22px;
    font-weight: 950;
}

.webao-payment-option small {
    color: var(--webao-primary-dark);
    font-size: 15px;
    font-weight: 900;
}

.webao-payment-option.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.webao-payment-select__button,
.webao-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 64px;
    padding: 15px 22px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--webao-primary) 0%, #6d28d9 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 950;
    text-decoration: none;
    box-shadow: 0 18px 34px rgba(79, 70, 229, 0.22);
}

.webao-payment-select__button span {
    margin-left: auto;
    font-size: 28px;
}

.webao-payment-select__button.is-disabled {
    pointer-events: none;
    background: #d8d5e7;
    color: #7d7894;
    box-shadow: none;
}

.webao-payment-note {
    margin: 32px 0 0;
    padding: 18px;
    border-radius: 14px;
    background: #f5f2ff;
    color: var(--webao-ink);
    text-align: center;
    font-weight: 800;
}

.webao-invoice-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.8fr);
    gap: 24px;
}

.webao-invoice-layout .webao-card {
    padding: 36px;
}

.webao-form {
    display: grid;
    gap: 18px;
}

.webao-form__row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 18px;
}

.webao-form__row--two {
    grid-template-columns: 0.75fr 1.25fr;
}

.webao-form label,
.webao-login-panel label {
    display: grid;
    gap: 8px;
    color: var(--webao-ink);
    font-size: 14px;
    font-weight: 900;
}

.webao-form input,
.webao-login-panel input[type="text"],
.webao-login-panel input[type="password"] {
    width: 100%;
    min-height: 50px;
    padding: 12px 15px;
    border: 1px solid #dcd9ef;
    border-radius: 10px;
    background: #fff;
    color: var(--webao-ink);
    font-weight: 750;
}

.webao-form input:focus,
.webao-login-panel input[type="text"]:focus,
.webao-login-panel input[type="password"]:focus {
    outline: 4px solid rgba(79, 70, 229, 0.12);
    border-color: var(--webao-primary);
}

.webao-form__actions {
    display: grid;
    grid-template-columns: 1fr 0.55fr;
    gap: 16px;
    margin-top: 4px;
}

.webao-button-secondary {
    background: #eeedf7 !important;
    color: var(--webao-ink) !important;
    box-shadow: none !important;
}

.webao-invoice-help {
    position: relative;
    overflow: hidden;
    padding: 44px 34px 24px;
    border: 1px solid var(--webao-border);
    border-radius: 24px;
    background:
        radial-gradient(circle at 80% 72%, rgba(124, 58, 237, 0.18), transparent 35%),
        #f5efff;
    color: var(--webao-primary-dark);
}

.webao-invoice-help h3 {
    margin: 0 0 16px;
    color: var(--webao-primary-dark);
    font-size: 25px;
    font-weight: 950;
}

.webao-invoice-help p {
    color: var(--webao-ink);
    font-weight: 750;
    line-height: 1.45;
}

.webao-invoice-help svg {
    width: 100%;
    margin-top: 26px;
    color: var(--webao-primary);
}

.webao-login-panel {
    display: flex;
    justify-content: center;
    padding: 64px 16px;
}

.webao-login-panel__box {
    width: min(100%, 470px);
    padding: 32px;
}

.webao-login-panel form {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.webao-login-panel input[type="submit"] {
    min-height: 54px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--webao-primary) 0%, #6d28d9 100%);
    color: #fff;
    font-weight: 950;
}

@media (max-width: 980px) {
    .webao-panel__top,
    .webao-payment-layout {
        align-items: flex-start;
        flex-direction: column;
    }

    .webao-panel__grid,
    .webao-status-grid,
    .webao-payment-options,
    .webao-invoice-layout {
        grid-template-columns: 1fr;
    }

    .webao-payment-visual,
    .webao-server-visual {
        display: none;
    }
}

@media (max-width: 680px) {
    .webao-app {
        padding: 14px;
        border-radius: 18px;
    }

    .webao-panel__top,
    .webao-card--primary,
    .webao-server-card,
    .webao-payment-card,
    .webao-invoice-layout .webao-card,
    .webao-invoice-help {
        padding: 22px;
    }

    .webao-tabs,
    .webao-panel__logout,
    .webao-panel__actions {
        width: 100%;
    }

    .webao-tabs__button,
    .webao-panel__logout {
        flex: 1 1 auto;
    }

    .webao-card--primary {
        min-height: 360px;
    }

    .webao-progress {
        left: 22px;
        right: 22px;
        bottom: 24px;
    }

    .webao-form__row,
    .webao-form__row--two,
    .webao-form__actions {
        grid-template-columns: 1fr;
    }
}

/* v0.1.8: lighter, more compact and animated client UI */
.webao-panel,
.webao-login-panel {
    --webao-shadow: 0 18px 46px rgba(35, 29, 98, 0.10);
}

.webao-app a,
.webao-app button,
.webao-card,
.webao-status-tile,
.webao-payment-option,
.webao-server-row {
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.webao-tabs__button:hover,
.webao-panel__logout:hover,
.webao-payment-option:hover,
.webao-status-tile:hover,
.webao-server-row:hover {
    transform: translateY(-2px);
}

.webao-panel__top {
    padding: 18px 24px;
}

.webao-panel__eyebrow,
.webao-panel__top h2,
.webao-tabs__button,
.webao-panel__logout,
.webao-pill,
.webao-hosting-card__date span,
.webao-progress__meta,
.webao-status-tile span,
.webao-form label,
.webao-login-panel label {
    font-weight: 700;
}

.webao-card--primary {
    min-height: 360px;
    padding: 34px;
}

.webao-card--primary h3 {
    font-size: 28px;
    font-weight: 800;
}

.webao-hosting-card__head {
    margin-bottom: 34px;
}

.webao-hosting-card__date strong {
    font-size: 29px;
    font-weight: 800;
}

.webao-hosting-card__date small,
.webao-status-tile strong,
.webao-payment-option strong,
.webao-payment-layout h3,
.webao-card-title,
.webao-form button,
.webao-payment-select__button {
    font-weight: 800;
}

.webao-pill i {
    animation: webaoPulse 1.8s ease-out infinite;
}

.webao-server-visual {
    right: 12px;
    top: 82px;
    width: 250px;
    opacity: 0.88;
    color: #9da4ff;
    filter: drop-shadow(0 16px 28px rgba(20, 12, 58, 0.26));
}

.webao-server-visual img,
.webao-server-visual svg {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.webao-progress {
    left: 34px;
    right: 34px;
    bottom: 32px;
}

.webao-server-card,
.webao-payment-card,
.webao-invoice-layout .webao-card {
    padding: 34px;
}

.webao-card-title {
    margin-bottom: 22px;
    font-size: 23px;
}

.webao-server-row {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 14px;
    padding: 15px 0;
}

.webao-server-row__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
}

.webao-server-row span {
    font-weight: 600;
}

.webao-server-row strong,
.webao-server-row a {
    font-size: 16px;
    font-weight: 700;
}

.webao-copy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 88px;
    min-height: 40px;
    padding: 9px 12px;
    border: 1px solid var(--webao-border);
    border-radius: 12px;
    background: #fff;
    color: var(--webao-primary);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.webao-copy-button svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
}

.webao-copy-button:hover,
.webao-copy-button.is-copied {
    border-color: var(--webao-primary);
    background: #eef2ff;
    box-shadow: 0 10px 22px rgba(79, 70, 229, 0.12);
}

.webao-status-grid {
    gap: 18px;
    margin-top: 22px;
}

.webao-status-tile {
    min-height: 96px;
    padding: 17px;
}

.webao-payment-card {
    min-height: 480px;
}

.webao-payment-layout h3 {
    font-size: 26px;
}

.webao-payment-layout p {
    font-size: 16px;
    font-weight: 500;
}

.webao-payment-visual {
    width: 230px;
}

.webao-payment-options {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 34px 0 26px;
}

.webao-payment-option {
    min-height: 112px;
    padding: 18px;
}

.webao-payment-option strong {
    font-size: 18px;
}

.webao-payment-option small {
    font-weight: 700;
}

.webao-payment-select__button,
.webao-form button {
    min-height: 56px;
    font-size: 16px;
}

.webao-payment-note {
    margin-top: 24px;
    font-weight: 650;
}

.webao-form input,
.webao-login-panel input[type="text"],
.webao-login-panel input[type="password"] {
    font-weight: 500;
}

.webao-invoice-help h3 {
    font-weight: 800;
}

.webao-invoice-help p {
    font-weight: 500;
}

@media (max-width: 1180px) {
    .webao-payment-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .webao-server-row {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .webao-copy-button {
        grid-column: 2;
        justify-self: start;
    }

    .webao-payment-options {
        grid-template-columns: 1fr;
    }
}

@keyframes webaoPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
    }
    70% {
        box-shadow: 0 0 0 9px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* v0.2.4: clean white login background with animated grid */
.webao-login-panel {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(rgba(79, 70, 229, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 70, 229, 0.055) 1px, transparent 1px),
        #ffffff;
    background-size: 34px 34px;
}

.webao-login-panel::before,
.webao-login-panel::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    filter: blur(46px);
    opacity: 0.22;
    pointer-events: none;
}

.webao-login-panel::before {
    left: 8%;
    top: 14%;
    background: #7c3aed;
    animation: webaoLoginGlowA 9s ease-in-out infinite;
}

.webao-login-panel::after {
    right: 10%;
    bottom: 8%;
    background: #2563eb;
    animation: webaoLoginGlowB 11s ease-in-out infinite;
}

.webao-login-panel__box {
    background: rgba(255, 255, 255, 0.88);
}

@keyframes webaoLoginGlowA {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(38px, 24px, 0) scale(1.12);
    }
}

@keyframes webaoLoginGlowB {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-34px, -28px, 0) scale(1.08);
    }
}

/* v0.3.0: payment prices */
.webao-payment-option em {
    margin-top: 6px;
    color: var(--webao-ink);
    font-size: 15px;
    font-style: normal;
    font-weight: 650;
}

.webao-payment-cta {
    display: grid;
    grid-template-columns: minmax(120px, auto) 1fr;
    align-items: center;
    gap: 14px;
}

.webao-payment-cta__price {
    display: grid;
    justify-items: start;
    min-width: 120px;
    padding: 9px 13px;
    border: 1px solid var(--webao-border);
    border-radius: 12px;
    background: #fff;
}

.webao-payment-cta__price strong {
    color: var(--webao-ink);
    font-size: 18px;
    font-weight: 750;
    line-height: 1.1;
}

.webao-payment-cta__price small {
    margin-top: 2px;
    color: #8a8799;
    font-size: 12px;
    font-weight: 500;
}

.webao-payment-cta__price.is-empty {
    display: none;
}

@media (max-width: 680px) {
    .webao-payment-cta {
        grid-template-columns: 1fr;
    }
}

/* v0.3.2: account activation screen */
.webao-login-logo {
    display: block;
    width: 170px;
    max-width: 100%;
    height: auto;
    margin: 0 0 22px;
}

/* v0.3.1: prices live only inside payment cards */
.webao-payment-cta,
.webao-payment-cta__price {
    display: none !important;
}

.webao-payment-option em {
    margin-top: 8px;
    color: #2f3140;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.1;
}

.webao-payment-option__netto {
    margin-top: 2px;
    color: #8a8799;
    font-size: 12px;
    font-weight: 400;
}

/* v0.2.8: password reset views */
.webao-login-panel__links {
    margin: 16px 0 0;
    text-align: center;
}

.webao-login-panel__links a {
    color: var(--webao-primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.webao-login-panel__links a:hover {
    text-decoration: underline;
}

.webao-password-form {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.webao-password-form label {
    display: grid;
    gap: 8px;
    color: var(--webao-ink);
    font-size: 13px;
    font-weight: 550;
}

.webao-password-form input {
    width: 100%;
    min-height: 46px;
    padding: 12px 15px;
    border: 1px solid #dcd9ef;
    border-radius: 10px;
    background: #fff;
    color: var(--webao-ink);
}

.webao-password-form button {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--webao-primary) 0%, #6d28d9 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 650;
}

/* v0.2.5: softer login ambience and fading grid edges */
.webao-login-panel {
    background:
        linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 16%, rgba(255, 255, 255, 0) 84%, #fff 100%),
        linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 82%, #fff 100%),
        linear-gradient(rgba(79, 70, 229, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 70, 229, 0.04) 1px, transparent 1px),
        #ffffff;
    background-size: 100% 100%, 100% 100%, 34px 34px, 34px 34px, auto;
}

.webao-login-panel::before,
.webao-login-panel::after {
    opacity: 0.10;
    filter: blur(64px);
}

.webao-login-panel::before {
    left: 12%;
    top: 18%;
}

.webao-login-panel::after {
    right: 14%;
    bottom: 12%;
}

/* v0.1.9: lighter typography and closer match to the supplied mockup */
.webao-panel,
.webao-login-panel {
    --webao-shadow: 0 14px 34px rgba(35, 29, 98, 0.09);
}

.webao-panel__eyebrow {
    display: inline-block;
    background: linear-gradient(90deg, #4f46e5, #8b5cf6, #06b6d4, #4f46e5);
    background-size: 260% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 12px;
    font-weight: 800;
    animation: webaoGradientText 4.2s linear infinite;
}

.webao-brand__icon {
    animation: webaoFloat 4s ease-in-out infinite;
}

.webao-panel__top h2 {
    font-size: 24px;
    font-weight: 700;
}

.webao-tabs__button,
.webao-panel__logout,
.webao-copy-button,
.webao-payment-select__button,
.webao-form button,
.webao-login-panel input[type="submit"] {
    font-weight: 650;
}

.webao-card--primary {
    min-height: 330px;
    padding: 28px;
}

.webao-card--primary h3 {
    font-size: 25px;
    font-weight: 700;
}

.webao-hosting-card__head {
    margin-bottom: 24px;
}

.webao-pill {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
}

.webao-hosting-card__date span,
.webao-progress__meta {
    font-size: 13px;
    font-weight: 550;
}

.webao-hosting-card__date strong {
    font-size: 27px;
    font-weight: 700;
}

.webao-hosting-card__date small {
    font-size: 14px;
    font-weight: 500;
}

.webao-server-visual {
    right: -10px;
    top: 44px;
    width: 330px;
    opacity: 0.82;
    mix-blend-mode: screen;
    filter: drop-shadow(0 18px 32px rgba(13, 7, 48, 0.22));
}

.webao-server-visual img {
    border-radius: 28px;
    mask-image: radial-gradient(circle at 58% 50%, #000 0%, #000 46%, transparent 74%);
    -webkit-mask-image: radial-gradient(circle at 58% 50%, #000 0%, #000 46%, transparent 74%);
}

.webao-progress {
    left: 28px;
    right: 28px;
    bottom: 28px;
}

.webao-progress__track {
    height: 12px;
}

.webao-server-card,
.webao-payment-card,
.webao-invoice-layout .webao-card {
    padding: 28px;
}

.webao-card-title {
    font-size: 22px;
    font-weight: 700;
}

.webao-server-row span {
    font-size: 13px;
    font-weight: 500;
}

.webao-server-row strong,
.webao-server-row a {
    font-size: 15px;
    font-weight: 600;
}

.webao-status-tile strong {
    font-size: 16px;
    font-weight: 650;
}

.webao-status-tile span {
    color: #16a34a;
    font-size: 13px;
    font-weight: 500;
}

.webao-status-tile svg {
    width: 54px;
    height: 54px;
}

.webao-payment-layout h3 {
    font-size: 24px;
    font-weight: 700;
}

.webao-payment-layout p {
    max-width: 520px;
    font-size: 15px;
    font-weight: 400;
}

.webao-payment-option strong {
    font-size: 17px;
    font-weight: 650;
}

.webao-payment-option small {
    font-weight: 500;
}

.webao-payment-note {
    font-size: 14px;
    font-weight: 400;
}

.webao-payment-select__button,
.webao-form button {
    min-height: 52px;
    font-size: 15px;
}

.webao-form label,
.webao-login-panel label {
    font-size: 13px;
    font-weight: 550;
}

.webao-form input,
.webao-login-panel input[type="text"],
.webao-login-panel input[type="password"] {
    min-height: 46px;
    font-weight: 400;
}

.webao-invoice-help h3 {
    font-size: 22px;
    font-weight: 700;
}

.webao-invoice-help p {
    font-size: 14px;
    font-weight: 400;
}

.webao-login-panel__box h2 {
    font-size: 24px;
    font-weight: 700;
}

.webao-login-panel input[type="submit"] {
    min-height: 48px;
    font-size: 15px;
}

.webao-login-panel .login-remember label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.webao-login-panel .login-remember input {
    width: 16px;
    height: 16px;
    min-height: 0;
}

@keyframes webaoGradientText {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 260% center;
    }
}

@keyframes webaoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-4px) rotate(-2deg);
    }
}

/* v0.2.0 visual refinements */
.webao-panel__eyebrow {
    background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 28%, #06b6d4 50%, #7c3aed 72%, #4f46e5 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    animation: webaoGradientTextSmooth 5s ease-in-out infinite;
}

.webao-brand__icon {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 45%, #06b6d4 100%);
    background-size: 190% 190%;
    animation: webaoBrandIcon 3.6s ease-in-out infinite;
}

.webao-panel__actions {
    gap: 22px;
}

.webao-panel__logout {
    min-height: 42px;
    padding: 9px 15px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.92;
}

.webao-panel__logout svg {
    width: 16px;
    height: 16px;
}

.webao-server-row:hover {
    transform: none;
    box-shadow: none;
}

.webao-card--primary::before,
.webao-card--primary::after {
    content: "";
    position: absolute;
    z-index: 1;
    border-radius: 999px;
    pointer-events: none;
}

.webao-card--primary::before {
    width: 90px;
    height: 90px;
    right: 112px;
    top: 44px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 62%);
    animation: webaoOrbFloat 6s ease-in-out infinite;
}

.webao-card--primary::after {
    width: 7px;
    height: 7px;
    right: 68px;
    top: 78px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: -58px 42px 0 rgba(255, 255, 255, 0.35), 34px 82px 0 rgba(255, 255, 255, 0.45);
    animation: webaoSparkleFloat 4.8s ease-in-out infinite;
}

.webao-server-visual {
    right: -84px;
    top: 102px;
    width: 510px;
    opacity: 0.74;
    mix-blend-mode: screen;
}

.webao-server-visual img {
    mask-image: radial-gradient(circle at 52% 48%, #000 0%, #000 42%, rgba(0, 0, 0, 0.7) 56%, transparent 76%);
    -webkit-mask-image: radial-gradient(circle at 52% 48%, #000 0%, #000 42%, rgba(0, 0, 0, 0.7) 56%, transparent 76%);
}

.webao-login-panel__intro {
    margin: 10px 0 0;
    color: var(--webao-muted);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 400;
}

.webao-login-panel input[type="submit"] {
    width: 100%;
}

@media (max-width: 980px) {
    .webao-panel__actions {
        gap: 12px;
    }

    .webao-server-visual {
        display: block;
        right: -70px;
        top: 118px;
        width: 410px;
        opacity: 0.48;
    }
}

@media (max-width: 680px) {
    .webao-server-visual {
        display: none;
    }
}

@keyframes webaoGradientTextSmooth {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

@keyframes webaoBrandIcon {
    0%, 100% {
        background-position: 0% 50%;
        transform: translateY(0) scale(1);
    }
    50% {
        background-position: 100% 50%;
        transform: translateY(-5px) scale(1.04);
    }
}

@keyframes webaoOrbFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.45;
    }
    50% {
        transform: translate3d(-18px, 14px, 0) scale(1.18);
        opacity: 0.75;
    }
}

@keyframes webaoSparkleFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.35;
    }
    50% {
        transform: translateY(-12px);
        opacity: 0.9;
    }
}
