@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #090c10;
    --panel: #0f141b;
    --panel-2: #0c1117;
    --line: #1e2631;
    --text: #dbe4ef;
    --muted: #9aabc2;
    --brand: #7c5cff;
    --brand-2: #2ee6a6;
    --brand-3: #a28bff;
    --danger: #ff6b7a;
    --success: #2ee6a6;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
    --radius-lg: 28px;
    --maxw: 580px;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
}

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

button,
input {
    font: inherit;
}

.trial-page {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 18px;
    overflow: hidden;
    isolation: isolate;
}

.trial-gridlines {
    position: absolute;
    inset: -20% -10% -10% -10%;
    z-index: -4;
    opacity: .34;
    background:
        repeating-linear-gradient(115deg, rgba(124, 92, 255, .06) 0 2px, transparent 2px 12px),
        radial-gradient(760px 380px at 18% -10%, rgba(124, 92, 255, .2), transparent 60%),
        radial-gradient(560px 280px at 105% 0%, rgba(46, 230, 166, .18), transparent 60%);
    animation: gridshift 18s linear infinite;
}

@keyframes gridshift {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }

    100% {
        background-position: 600px -400px, 0 0, 0 0;
    }
}

.trial-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(30px);
    opacity: .45;
    pointer-events: none;
    z-index: -3;
}

.trial-glow-one {
    width: 420px;
    height: 420px;
    left: -150px;
    top: 4%;
    background: radial-gradient(circle, rgba(124, 92, 255, .32), transparent 68%);
}

.trial-glow-two {
    width: 380px;
    height: 380px;
    right: -140px;
    bottom: 0;
    background: radial-gradient(circle, rgba(46, 230, 166, .22), transparent 68%);
}

.trial-shell {
    width: 100%;
    max-width: var(--maxw);
    display: grid;
    justify-items: center;
    gap: 14px;
}

.logo-orbit {
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    transition: transform .18s ease, filter .2s ease;
}

.logo-orbit:hover {
    transform: translateY(-2px);
    filter: saturate(1.12);
}

.logo-ring {
    position: relative;
    width: 112px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02) 55%, transparent 56%),
        conic-gradient(from 0deg, rgba(124, 92, 255, 0), rgba(124, 92, 255, .52), rgba(46, 230, 166, .45), rgba(124, 92, 255, 0));
    border: 1px solid rgba(255, 255, 255, .09);
    box-shadow:
        inset 0 0 30px rgba(124, 92, 255, .18),
        0 0 34px rgba(46, 230, 166, .12);
}

.logo-ring::before {
    content: "";
    position: absolute;
    inset: 9%;
    border-radius: 50%;
    border: 1px dashed rgba(207, 225, 255, .24);
    animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: .65;
    }

    50% {
        transform: scale(1.045);
        opacity: 1;
    }
}

.logo-ring-dash {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0 70%, rgba(255, 255, 255, .85) 74% 76%, transparent 80% 100%);
    mask: radial-gradient(circle at 50% 50%, transparent 62%, #000 63%);
    -webkit-mask: radial-gradient(circle at 50% 50%, transparent 62%, #000 63%);
    animation: dashspin 1.8s linear infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, .25));
}

@keyframes dashspin {
    to {
        transform: rotate(360deg);
    }
}

.logo-icon-card {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .05));
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, .28),
        0 0 24px rgba(124, 92, 255, .32);
    overflow: hidden;
}

.logo-icon-card img {
    width: 38px;
    height: 38px;
    display: block;
    object-fit: contain;
}

.trial-card {
    width: 100%;
    border-radius: var(--radius-lg);
    padding: 28px;
    background:
        radial-gradient(620px 360px at 50% -24%, rgba(124, 92, 255, .16), transparent 68%),
        linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .03));
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.trial-card-head {
    text-align: center;
    margin-bottom: 18px;
}

