:root {
    color-scheme: dark;
    --bg: #07111f;
    --bg-2: #0d1728;
    --panel: rgba(255, 255, 255, 0.07);
    --panel-strong: rgba(255, 255, 255, 0.11);
    --line: rgba(255, 255, 255, 0.14);
    --text: #f7fbff;
    --muted: #a8b3c7;
    --blue: #00c2ff;
    --violet: #6d3bff;
    --green: #00d26a;
    --amber: #ffb800;
    --pink: #ff4d6d;
    --radius: 14px;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 0%, rgba(0, 194, 255, 0.16), transparent 32rem),
        radial-gradient(circle at 80% 10%, rgba(109, 59, 255, 0.16), transparent 30rem),
        linear-gradient(180deg, #07111f 0%, #091421 46%, #050910 100%);
    color: var(--text);
}

.admin-body {
    background: #f7fbff;
    color: #102034;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.page-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
}

.site-header__controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: min(400px, 48vw);
    max-width: 100%;
}

.site-nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background:
        linear-gradient(rgba(10, 20, 38, 0.72), rgba(10, 20, 38, 0.72)) padding-box,
        linear-gradient(135deg, rgba(0, 194, 255, 0.48), rgba(109, 59, 255, 0.44), rgba(142, 77, 255, 0.28)) border-box;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.035),
        0 0 0 1px rgba(0, 194, 255, 0.055),
        0 14px 34px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(18px);
}

.site-nav::before,
.site-nav::after {
    content: "";
    position: absolute;
    inset: 3px;
    pointer-events: none;
    border-radius: inherit;
    border: 1px solid transparent;
}

.site-nav::before {
    border-top-color: rgba(0, 194, 255, 0.24);
    border-left-color: rgba(0, 194, 255, 0.11);
}

.site-nav::after {
    inset: 5px;
    border-right-color: rgba(109, 59, 255, 0.2);
    border-bottom-color: rgba(142, 77, 255, 0.16);
}

.site-nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.1);
}

.language-switcher {
    flex: 0 0 auto;
}

.language-switcher select {
    width: auto;
    min-width: 94px;
    min-height: 44px;
    border-radius: 999px;
    border-color: rgba(0, 194, 255, 0.22);
    padding: 0 32px 0 14px;
    color: var(--text);
    background: rgba(10, 20, 38, 0.78);
    font-size: 13px;
    font-weight: 900;
}

.language-switcher option {
    color: #102034;
    background: #ffffff;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.hero {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 34px;
    padding: 46px 0 54px;
}

.eyebrow,
.service-category {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

h1,
h2,
h3 {
    font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
    letter-spacing: 0;
}

h1 {
    margin: 14px 0 18px;
    font-size: clamp(48px, 8vw, 92px);
    line-height: 0.95;
}

h2 {
    margin: 0 0 16px;
    font-size: 34px;
    line-height: 1.08;
}

h3 {
    margin: 9px 0 10px;
    font-size: 21px;
}

p {
    color: var(--muted);
    line-height: 1.72;
}

.hero-copy > p {
    max-width: 680px;
    font-size: 19px;
}

.hero-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn,
.btn-secondary,
.icon-link,
button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--radius);
    padding: 0 18px;
    font-weight: 800;
    cursor: pointer;
}

.btn,
button {
    color: #03101a;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 18px 40px rgba(0, 194, 255, 0.16);
}

.btn-secondary,
.icon-link {
    color: var(--text);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
}

.hero-panel,
.glass-panel,
.checkout-panel {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
}

.hero-panel {
    padding: 28px;
}

.hero-panel__screen {
    min-height: 390px;
    display: grid;
    align-content: stretch;
    gap: 18px;
    padding: 24px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(0, 194, 255, 0.3), transparent 36%),
        linear-gradient(315deg, rgba(109, 59, 255, 0.35), transparent 34%),
        #091521;
}

.workflow-visual {
    position: relative;
    overflow: hidden;
}

.workflow-visual::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 16px;
    border: 1px solid rgba(0, 194, 255, 0.12);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 86%);
}

.workflow-visual__header,
.workflow-map {
    position: relative;
    z-index: 1;
}

