

:root {
    --bg: #121316;
    --bg-2: #1b1d21;
    --accent: #EED401;
    --accent-2: #FFE53D;
    --ink: #F5F7FA;
    --muted: rgba(245, 247, 250, .66);
    --muted-2: rgba(245, 247, 250, .42);
    --line: rgba(245, 247, 250, .14);
    --line-strong: rgba(245, 247, 250, .26);
    --danger: #ff5a6e;
    --field: rgba(255, 255, 255, .06);
    --radius: 16px;
    --maxw: 1180px;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --font-head: "Ubuntu Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --font-body: "Onest", "Ubuntu Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 60;
    padding: 10px 16px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

.site-header {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 18px clamp(16px, 4vw, 28px);
    padding-top: max(18px, env(safe-area-inset-top));
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}
.logo__text {
    color: var(--ink);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 19px;
}
.logo__img {
    height: 34px;
    width: auto;
    display: block;
}

.site-header__contact {
    display: flex;
    gap: 18px;
    font-size: 14px;
    font-weight: 600;
}
.site-header__contact a {
    text-decoration: none;
    color: var(--ink);
    opacity: .9;
    transition: opacity .15s ease;
}
.site-header__contact a:hover { opacity: 1; }
.site-header__contact a:first-child { color: #fff; }
@media (max-width: 600px) {
    .site-header__contact a:nth-child(2) { display: none; }
}

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    overflow: hidden;
    isolation: isolate;
    background: var(--bg);
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    will-change: transform;
}
.hero-media-inner {
    position: absolute;
    inset: 0;
    transform: scale(1.10);
    will-change: transform;
}
.hero-poster,
.hero-poster img,
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-poster img { z-index: 0; }
.hero-video {
    z-index: 1;
    opacity: 0;
    transition: opacity .9s ease;
}
.hero-video.is-playing { opacity: 1; }

.hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(16, 18, 21, .45) 0%, rgba(16, 18, 21, .78) 100%),
        linear-gradient(rgba(16, 18, 21, .5), rgba(16, 18, 21, .5));
}

@media (min-width: 920px) {
    .hero-scrim::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(16, 18, 21, .9) 0%, rgba(16, 18, 21, .68) 26%, rgba(16, 18, 21, .2) 44%, rgba(16, 18, 21, 0) 56%);
    }
}

.hero-glow {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: .06;
    will-change: opacity, transform;
    background: radial-gradient(58% 48% at 70% 36%, rgba(238, 212, 1, .9), rgba(238, 212, 1, 0) 62%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: .06;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 160px 160px;
}
.hero-grain::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .5;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, .03) 0 1px,
        rgba(255, 255, 255, 0) 1px 3px);
}

.hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    align-content: center;
    display: grid;
    gap: 30px;
    padding: clamp(96px, 14vh, 150px) clamp(16px, 4vw, 28px) clamp(72px, 10vh, 120px);
}
@media (min-width: 920px) {
    .hero-content {
        grid-template-columns: 1.04fr .96fr;
        align-items: center;
        gap: 56px;
        padding-block: 110px;
    }
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    padding: 7px 14px;
    border: 1px solid rgba(238, 212, 1, .5);
    border-radius: 999px;
    background: rgba(238, 212, 1, .12);
    color: #EED401;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 2.5px;
    width: max-content;
}
.kicker__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 0 0 rgba(255, 229, 61, .7);
    animation: pulseDot 2.4s ease-out infinite;
}
@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(255, 229, 61, .55); }
    70% { box-shadow: 0 0 0 10px rgba(255, 229, 61, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 229, 61, 0); }
}

.hero-title {
    margin: 0 0 18px;
    font-size: clamp(34px, 6.6vw, 60px);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -.01em;
    color: #fff;
    text-shadow: 0 2px 30px rgba(0, 0, 0, .45);
}

.hero-sub {
    margin: 0 0 22px;
    max-width: 46ch;
    font-size: clamp(15.5px, 1.5vw, 18px);
    color: var(--muted);
}

.hero-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 14px;
    color: var(--ink);
}
.hero-points li {
    position: relative;
    padding-left: 20px;
    opacity: .92;
}
.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(238, 212, 1, .8);
}

.card {
    background: rgba(11, 15, 20, .92);
    border: 1px solid var(--line);
    border-top: 3px solid var(--accent);
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
    padding: clamp(20px, 3vw, 30px);
}

.card__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.card__head h2 {
    margin: 0;
    font-size: clamp(19px, 2.4vw, 23px);
    font-weight: 700;
    color: #fff;
}
.card__badge {
    margin: 0;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(245, 247, 250, .08);
    border: 1px solid var(--line);
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
}

.alert {
    margin: 0 0 16px;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    background: rgba(255, 90, 110, .12);
    border: 1px solid rgba(255, 90, 110, .4);
    color: #ffb3bd;
}
.alert--ok {
    background: rgba(60, 200, 120, .12);
    border-color: rgba(60, 200, 120, .4);
    color: #9be6b9;
}