.trial-chip {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    color: #081018;
    background: #9ff0cf;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.trial-card h1 {
    margin: 10px 0 6px;
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.trial-card-head p {
    margin: 0 auto;
    max-width: 42ch;
    color: var(--muted);
    font-size: .94rem;
}

.trial-form {
    display: grid;
    gap: 14px;
}

.input-group {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.input-group label {
    color: #cfe1ff;
    font-weight: 700;
    font-size: .88rem;
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-2);
    font-size: .86rem;
    opacity: .9;
    pointer-events: none;
}

.input-wrap input {
    width: 100%;
    min-height: 50px;
    padding: 12px 13px 12px 38px;
    border-radius: 15px;
    color: var(--text);
    background: rgba(12, 17, 23, .86);
    border: 1px solid rgba(255, 255, 255, .1);
    outline: none;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.input-wrap input::placeholder {
    color: rgba(154, 171, 194, .68);
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.input-wrap input:focus {
    border-color: rgba(124, 92, 255, .72);
    background: rgba(15, 20, 27, .96);
    box-shadow:
        0 0 0 4px rgba(124, 92, 255, .14),
        0 8px 24px rgba(124, 92, 255, .13);
}

.trial-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 13px;
    border-radius: 16px;
    background: rgba(46, 230, 166, .07);
    border: 1px dashed rgba(46, 230, 166, .22);
}

.trial-note span {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--brand-2);
    box-shadow: 0 0 16px rgba(46, 230, 166, .7);
}

.trial-note p {
    margin: 0;
    color: #b8c8e4;
    font-size: .86rem;
}

.trial-button {
    width: 100%;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 2px;
    padding: 12px 18px;
    border: 1px solid rgba(124, 92, 255, .36);
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(180deg, #9a86ff, #6b50ff);
    box-shadow: 0 8px 22px rgba(124, 92, 255, .34);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    transition: transform .18s ease, filter .2s ease, box-shadow .2s ease;
}

.trial-button:hover {
    transform: translateY(-2px);
    filter: saturate(1.14);
    box-shadow: 0 12px 30px rgba(124, 92, 255, .44);
}

.trial-button:active {
    transform: translateY(0) scale(.99);
}

.trial-button span {
    font-size: 1.1rem;
}

.trial-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 255, 255, .12);
}

.trial-links a {
    color: #cfe1ff;
    font-weight: 800;
    font-size: .86rem;
    transition: color .2s ease, transform .2s ease;
}

.trial-links a:hover {
    color: var(--brand-2);
    transform: translateY(-1px);
}

.alert {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 0 0 14px;
    padding: 11px 40px 11px 13px;
    border-radius: 15px;
    font-size: .88rem;
    border: 1px solid rgba(255, 255, 255, .1);
}

.alert-error {
    background: rgba(255, 107, 122, .1);
    border-color: rgba(255, 107, 122, .3);
    color: #ffe4e8;
}

.alert-icon {
    flex: 0 0 auto;
    font-weight: 900;
    color: var(--danger);
}

.alert-message {
    flex: 1 1 auto;
}

.alert-close {
    position: absolute;
    top: 7px;
    right: 9px;
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 10px;
    color: currentColor;
    background: rgba(255, 255, 255, .06);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
}

.alert-close:hover {
    background: rgba(255, 255, 255, .12);
}

@media (max-width: 560px) {
    .trial-page {
        padding: 12px;
        align-items: start;
    }

    .trial-shell {
        gap: 12px;
    }

    .logo-ring {
        width: 96px;
    }

    .logo-icon-card {
        width: 50px;
        height: 50px;
        border-radius: 15px;
    }

    .logo-icon-card img {
        width: 34px;
        height: 34px;
    }

    .trial-card {
        padding: 20px;
        border-radius: 24px;
    }

    .trial-card h1 {
        font-size: 1.6rem;
    }

    .trial-links {
        flex-direction: column;
        align-items: center;
        gap: 7px;
    }
}