.workflow-visual__header h2 {
    max-width: 480px;
}

.workflow-visual__header p {
    max-width: 560px;
    margin-bottom: 0;
}

.workflow-map {
    min-height: 270px;
    display: grid;
    grid-template-columns: 0.9fr 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 12px 16px;
    align-items: center;
}

.workflow-map::before,
.workflow-map::after {
    content: "";
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 194, 255, 0.62), rgba(109, 59, 255, 0.28));
    transform-origin: left center;
}

.workflow-map::before {
    width: 31%;
    left: 20%;
    top: 50%;
}

.workflow-map::after {
    width: 30%;
    left: 51%;
    top: 50%;
    box-shadow:
        0 -78px 0 rgba(0, 194, 255, 0.18),
        0 78px 0 rgba(109, 59, 255, 0.2);
}

.workflow-node,
.workflow-hub,
.workflow-output {
    min-height: 92px;
    display: grid;
    align-content: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(6, 14, 25, 0.78);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.workflow-node,
.workflow-output {
    padding: 16px;
}

.workflow-node {
    grid-column: 1;
    grid-row: 2;
    border-color: rgba(0, 194, 255, 0.34);
}

.workflow-hub {
    grid-column: 2;
    grid-row: 2;
    min-height: 126px;
    place-items: center;
    text-align: center;
    border-color: rgba(0, 194, 255, 0.38);
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 194, 255, 0.18), transparent 58%),
        rgba(6, 14, 25, 0.84);
}

.workflow-output {
    grid-column: 3;
}

.workflow-output--audio {
    grid-row: 1;
    border-color: rgba(0, 194, 255, 0.3);
}

.workflow-output--sos {
    grid-row: 2;
    border-color: rgba(0, 210, 106, 0.28);
}

.workflow-output--scrape {
    grid-row: 3;
    border-color: rgba(142, 77, 255, 0.32);
}

.workflow-node span,
.workflow-hub span,
.workflow-output span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.workflow-node strong,
.workflow-hub strong,
.workflow-output strong {
    color: var(--text);
    font-size: 17px;
}

.workflow-output small {
    color: var(--muted);
    font-weight: 700;
}

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

.metric {
    min-height: 86px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
}

.metric strong {
    display: block;
    font-size: 22px;
}

.metric span {
    color: var(--muted);
    font-size: 13px;
}

.section {
    padding: 72px 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 26px;
}

.section-heading p {
    max-width: 560px;
    margin: 0;
}

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

.service-card {
    display: flex;
    min-height: 430px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel);
}

.service-art {
    position: relative;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.18), rgba(255, 255, 255, 0.06));
}

.service-image-button,
.checkout-image-button {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    padding: 0;
    color: inherit;
    background: transparent;
    box-shadow: none;
    cursor: zoom-in;
}

.service-image-button {
    height: 100%;
}

.service-image-button img,
.service-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-image-button__zoom {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: var(--text);
    background: rgba(5, 13, 24, 0.72);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    font-size: 24px;
    font-weight: 900;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.service-image-button:hover .service-image-button__zoom,
.service-image-button:focus-visible .service-image-button__zoom,
.checkout-image-button:hover .service-image-button__zoom,
.checkout-image-button:focus-visible .service-image-button__zoom {
    opacity: 1;
    transform: translateY(0);
}

.service-art > span {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    font-size: 24px;
    font-weight: 900;
}

.service-card__body,
.service-card__footer {
    padding: 20px;
}

.service-card__body p {
    margin-bottom: 0;
}

.service-card__footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    border-top: 1px solid var(--line);
}

.service-card__footer strong {
    white-space: nowrap;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.spotlight-service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
    background:
        linear-gradient(135deg, rgba(0, 194, 255, 0.13), transparent 34%),
        linear-gradient(315deg, rgba(109, 59, 255, 0.13), transparent 34%),
        rgba(255, 255, 255, 0.065);
}

.spotlight-service p {
    max-width: 720px;
    margin-bottom: 0;
}

.step {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
}

.step span {
    color: var(--blue);
    font-weight: 900;
}