.field { margin-bottom: 15px; }

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 380px) {
    .field-row { grid-template-columns: 1fr; gap: 0; }
}

.field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 13.5px;
    color: var(--ink);
}
.req { color: var(--accent-2); }

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="password"] {
    width: 100%;
    padding: 13px 14px;
    font: inherit;
    color: var(--ink);
    background: var(--field);
    border: 1.5px solid var(--line-strong);
    border-radius: 11px;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input::placeholder { color: var(--muted-2); }
.field input:hover { border-color: rgba(245, 247, 250, .38); }
.field input:focus {
    outline: none;
    border-color: var(--accent-2);
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 0 0 3px rgba(238, 212, 1, .28);
}
.field.has-error input {
    border-color: var(--danger);
}
.field.has-error input:focus {
    box-shadow: 0 0 0 3px rgba(255, 90, 110, .22);
}

.err {
    display: block;
    margin-top: 6px;
    min-height: 15px;
    color: var(--danger);
    font-size: 12.5px;
    font-weight: 600;
}

.field--check { margin-top: 4px; }
.check {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    font-weight: 400 !important;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
    cursor: pointer;
}
.check input {
    margin-top: 1px;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    accent-color: var(--accent);
    cursor: pointer;
}

.btn {
    position: relative;
    width: 100%;
    margin-top: 4px;
    padding: 15px 18px;
    font: inherit;
    font-weight: 700;
    font-size: 16px;
    color: #14171b;
    background: var(--accent);
    border: none;
    border-radius: 11px;
    cursor: pointer;
    overflow: hidden;
    transition: background .15s ease, transform .06s ease, box-shadow .2s ease;
    box-shadow: 0 8px 18px rgba(238, 212, 1, .10);
}
.btn:hover { background: var(--accent-2); box-shadow: 0 10px 22px rgba(238, 212, 1, .16); }
.btn:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.btn:active { transform: translateY(1px); }
.btn:disabled { cursor: progress; opacity: .8; }
.btn.is-loading .btn__label { opacity: 0; }
.btn__spinner {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(20, 23, 27, .35);
    border-top-color: #14171b;
    border-radius: 50%;
    opacity: 0;
}
.btn.is-loading .btn__spinner { opacity: 1; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.trust {
    list-style: none;
    margin: 16px 0 0;
    padding: 14px 0 0;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--muted);
}
.trust li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.trust svg {
    width: 15px;
    height: 15px;
    color: var(--accent-2);
    flex: 0 0 auto;
}

.note {
    margin: 13px 0 0;
    font-size: 11px;
    color: var(--muted-2);
    line-height: 1.5;
}
.note a { color: var(--muted); text-decoration: underline; }

.hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.success {
    text-align: center;
    padding: 14px 6px 8px;
}
.success__icon { margin-bottom: 6px; }
.success h3 {
    margin: 0 0 8px;
    font-size: 23px;
    font-weight: 700;
    color: #fff;
}
.success p { margin: 0 auto; max-width: 34ch; color: var(--muted); font-size: 14.5px; }
.success a { color: #EED401; }

.below {
    background:
        radial-gradient(120% 80% at 50% -20%, rgba(238, 212, 1, .12), transparent 60%),
        var(--bg);
    border-top: 1px solid var(--line);
    padding: clamp(48px, 8vw, 90px) clamp(16px, 4vw, 28px);
}
.below__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr;
}
@media (min-width: 760px) {
    .below__inner { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
.feature {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .02);
}
.feature h3 { margin: 0 0 8px; font-size: 18px; color: #fff; }
.feature p { margin: 0; color: var(--muted); font-size: 14.5px; }

.site-footer {
    background: var(--bg);
    color: var(--muted-2);
    text-align: center;
    padding: 26px 20px;
    padding-bottom: max(26px, env(safe-area-inset-bottom));
    font-size: 13px;
    border-top: 1px solid var(--line);
}
.site-footer p { margin: 0 0 6px; }
.site-footer__contact { display: flex; gap: 18px; justify-content: center; }
.site-footer__contact a { color: var(--muted); text-decoration: none; }
.site-footer__contact a:hover { color: var(--ink); }

.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: linear-gradient(to top, rgba(16, 18, 21, .98), rgba(16, 18, 21, .86));
    border-top: 1px solid var(--line);
    transform: translateY(120%);
    transition: transform .32s var(--ease);
    display: none;
}
.sticky-cta.is-visible { transform: translateY(0); }
.btn--sticky { margin-top: 0; box-shadow: 0 -2px 24px rgba(238, 212, 1, .3); }
@media (max-width: 768px) {
    .sticky-cta { display: block; }
}

@media (prefers-reduced-motion: no-preference) {
    .hero-reveal {
        opacity: 0;
        transform: translateY(28px);
        animation: heroReveal .8s var(--ease) forwards;
    }
    .hero-copy .kicker { animation-delay: .05s; }
    .hero-copy .hero-title { animation-delay: .13s; }
    .hero-copy .hero-sub { animation-delay: .21s; }
    .hero-copy .hero-points { animation-delay: .29s; }
    .card.hero-reveal { animation-delay: .24s; }
}
@keyframes heroReveal {
    to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
    .kicker__dot { animation: none; }
    .hero-video { display: none; }
    .btn.is-loading .btn__spinner { animation: spin 1.4s linear infinite; }
    .sticky-cta { transition: none; }
}

.btn-amber {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding: 13px 22px;
    font: inherit;
    font-weight: 700;
    font-size: 15px;
    color: var(--accent);
    background: rgba(238, 212, 1, .10);
    border: 1.5px solid rgba(238, 212, 1, .55);
    border-radius: 11px;
    cursor: pointer;
    transition: background .15s ease, transform .06s ease, border-color .15s ease;
}
.btn-amber:hover { background: rgba(238, 212, 1, .18); border-color: var(--accent); }
.btn-amber:active { transform: translateY(1px); }
.btn-amber b { color: var(--ink); font-weight: 700; }

.order {
    background:
        radial-gradient(120% 80% at 50% -20%, rgba(238, 212, 1, .08), transparent 60%),
        var(--bg);
    border-top: 1px solid var(--line);
    padding: clamp(48px, 8vw, 96px) clamp(16px, 4vw, 28px);
}
.order__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    gap: 36px;
    align-items: center;
}
@media (min-width: 860px) {
    .order__inner { grid-template-columns: 1fr 380px; gap: 56px; }
}
.order__pitch .kicker { margin-bottom: 16px; }
.order__pitch h2 {
    margin: 0 0 14px;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.08;
    color: #fff;
    letter-spacing: -.01em;
}
.order__pitch p { margin: 0 0 10px; color: var(--muted); max-width: 52ch; font-size: 16px; }
.order__note { font-size: 13px; color: var(--muted-2); }

.alertme {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, .03);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
}
.alertme__head {
    background: var(--accent);
    color: #14171b;
    text-align: center;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: .5px;
    padding: 16px;
}
.alertme__body { padding: 26px 24px 24px; text-align: center; }
.alertme__price { font-size: 30px; font-weight: 700; color: #fff; }
.alertme__price span { font-size: 15px; color: var(--muted); font-weight: 600; }
.alertme__rule { height: 1px; background: rgba(238, 212, 1, .5); margin: 20px auto; width: 80%; }
.alertme__features { list-style: none; margin: 0 0 8px; padding: 0; display: grid; gap: 14px; }
.alertme__features li {
    display: flex; align-items: center; gap: 10px; justify-content: center;
    color: var(--ink); font-size: 15px;
}
.alertme__features svg { width: 18px; height: 18px; color: var(--accent); flex: 0 0 auto; }
.alertme__foot { margin: 18px 0 0; font-size: 12.5px; color: var(--muted-2); line-height: 1.5; }
.alertme .btn { margin-top: 20px; }

.no-scroll { overflow: hidden; overscroll-behavior: none; }
body.no-scroll { position: fixed; left: 0; right: 0; width: 100%; }
.checkout[hidden] { display: none; }
.checkout {
    position: fixed;
    inset: 0;
    z-index: 80;
    overscroll-behavior: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(8px, 3vw, 28px);
}
.checkout__overlay {
    position: absolute; inset: 0;
    background: rgba(2, 4, 6, .86);
}
.checkout__dialog {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: 94vh;
    max-height: 94dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #15181d;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .65);
}
.checkout__close {
    position: absolute; top: 8px; right: 10px; z-index: 4;
    width: 44px; height: 44px;
    border: none; border-radius: 9px;
    background: rgba(255, 255, 255, .08); color: var(--ink);
    font-size: 20px; line-height: 1; cursor: pointer;
}
.checkout__close:hover { background: rgba(255, 255, 255, .16); }
.checkout__demoflag {
    background: rgba(238, 212, 1, .12);
    color: #ffe97a;
    font-size: 12px; font-weight: 600; text-align: center;
    padding: 7px 12px;
    border-bottom: 1px solid rgba(238, 212, 1, .25);
}
.checkout__head { padding: 18px 22px 6px; position: sticky; top: 0; z-index: 3; background: #15181d; }
.checkout__pkg { margin: 0 0 4px; font-size: 12.5px; font-weight: 700; letter-spacing: 1.5px; color: var(--accent); text-transform: uppercase; }
.checkout__title { margin: 0 0 14px; font-size: 21px; color: #fff; }
.stepper { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.stepper__dot { height: 4px; flex: 1; border-radius: 3px; background: rgba(255, 255, 255, .12); }
.stepper__dot.is-done { background: rgba(238, 212, 1, .55); }
.stepper__dot.is-active { background: var(--accent); }

.checkout__body { padding: 16px 22px; }
.step { animation: stepIn .3s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.step__lead { margin: 0 0 16px; color: var(--muted); font-size: 14px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 460px) { .field-grid { grid-template-columns: 1fr; gap: 0; } }
.field-grid .field { margin-bottom: 15px; }

.cam {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: clamp(200px, 36vh, 280px);
    background: #0c0e12;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
}
.cam-video { width: 100%; height: 100%; object-fit: cover; transform: scaleX(-1); display: none; }
.cam-live .cam-video { display: block; }
.cam-canvas { display: none; }
.shot-preview { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cam-hint { color: var(--muted-2); font-size: 13px; text-align: center; padding: 0 18px; }
.cam-live .cam-hint, .has-shot .cam-hint { display: none; }
.cam-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.cam-file { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; color: var(--accent); font-weight: 600; padding: 13px 18px; border: 1.5px solid var(--line-strong); border-radius: 11px; }
.cam-file:hover { border-color: var(--accent); }
.cam-file input { position: absolute; left: -9999px; }
[data-shoot] { display: none; }
.cam-live [data-shoot] { display: inline-flex; }
[data-retake] { display: none; }
.has-shot [data-retake] { display: inline-flex; }
.has-shot [data-shoot] { display: none; }
.verify-status { margin-top: 10px; font-size: 13.5px; font-weight: 600; min-height: 18px; }
.verify-status.is-checking { color: #ffe97a; }
.verify-status.is-checking::before { content: ""; display: inline-block; width: 12px; height: 12px; margin-right: 7px; vertical-align: -1px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.verify-status.is-ok { color: #7fe0a4; }

.id-methods { display: grid; gap: 12px; }
@media (min-width: 420px) { .id-methods { grid-template-columns: 1fr 1fr; } }
.id-btn {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 26px 16px; cursor: pointer;
    background: rgba(255, 255, 255, .04); color: var(--ink);
    border: 1.5px solid var(--line-strong); border-radius: 14px;
    font: inherit; font-weight: 700; font-size: 15px;
    transition: border-color .15s ease, background .15s ease, transform .1s ease, box-shadow .2s ease;
}
.id-btn svg { width: 30px; height: 30px; color: var(--accent); }
.id-btn:hover { border-color: var(--accent); background: rgba(238, 212, 1, .08); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0, 0, 0, .45); }
.id-btn small { color: var(--muted); font-weight: 400; font-size: 12px; }
.id-redirect { position: absolute; inset: 0; z-index: 4; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; background: rgba(10, 12, 16, .9); }
.id-redirect__spin { width: 34px; height: 34px; border: 3px solid rgba(255,255,255,.25); border-top-color: var(--accent); border-radius: 50%; animation: spin .8s linear infinite; }
.id-redirect__txt { color: var(--ink); font-weight: 600; }
.id-done { margin-top: 14px; color: #7fe0a4; font-weight: 700; }

.stripe-card {
    border: 1px solid var(--line-strong); border-radius: 13px;
    padding: 16px; background: rgba(255,255,255,.04); margin-bottom: 14px;
}
.stripe-badge { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; font-size: 12px; color: var(--muted); }
.stripe-badge b { color: var(--ink); letter-spacing: 1px; }
.pay-note { font-size: 12px; color: var(--muted-2); }

.sum { display: grid; gap: 0; border: 1px solid var(--line); border-radius: 13px; overflow: hidden; margin-bottom: 14px; }
.sum__row { display: flex; justify-content: space-between; gap: 14px; padding: 11px 14px; font-size: 14px; border-bottom: 1px solid var(--line); }
.sum__row:last-child { border-bottom: 0; }
.sum__row span { color: var(--muted); }
.sum__row b { color: var(--ink); text-align: right; }
.sum__imgs { display: flex; gap: 10px; padding: 12px 14px; }
.sum__img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; border: 1px solid var(--line); }
.done-hero { text-align: center; padding: 6px 0 14px; }
.done-hero__icon { width: 56px; height: 56px; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(238,212,1,.14); color: var(--accent); font-size: 28px; }
.done-hero h3 { margin: 0 0 6px; color: #fff; font-size: 22px; }
.done-hero p { margin: 0; color: var(--muted); font-size: 14px; }

.checkout__foot {
    display: flex; gap: 12px; align-items: center;
    position: sticky; bottom: 0; z-index: 3;
    padding: 14px 22px; border-top: 1px solid var(--line);
    background: #15181d;
}
.checkout__foot .btn { margin-top: 0; flex: 1; }
.btn-ghost {
    padding: 14px 18px; font: inherit; font-weight: 600; font-size: 15px;
    color: var(--ink); background: transparent;
    border: 1.5px solid var(--line-strong); border-radius: 11px; cursor: pointer;
}
.btn-ghost:hover { border-color: var(--ink); }

.cam-secure { margin-top: 8px; font-size: 11.5px; color: var(--muted-2); }
.id-cam { aspect-ratio: 3 / 2; }

.cam-hud { position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .25s ease; }
.cam-live .cam-hud { opacity: 1; }
.cam-hud--doc { opacity: 1; }
.has-shot .cam-hud { opacity: 0; }

.cam-oval {
    position: absolute; left: 50%; top: 48%;
    width: 46%; height: 74%;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(238, 212, 1, .7);
    border-radius: 50%;
    box-shadow: 0 0 0 600px rgba(8, 10, 13, .35);
}
.cam-scan {
    position: absolute; left: 27%; right: 27%; top: 14%;
    height: 2px; border-radius: 2px;
    background: linear-gradient(90deg, transparent, rgba(238, 212, 1, .95), transparent);
    box-shadow: 0 0 12px rgba(238, 212, 1, .8);
    animation: camScan 2.6s ease-in-out infinite;
}
@keyframes camScan { 0%,100% { top: 16%; } 50% { top: 80%; } }
.cam-corner { position: absolute; width: 22px; height: 22px; border: 2px solid rgba(238, 212, 1, .85); }
.cam-corner--tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; border-radius: 6px 0 0 0; }
.cam-corner--tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; border-radius: 0 6px 0 0; }
.cam-corner--bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; border-radius: 0 0 0 6px; }
.cam-corner--br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; border-radius: 0 0 6px 0; }
.cam-badge {
    position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
    display: inline-flex; align-items: center; gap: 7px;
    padding: 4px 11px; border-radius: 999px;
    background: rgba(8, 10, 13, .6); color: #fff;
    font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px;
}
.cam-badge i { width: 8px; height: 8px; border-radius: 50%; background: #ff4d4d; animation: liveBlink 1.2s ease-in-out infinite; }
@keyframes liveBlink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

.cam-hud--doc .doc-frame {
    position: absolute; left: 9%; right: 9%; top: 16%; bottom: 16%;
    border: 2px dashed rgba(238, 212, 1, .7); border-radius: 12px;
}
.doc-label {
    position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
    font-size: 10px; letter-spacing: 2px; color: rgba(238, 212, 1, .8); font-weight: 700;
}

.step[data-step="identity"] { position: relative; }

.checkout__foot .btn { position: relative; }
.checkout__foot .btn.is-loading { color: transparent; pointer-events: none; }
.checkout__foot .btn.is-loading::after {
    content: ""; position: absolute; inset: 0; margin: auto;
    width: 20px; height: 20px;
    border: 2.5px solid rgba(20, 23, 27, .4); border-top-color: #14171b;
    border-radius: 50%; animation: spin .7s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
    .cam-scan, .cam-badge i { animation: none; }
}

.contract {
    max-height: 200px; overflow-y: auto; overscroll-behavior: contain;
    padding: 16px 16px 6px;
    border: 1px solid var(--line-strong); border-radius: 12px;
    background: rgba(255, 255, 255, .03);
    font-size: 13px; color: var(--muted);
}
.contract:focus { outline: 2px solid rgba(238, 212, 1, .6); }
.contract__title { margin: 0 0 6px; color: #fff; font-size: 16px; }
.contract__tag { margin: 0 0 12px; color: #ffe97a; font-size: 12px; }
.contract p { margin: 0 0 10px; line-height: 1.55; }
.contract b { color: var(--ink); }
.sign { margin-top: 16px; }
.sign__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; font-size: 13px; font-weight: 600; color: var(--muted); }
.sign__clear { background: none; border: none; color: var(--accent); font: inherit; font-size: 13px; cursor: pointer; padding: 0; }
.sign__clear:hover { text-decoration: underline; }
.sign__pad {
    display: block; width: 100%; height: 170px;
    background: rgba(255, 255, 255, .05);
    border: 1.5px dashed var(--line-strong); border-radius: 12px;
    cursor: crosshair; touch-action: none;
}
.sign__hint { margin: 8px 0 0; font-size: 12px; color: var(--muted-2); }

[data-cam-start] { display: inline-flex; }
.cam-live [data-cam-start], .has-shot [data-cam-start] { display: none; }
.cam-start { border-color: rgba(238, 212, 1, .55); color: var(--accent); }
.cam-start:hover { border-color: var(--accent); background: rgba(238, 212, 1, .08); }

[hidden] { display: none !important; }

.checkout__foot .btn:disabled { opacity: .4; cursor: not-allowed; }

.doc-types { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.doc-type { flex: 1 1 auto; min-width: 96px; padding: 11px 8px; border: 1.5px solid var(--line-strong); border-radius: 10px; background: rgba(255,255,255,.04); color: var(--muted); font: inherit; font-size: 13px; font-weight: 600; cursor: pointer; transition: border-color .15s ease, background .15s ease, color .15s ease; }
.doc-type:hover { border-color: var(--accent); }
.doc-type.is-active { border-color: var(--accent); background: rgba(238,212,1,.12); color: var(--ink); }
.doc-sides { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 440px) { .doc-sides { grid-template-columns: 1fr; } }
.doc-slot { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; height: 150px; border: 1.5px solid var(--line-strong); border-radius: 12px; background: rgba(255,255,255,.04); cursor: pointer; overflow: hidden; text-align: center; padding: 12px; transition: border-color .15s ease; }
.doc-slot:hover { border-color: var(--accent); }
.doc-slot input[type="file"] { position: absolute; left: -9999px; }
.doc-slot__frame { position: absolute; inset: 14px; border: 1.5px dashed rgba(238,212,1,.5); border-radius: 8px; pointer-events: none; }
.doc-slot__label { position: relative; z-index: 1; font-size: 13px; color: var(--ink); font-weight: 700; }
.doc-slot__add { position: relative; z-index: 1; font-size: 12.5px; color: var(--accent); font-weight: 700; }
.doc-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.doc-slot.has-img .doc-slot__frame, .doc-slot.has-img .doc-slot__add, .doc-slot.has-img .doc-slot__label { display: none; }
.doc-slot__ok { position: absolute; top: 8px; right: 8px; z-index: 2; background: rgba(34,170,100,.95); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; }

h1, h2, h3, h4,
.hero-title, .kicker, .card__head h2, .card__badge, .order__pitch h2,
.alertme__head, .alertme__price, .feature h3, .done-hero h3, .logo__text,
.btn, .btn-amber, .btn-ghost, .btn--sticky,
.checkout__pkg, .checkout__title, .doc-type, .id-btn, .field label, .trust li {
    font-family: var(--font-head);
}
.hero-title { letter-spacing: normal; }

.sign-label { margin: 18px 0 10px; font-size: 13.5px; font-weight: 600; color: var(--muted); }
.sign-methods { grid-template-columns: 1fr; }
.sign-done { text-align: center; }
.step[data-step="contract"] { position: relative; }

.hero-content--lp { align-items: center; }
.hero-cta { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; margin-top: 6px; }
.hero-cta__note { font-size: 14px; color: var(--muted); }
.btn--hero { width: auto; display: inline-flex; align-items: center; justify-content: center; padding: 16px 44px; font-size: 16px; }
.alertme--hero { align-self: center; }

.lp { padding: clamp(44px, 7vw, 84px) clamp(16px, 4vw, 28px); }
.lp--alt { background: rgba(255, 255, 255, .02); border-block: 1px solid var(--line); }
.lp__inner { max-width: var(--maxw); margin: 0 auto; }
.lp__title { font-size: clamp(24px, 3.4vw, 34px); color: #fff; margin: 0 0 22px; letter-spacing: -.01em; }
.lp__lead { font-size: 17px; color: var(--ink); margin: 0 0 18px; line-height: 1.55; }
.lp p { color: var(--muted); line-height: 1.65; margin: 0 0 12px; }
.lp__note { font-size: 13px; color: var(--muted-2); margin-top: 16px; line-height: 1.6; }
.lp__important { border-left: 3px solid var(--accent); padding-left: 16px; color: var(--ink); }

.how { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.how li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink); font-size: 16px; line-height: 1.5; }
.how__n { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: rgba(238, 212, 1, .14); color: var(--accent); font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; }

.benefits { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
@media (min-width: 680px) { .benefits { display: block; column-count: 2; column-gap: 32px; } .benefits li { break-inside: avoid; margin-bottom: 14px; } }
.benefits li { position: relative; padding-left: 30px; color: var(--ink); line-height: 1.5; }
.benefits li::before { content: ""; position: absolute; left: 5px; top: 4px; width: 7px; height: 12px; border: solid var(--accent); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }

.price-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .price-grid { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); } }
.price-card { border: 1px solid var(--line); border-radius: 16px; padding: 26px 22px; background: rgba(255, 255, 255, .03); text-align: center; }
.price-card__name { color: var(--muted); font-size: 14px; font-weight: 600; }
.price-card__val { font-size: 30px; font-weight: 700; color: #fff; margin: 8px 0 10px; }
.price-card__val span { font-size: 15px; color: var(--muted); font-weight: 600; }
.price-card p { margin: 0; color: var(--muted); font-size: 14px; }

.cta-final { padding: clamp(48px, 8vw, 96px) clamp(16px, 4vw, 28px); }
.cta-final__box { max-width: 820px; margin: 0 auto; text-align: center; border: 1px solid var(--line); border-radius: 20px; padding: clamp(32px, 5vw, 56px); background: rgba(255, 255, 255, .03); }
.cta-final__box h2 { margin: 0 0 12px; font-size: clamp(24px, 3.4vw, 34px); color: #fff; }
.cta-final__box p { margin: 0 auto 20px; max-width: 60ch; color: var(--muted); line-height: 1.6; }
.btn--wide { width: auto; display: inline-flex; align-items: center; justify-content: center; padding: 16px 40px; margin-top: 18px; }

.price-card--hl { border-color: rgba(238, 212, 1, .55); }

.bill-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.bill-btn { display: flex; flex-direction: column; gap: 4px; align-items: center; padding: 14px; border: 1.5px solid var(--line-strong); border-radius: 12px; background: rgba(255, 255, 255, .04); color: var(--ink); font: inherit; font-weight: 700; font-size: 15px; cursor: pointer; transition: border-color .15s ease, background .15s ease; }
.bill-btn small { color: var(--muted); font-weight: 400; font-size: 12px; }
.bill-btn:hover { border-color: var(--accent); }
.bill-btn.is-active { border-color: var(--accent); background: rgba(238, 212, 1, .12); }
.pkg-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; }
.pkg-row__lbl { font-weight: 600; }
.pkg-count { display: flex; align-items: center; gap: 14px; }
.pkg-btn { width: 44px; height: 44px; border-radius: 10px; border: 1.5px solid var(--line-strong); background: rgba(255, 255, 255, .05); color: var(--ink); font-size: 22px; line-height: 1; cursor: pointer; }
.pkg-btn:hover { border-color: var(--accent); }
.pkg-btn:disabled { opacity: .4; cursor: not-allowed; }
.pkg-num { min-width: 36px; text-align: center; font-size: 20px; font-weight: 700; }
.pkg-abroad { margin: 6px 0 14px; }
.pkg-extra { margin-bottom: 14px; }
.pkg-extra__lbl { font-size: 13px; color: var(--muted); margin: 0 0 8px; font-weight: 600; }
.pkg-extra__list { display: grid; gap: 8px; max-height: 200px; overflow-y: auto; }
.pkg-person input { width: 100%; padding: 11px 14px; font: inherit; color: var(--ink); background: var(--field); border: 1.5px solid var(--line-strong); border-radius: 10px; }
.pkg-person input:focus { outline: none; border-color: var(--accent-2); box-shadow: 0 0 0 3px rgba(238, 212, 1, .28); }
.pkg-total { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 15px; color: var(--muted); }
.pkg-total b { color: #fff; font-size: 22px; }
.ver-now { margin: 0 0 12px; font-size: 14px; color: var(--muted); }
.ver-now__name { color: var(--accent); }
.ver-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.ver-chip { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px 6px 6px; border: 1.5px solid var(--line-strong); border-radius: 999px; cursor: pointer; font-size: 13px; }
.ver-chip__ph { width: 28px; height: 28px; border-radius: 50%; background: rgba(255, 255, 255, .08); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--muted); }
.ver-chip img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.ver-chip__nm { color: var(--ink); }
.ver-chip.is-current { border-color: var(--accent); }
.ver-chip.is-done { border-color: rgba(34, 170, 100, .6); }
.ver-chip.is-done .ver-chip__nm { color: #7fe0a4; }
.activate-note { display: grid; gap: 10px; padding: 16px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255, 255, 255, .03); margin-bottom: 14px; }
.activate-note p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; }
.activate-note b { color: var(--ink); }

.hero-content--alert { grid-template-columns: 1fr; max-width: var(--maxw); }
.hero-content--alert .hero-copy { max-width: 540px; }
.hero-content--alert .hero-title { font-size: clamp(32px, 4.4vw, 50px); }
.hero-content--alert .hero-sub { max-width: 46ch; font-size: clamp(15px, 1.5vw, 18px); }
.hero-content--alert .trust { margin-top: 24px; border-top: 1px solid var(--line); padding-top: 18px; }

.band { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; padding: clamp(40px, 7vw, 76px) clamp(16px, 4vw, 28px); }
@media (min-width: 880px) { .band { grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); } .band--reverse .band__media { order: 2; } }
.band__media img { width: 100%; height: clamp(280px, 42vh, 460px); object-fit: cover; border-radius: 16px; display: block; box-shadow: 0 30px 70px rgba(0, 0, 0, .5); }
.band__eyebrow { color: var(--accent); font-weight: 700; font-size: 12.5px; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 10px; }
.band__text h2 { margin: 0 0 14px; }
.band__text p { color: var(--muted); line-height: 1.65; margin: 0 0 12px; }
.band__tag { color: var(--ink) !important; font-weight: 600; border-left: 3px solid var(--accent); padding-left: 14px; margin-top: 16px !important; }
.band__text .btn-amber { margin-top: 14px; }

.vband { padding: clamp(40px, 7vw, 76px) clamp(16px, 4vw, 28px); background: rgba(255, 255, 255, .02); border-block: 1px solid var(--line); }
.vband__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; justify-items: center; }
@media (min-width: 820px) { .vband__inner { grid-template-columns: 300px 1fr; gap: clamp(36px, 5vw, 64px); justify-items: stretch; } }
.vband__phone { width: 100%; max-width: 290px; aspect-ratio: 9 / 16; border-radius: 24px; overflow: hidden; border: 2px solid rgba(255, 255, 255, .12); box-shadow: 0 30px 70px rgba(0, 0, 0, .55); background: #000; }
.vband__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vband__copy h2 { margin: 0 0 14px; }
.vband__copy p { color: var(--muted); line-height: 1.65; margin: 0 0 16px; max-width: 50ch; }

.form-section__inner { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
@media (min-width: 860px) { .form-section__inner { grid-template-columns: 1fr 1fr; gap: 48px; } }
.form-section__copy h2 { margin-bottom: 14px; }
.form-section__copy p { color: var(--muted); line-height: 1.6; margin: 0 0 16px; }
.benefits--tight { gap: 9px; grid-template-columns: 1fr; column-count: 1; }
@media (min-width: 680px) { .benefits--tight { grid-template-columns: 1fr; } }
.form-section .card { margin: 0; }
.lp__eyebrow { color: var(--accent); font-weight: 700; font-size: 12.5px; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 10px; }
.lp__grid { display: grid; grid-template-columns: 1fr; gap: clamp(16px, 3vw, 26px); }
.lp__grid .lp__title { margin: 0; }
.lp__head { position: relative; }
.lp__body > :first-child { margin-top: 0; }
.lp__body > :last-child { margin-bottom: 0; }
.lp__body p { max-width: 64ch; }
@media (min-width: 880px) { .lp__grid { grid-template-columns: minmax(220px, 300px) 1fr; gap: clamp(40px, 6vw, 96px); align-items: start; } }
.lp .lead-xl { font-family: var(--font-head); font-size: clamp(20px, 2.4vw, 28px); line-height: 1.45; color: var(--ink); max-width: 52ch; margin: 0; }
.wl-card { margin-top: 18px; padding: 16px; border: 1px solid var(--line-strong); border-radius: 14px; background: rgba(238, 212, 1, .05); }
.wl-card__title { margin: 0 0 4px; font-weight: 700; color: var(--ink); font-family: var(--font-head); }
.wl-card__sub { margin: 0 0 12px; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.wl-card__row { display: flex; gap: 8px; margin-bottom: 10px; }
.wl-card__email { flex: 1; min-width: 0; padding: 11px 14px; font: inherit; color: var(--ink); background: var(--field); border: 1.5px solid var(--line-strong); border-radius: 10px; }
.wl-card__email:focus { outline: none; border-color: var(--accent-2); box-shadow: 0 0 0 3px rgba(238, 212, 1, .28); }
.wl-card__btn { flex: 0 0 auto; margin: 0; white-space: nowrap; }
.wl-card__consent { font-size: 12.5px; color: var(--muted); }
.wl-card__err { margin: 8px 0 0; font-size: 12.5px; color: #ff8a9b; }
.wl-card__done { display: flex; align-items: center; gap: 8px; color: #7fe0a4; font-weight: 600; font-size: 14px; }
.wl-card.is-done .wl-card__title, .wl-card.is-done .wl-card__sub, .wl-card.is-done .wl-card__row, .wl-card.is-done .wl-card__consent, .wl-card.is-done .wl-card__btn, .wl-card.is-done .wl-card__err { display: none; }
@media (max-width: 380px) { .wl-card__row { flex-direction: column; } .wl-card__btn { width: 100%; } }
.wl-card__btn--full { width: 100%; margin: 12px 0 0; }
.wl-card__sub b { color: var(--ink); font-weight: 700; }
.wl-card--end { margin-top: 20px; }

.checkout__err { margin: 0 0 14px; padding: 11px 14px; border-radius: 10px; background: rgba(255, 90, 110, .12); border: 1px solid rgba(255, 90, 110, .42); color: #ffb3bf; font-size: 14px; line-height: 1.45; }
.btn.is-loading { opacity: .65; cursor: progress; }

.admin-body { background: var(--bg); color: var(--ink); }
.admin { max-width: 980px; margin: 0 auto; padding: 32px 20px 80px; }
.admin__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 24px; }
.admin__head h1 { font-size: clamp(22px, 3vw, 30px); }
.admin__login { max-width: 420px; }
.admin__count { color: var(--muted); margin: 0 0 16px; }
.adm-card { border: 1px solid var(--line); border-radius: 14px; padding: 16px; margin-bottom: 12px; background: rgba(255, 255, 255, .02); }
.adm-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 6px; }
.adm-meta { font-size: 13.5px; color: var(--muted); margin-top: 4px; line-height: 1.5; }
.adm-meta a { color: var(--accent); }
.adm-dim { color: var(--muted-2); font-size: 12px; }
.adm-badge { display: inline-block; padding: 2px 9px; border-radius: 999px; font-size: 12px; font-weight: 600; border: 1px solid var(--line-strong); }
.adm-active, .adm-verified, .adm-signed, .adm-paid { color: #7fe0a4; border-color: rgba(34, 170, 100, .5); }
.adm-failed, .adm-cancelled { color: #ff8a9b; border-color: rgba(255, 90, 110, .5); }