.checkout-panel {
    max-width: 920px;
    margin: 42px auto 80px;
    padding: 28px;
}

.checkout-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.selected-service {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.checkout-service-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
}

.checkout-image-button {
    margin-bottom: 16px;
    border-radius: 12px;
}

.checkout-image-button .checkout-service-image {
    margin-bottom: 0;
}

.image-viewer {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: min(5vw, 48px);
    background: rgba(2, 7, 13, 0.88);
    backdrop-filter: blur(18px);
}

.image-viewer[hidden] {
    display: none;
}

.image-viewer img {
    max-width: min(1180px, 96vw);
    max-height: 88vh;
    width: auto;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: #07111f;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
}

.image-viewer__close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 46px;
    min-height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: var(--text);
    background: rgba(10, 20, 38, 0.84);
    box-shadow: none;
    font-size: 30px;
}

.image-viewer-open {
    overflow: hidden;
}

.checkout-payment-structure {
    overflow: hidden;
    margin: 24px 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
}

.checkout-price-box {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 26px 20px;
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.checkout-price-box span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.checkout-price-box strong {
    color: var(--text);
    font-size: 26px;
}

.checkout-price-box small {
    color: var(--muted);
    font-weight: 850;
}

.checkout-price-box p {
    margin: 0;
    color: #d6e8f4;
    font-weight: 800;
}

.payment-method-list {
    display: grid;
    gap: 10px;
    padding: 18px 20px 22px;
}

.payment-method-option {
    min-height: 50px;
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    cursor: pointer;
}

.payment-method-option:has(input:checked) {
    border-color: rgba(0, 194, 255, 0.54);
    background: rgba(0, 194, 255, 0.1);
}

.payment-method-option:has(input:disabled) {
    opacity: 0.48;
    cursor: not-allowed;
}

.payment-method-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-method-option__icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #06111d;
    background: var(--method-accent);
    font-size: 14px;
    font-weight: 950;
}

.payment-method-option__name {
    color: var(--text);
    font-weight: 850;
}

.payment-method-option__code {
    color: var(--muted);
    font-weight: 850;
    letter-spacing: 0.04em;
}

.wallet-choice-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 18px;
    padding: 18px 20px 22px;
}

.wallet-choice-control {
    display: grid;
    align-content: start;
    gap: 12px;
}

.wallet-native-label {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.wallet-native-select {
    min-height: 56px;
    border-radius: 16px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
    font-weight: 900;
}

.wallet-native-select option {
    color: #102034;
    background: #ffffff;
}

.wallet-selected-card {
    min-height: 66px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.18);
}

.wallet-selected-card strong,
.wallet-selected-card small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wallet-selected-card strong {
    color: var(--text);
}

.wallet-selected-card small {
    color: var(--muted);
    font-size: 12px;
}

.wallet-choice-preview {
    display: grid;
    grid-template-columns: 106px 1fr;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.2);
}

.wallet-choice-preview img {
    width: 106px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    background: #ffffff;
}

.wallet-choice-preview strong,
.wallet-choice-preview span {
    display: block;
}

.wallet-choice-preview span {
    color: var(--muted);
    font-size: 12px;
}

.wallet-choice-preview button {
    min-height: 36px;
    margin-top: 10px;
    padding: 0 13px;
    font-size: 13px;
}

.jason-payment-session {
    overflow: hidden;
    margin: 24px 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    color: #142236;
}

.jason-payment-session__head {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    border-bottom: 1px solid #d8e1ee;
}

.jason-payment-session__head h2 {
    margin: 4px 0 0;
    color: #102034;
    font-size: 25px;
}

.payment-countdown {
    min-width: 86px;
    color: #102034;
    font-size: 20px;
    font-weight: 900;
    text-align: right;
}

.jason-payment-session__body {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 28px;
    padding: 30px 22px;
}

.payment-qr {
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
    justify-self: center;
    padding: 10px;
    border: 1px solid #d8e1ee;
    border-radius: 12px;
    background: #ffffff;
}

.payment-qr img {
    width: 100%;
    height: 100%;
}

.payment-instruction {
    display: grid;
    justify-items: center;
    gap: 12px;
    color: #44566d;
    text-align: center;
}

.payment-instruction strong {
    max-width: 280px;
    color: #304157;
    line-height: 1.45;
}

.payment-instruction small {
    color: #66778c;
}

.payment-guidance {
    padding: 16px 22px;
    border-top: 1px solid #d8e1ee;
    color: #44566d;
    background: #f5f8fc;
    line-height: 1.55;
    font-weight: 750;
}

.payment-detail-row {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    border-top: 1px solid #d8e1ee;
}

.payment-detail-row span {
    color: #66778c;
}

.payment-detail-row code {
    overflow: hidden;
    color: #142236;
    font-family: inherit;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.payment-detail-row button {
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
}

.payment-detail-link {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 0 14px;
    color: #06111d;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    font-size: 13px;
    font-weight: 900;
}

.payment-detail-row--wide code {
    white-space: normal;
}

.payment-expired {
    margin: 0;
    padding: 16px 22px;
    border-top: 1px solid rgba(255, 77, 109, 0.35);
    color: #7d1128;
    background: rgba(255, 77, 109, 0.11);
    font-weight: 800;
}

.jason-payment-session.is-expired .payment-countdown {
    color: #b51435;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.field {
    display: grid;
    gap: 7px;
}

.field--full {
    grid-column: 1 / -1;
}

label {
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 11px 13px;
    color: var(--text);
    background: rgba(0, 0, 0, 0.22);
    font: inherit;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

.notice {
    margin: 18px 0;
    padding: 14px 16px;
    border: 1px solid rgba(0, 210, 106, 0.35);
    border-radius: 14px;
    color: #ccffe4;
    background: rgba(0, 210, 106, 0.09);
}

.notice--error {
    border-color: rgba(255, 77, 109, 0.42);
    color: #ffe0e7;
    background: rgba(255, 77, 109, 0.1);
}

.admin-login {
    min-height: 58vh;
    display: grid;
    place-items: center;
    padding: 36px 0 80px;
}

.admin-console {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 248px 1fr;
    background: #f8fbff;
    color: #102034;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 28px;
    padding: 28px 14px;
    border-right: 1px solid #d8e1ee;
    background: #ffffff;
}

.admin-sidebar__brand {
    display: block;
    padding: 0 2px 24px;
}

.admin-sidebar__brand img {
    width: 132px;
}

.admin-menu {
    display: grid;
    align-content: start;
    gap: 8px;
}

.admin-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 14px;
    border-right: 3px solid transparent;
    color: #142236;
    font-weight: 800;
}

.admin-menu a span {
    width: 24px;
    color: #00a8d8;
    font-size: 22px;
}

.admin-menu a.is-active {
    color: #00a8d8;
    border-right-color: #00c2ff;
    background: rgba(0, 194, 255, 0.07);
}

.admin-create {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #00b7d8, #6d3bff);
    font-weight: 900;
}

.admin-workspace {
    width: min(920px, calc(100% - 44px));
    margin: 0 auto;
    padding: 30px 0 72px;
}

.admin-workspace--wide {
    width: min(1120px, calc(100% - 44px));
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
}

.admin-topbar h1 {
    margin: 6px 0 0;
    color: #102034;
    font-size: 42px;
}

.admin-user--compact {
    min-width: 210px;
    color: var(--text);
}

.admin-mini-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.admin-mini-stats article {
    padding: 16px;
    border: 1px solid #dce5f0;
    border-radius: 14px;
    background: #ffffff;
}

.admin-mini-stats strong {
    display: block;
    color: #102034;
    font-size: 28px;
}

.admin-mini-stats span {
    color: #5e6d82;
    font-weight: 800;
}

.checkout-list-panel {
    border-top: 1px solid #d6dfeb;
    background: #ffffff;
}

.checkout-row {
    min-height: 64px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 160px 92px;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #d6dfeb;
    color: #102034;
}

.checkout-row:hover {
    background: rgba(0, 194, 255, 0.05);
}

.checkout-row__number {
    color: #6b7888;
    text-align: right;
}

.checkout-row__title {
    min-width: 0;
}

.checkout-row__title strong,
.checkout-row__title small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.checkout-row__title small,
.checkout-row__template {
    color: #68778a;
    font-size: 13px;
}

.checkout-row__price {
    color: #33485f;
    text-align: right;
    font-weight: 800;
}

.admin-panel--flat {
    margin-top: 34px;
    color: var(--text);
}

.notice--admin {
    color: #0a2637;
}

.settings-editor {
    display: grid;
    gap: 20px;
}

.settings-section {
    display: grid;
    grid-template-columns: minmax(210px, 0.36fr) minmax(0, 1fr);
    gap: 28px;
    padding: 26px 0;
    border-top: 1px solid #d6dfeb;
}

.settings-section__intro h2 {
    margin: 0 0 8px;
    color: #102034;
    font-size: 22px;
}

.settings-section__intro p {
    margin: 0;
    color: #53647a;
    line-height: 1.55;
}

.settings-section__fields {
    display: grid;
    gap: 16px;
}

.settings-section__fields--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.settings-field {
    display: grid;
    gap: 8px;
}

.settings-field label,
.settings-toggle strong {
    color: #102034;
    font-weight: 900;
}

.settings-field input {
    width: 100%;
    min-height: 44px;
    border: 1px solid #ccd8e5;
    border-radius: 8px;
    padding: 0 14px;
    color: #16283d;
    background: #f4f9fc;
    font: inherit;
}

.settings-field input:focus {
    outline: 2px solid rgba(0, 194, 255, 0.28);
    border-color: #00a8d8;
    background: #ffffff;
}

.settings-toggle {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid #ccd8e5;
    border-radius: 10px;
    background: #ffffff;
}

.settings-toggle span {
    display: grid;
    gap: 4px;
}

.settings-toggle small {
    color: #5c6e83;
    line-height: 1.4;
}

.settings-toggle input {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    accent-color: #00a8d8;
}

.settings-actions {
    position: sticky;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 0 0;
    background: linear-gradient(180deg, rgba(248, 251, 255, 0), #f8fbff 28%);
}

.settings-actions button {
    min-height: 44px;
    min-width: 190px;
}

.admin-card,
.admin-panel,
.admin-stats article,
.admin-user {
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(0, 194, 255, 0.08), transparent 42%),
        linear-gradient(315deg, rgba(109, 59, 255, 0.11), transparent 42%),
        rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.admin-card {
    width: min(460px, 100%);
    display: grid;
    gap: 16px;
    padding: 28px;
    border-radius: 20px;
}

.admin-card h1 {
    margin: 6px 0 2px;
    font-size: 44px;
}

.admin-shell {
    padding: 36px 0 82px;
}

.admin-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.admin-title h1 {
    margin-bottom: 10px;
}

.admin-title p {
    max-width: 680px;
    margin: 0;
}

.admin-user {
    min-width: 230px;
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
}

.admin-stats,
.admin-columns {
    display: grid;
    gap: 16px;
}

.admin-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 18px;
}

.admin-stats article {
    min-height: 116px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 20px;
    border-radius: 16px;
}

.admin-stats strong {
    font-size: 38px;
    line-height: 1;
}

.admin-stats span,
.admin-panel__head span,
.admin-table small {
    color: var(--muted);
}

.admin-panel {
    overflow: hidden;
    border-radius: 18px;
}

.admin-panel + .admin-panel,
.admin-columns {
    margin-top: 18px;
}

.admin-columns {
    grid-template-columns: 1.1fr 0.9fr;
}

.admin-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
}

.admin-panel__head h2 {
    margin: 0;
    font-size: 24px;
}

.admin-search-row {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-search-row input {
    width: 100%;
    min-height: 46px;
    border-color: #d4dee9;
    color: #102034;
    background: #f5f9fc;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.admin-table th,
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-table small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
}

.admin-transactions-table {
    min-width: 860px;
}

.admin-address-link {
    color: #102034;
    font-weight: 900;
}

.admin-address-link:hover {
    color: #00a8d8;
}

.status-pill {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    border: 1px solid rgba(0, 194, 255, 0.22);
    border-radius: 999px;
    padding: 0 10px;
    color: #dff8ff;
    background: rgba(0, 194, 255, 0.08);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.status-pill--payment {
    border-color: rgba(109, 59, 255, 0.28);
    background: rgba(109, 59, 255, 0.12);
}

.status-dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-right: 8px;
    border-radius: 999px;
    background: #f6a400;
}

.status-pill--method {
    border-color: rgba(0, 194, 255, 0.28);
    color: #dff8ff;
    background: rgba(0, 194, 255, 0.12);
}

.status-pill--enquiry {
    border-color: rgba(255, 180, 70, 0.32);
    color: #fff1d4;
    background: rgba(255, 180, 70, 0.12);
}

.table-action {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(0, 194, 255, 0.24);
    border-radius: 999px;
    padding: 0 12px;
    color: var(--text);
    background: rgba(0, 194, 255, 0.08);
    font-size: 12px;
    font-weight: 900;
}

.admin-editor {
    display: grid;
    gap: 18px;
}

.admin-editor__panel {
    overflow: visible;
}

.admin-form-grid,
.admin-image-grid {
    display: grid;
    gap: 16px;
    padding: 20px;
}

.admin-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.image-upload-box {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
}

.image-upload-box strong {
    color: var(--text);
}

.image-upload-box img {
    width: 100%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.24);
}

.image-upload-box--square img {
    max-width: 170px;
    aspect-ratio: 1;
}

.image-upload-box--landscape img {
    max-width: 320px;
    aspect-ratio: 16 / 9;
}

.image-upload-box small {
    color: var(--muted);
    line-height: 1.5;
}

.admin-editor__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 30px 0 42px;
    display: grid;
    justify-items: center;
    gap: 18px;
    border-top: 1px solid var(--line);
    text-align: center;
}

.footer-brand {
    display: grid;
    justify-items: center;
    gap: 6px;
}

.footer-brand img {
    width: min(270px, 72vw);
}

.footer-brand p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-payments {
    min-width: min(100%, 470px);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background:
        linear-gradient(rgba(10, 20, 38, 0.74), rgba(10, 20, 38, 0.74)) padding-box,
        linear-gradient(135deg, rgba(0, 194, 255, 0.34), rgba(109, 59, 255, 0.28)) border-box;
}

.footer-payments p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.footer-payments__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    justify-content: center;
}

.payment-icon,
.payment-token {
    width: 46px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.payment-icon img {
    max-width: 29px;
    max-height: 22px;
    object-fit: contain;
}

.payment-token {
    color: #dff8ff;
    border-color: rgba(0, 194, 255, 0.2);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.payment-token--invoice {
    width: auto;
    padding: 0 12px;
    border-color: rgba(109, 59, 255, 0.25);
}

.jai-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    display: grid;
    justify-items: end;
    gap: 18px;
}

.jai-whatsapp__launcher,
.jai-whatsapp__cta {
    min-height: 62px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0, 194, 255, 0.32);
    border-radius: 999px;
    color: var(--text);
    background:
        linear-gradient(rgba(10, 20, 38, 0.78), rgba(10, 20, 38, 0.78)) padding-box,
        linear-gradient(135deg, rgba(0, 194, 255, 0.62), rgba(109, 59, 255, 0.48)) border-box;
    box-shadow: 0 18px 46px rgba(0, 194, 255, 0.12);
    font-size: 16px;
    font-weight: 800;
}

.jai-whatsapp__launcher {
    padding: 0 24px 0 16px;
}

.jai-whatsapp__icon {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--green);
    border: 1px solid rgba(0, 210, 106, 0.36);
}

.jai-whatsapp__icon svg {
    width: 25px;
    height: 25px;
    fill: #06120a;
}

.jai-whatsapp__panel {
    width: min(380px, calc(100vw - 28px));
    overflow: hidden;
    border: 1px solid rgba(0, 194, 255, 0.24);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(0, 194, 255, 0.14), transparent 42%),
        linear-gradient(315deg, rgba(109, 59, 255, 0.18), transparent 42%),
        rgba(5, 13, 20, 0.96);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.46),
        0 0 0 1px rgba(109, 59, 255, 0.09);
    backdrop-filter: blur(22px);
}

.jai-whatsapp__header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 194, 255, 0.18);
    background:
        linear-gradient(135deg, rgba(0, 194, 255, 0.12), rgba(109, 59, 255, 0.1)),
        rgba(8, 18, 32, 0.72);
}

.jai-whatsapp__eyebrow {
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.jai-whatsapp__header h2 {
    margin: 4px 0 0;
    font-size: 24px;
}

.jai-whatsapp__close {
    width: 40px;
    min-height: 40px;
    padding: 0;
    color: var(--text);
    border: 1px solid rgba(0, 194, 255, 0.2);
    background: rgba(11, 23, 34, 0.72);
    box-shadow: none;
    font-size: 28px;
    line-height: 1;
}

.jai-whatsapp__body {
    padding: 19px;
}

.jai-whatsapp__message {
    padding: 16px;
    border: 1px solid rgba(0, 194, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}

.jai-whatsapp__message strong {
    color: var(--text);
}

.jai-whatsapp__message p {
    margin: 7px 0 0;
    color: #d6e0e8;
    line-height: 1.5;
}

.jai-whatsapp__form {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.jai-whatsapp__form label {
    display: grid;
    gap: 6px;
}

.jai-whatsapp__form label span {
    color: #d6e0e8;
    font-size: 12px;
    font-weight: 900;
}

.jai-whatsapp__form input,
.jai-whatsapp__form textarea {
    min-height: 42px;
    border-color: rgba(0, 194, 255, 0.18);
    border-radius: 12px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.jai-whatsapp__form textarea {
    min-height: 92px;
    resize: vertical;
}

.jai-whatsapp__cta {
    width: 100%;
    justify-content: center;
    margin-top: 15px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 17px;
    color: #03101a;
    background:
        linear-gradient(135deg, var(--blue), var(--violet)) padding-box,
        linear-gradient(135deg, rgba(0, 194, 255, 0.68), rgba(109, 59, 255, 0.54)) border-box;
    box-shadow: 0 16px 36px rgba(0, 194, 255, 0.16);
}

.jai-whatsapp__form .jai-whatsapp__cta {
    margin-top: 4px;
}

.jai-whatsapp__status {
    margin: 0;
    padding: 10px 12px;
    border: 1px solid rgba(0, 210, 106, 0.26);
    border-radius: 12px;
    color: #dfffea;
    background: rgba(0, 210, 106, 0.1);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}

.jai-whatsapp__status.is-error {
    border-color: rgba(255, 77, 109, 0.34);
    color: #ffe0e7;
    background: rgba(255, 77, 109, 0.12);
}

.jai-whatsapp__fallback {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.payment-row {
    display: flex;
    flex-wrap: wrap;
    align-content: start;
    gap: 8px;
}

.payment-row span {
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

@media (max-width: 920px) {
    .hero,
    .checkout-intro {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .step-grid,
    .admin-stats,
    .admin-columns,
    .admin-form-grid,
    .admin-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .site-header,
    .section-heading,
    .admin-title,
    .spotlight-service,
    .service-card__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .site-header__controls {
        width: 100%;
        align-items: stretch;
    }

    .site-nav {
        width: 100%;
        justify-content: space-between;
        overflow-x: auto;
    }

    .language-switcher select {
        width: 94px;
    }

    .hero {
        min-height: 0;
        padding-top: 22px;
    }

    h1 {
        font-size: 52px;
    }

    .service-grid,
    .step-grid,
    .form-grid,
    .metric-grid,
    .workflow-map {
        grid-template-columns: 1fr;
    }

    .workflow-map {
        min-height: 0;
        grid-template-rows: none;
    }

    .workflow-map::before,
    .workflow-map::after {
        display: none;
    }

    .workflow-node,
    .workflow-hub,
    .workflow-output,
    .workflow-output--audio,
    .workflow-output--sos,
    .workflow-output--scrape {
        grid-column: 1;
        grid-row: auto;
    }

    .admin-stats,
    .admin-columns,
    .admin-form-grid,
    .admin-image-grid {
        grid-template-columns: 1fr;
    }
}
