html { scroll-behavior: smooth; }
body { margin: 0; background: #02040a; }
a { cursor: pointer; }
.triavox-page {
    --bg: #02040a;
    --text: #f8fbff;
    --orange: #ff9300;
    --blue: #168fff;
    --green: #95ff00;
    --purple: #9d31ff;
    --red: #ff321f;
    min-height: 100vh;
    color: var(--text);
    background: #02040a;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

.triavox-page * {
    box-sizing: border-box;
}

.triavox-page .site {
    width: min(1536px, 100%);
    margin: 0 auto;
    overflow: visible;
    background: #02040a;
    box-shadow: 0 0 90px rgba(0, 0, 0, .8);
}

.triavox-page .header {
    position: relative;
    z-index: 50;
    display: grid;
    grid-template-columns: 420px 1fr auto;
    gap: 24px;
    align-items: start;
    height: 132px;
    padding: 22px 48px 0 44px;
}

.triavox-page .brand {
    display: block;
    width: 555px;
    height: 170px;
}

.triavox-page .brand img {
    display: block;
    width: 555px;
    height: auto;
    max-height: 135px;
    object-fit: contain;
    object-position: left top;
    filter: drop-shadow(0 0 12px rgba(255, 160, 0, .2));
}

.triavox-page .nav {
    display: flex;
    justify-content: flex-end;
    gap: 34px;
    padding-top: 29px;
}

.triavox-page .nav a,
.triavox-page .join-top {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: .6px;
    white-space: nowrap;
}

.triavox-page .nav .active {
    border-bottom: 3px solid var(--orange);
    padding-bottom: 13px;
}

.triavox-page .header-actions {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.triavox-page .join-top {
    margin-top: 12px;
    padding: 15px 20px;
    border: 1px solid rgba(255, 146, 0, .85);
    border-radius: 8px;
    box-shadow: 0 0 24px rgba(255, 146, 0, .3), inset 0 0 14px rgba(255, 146, 0, .08);
}

.triavox-page .login-top {
    min-width: 104px;
    text-align: center;
}

.triavox-page .join-top span {
    color: var(--orange);
    font-size: 18px;
    margin-left: 10px;
}

.triavox-auth-page {
    position: relative;
    display: grid;
    min-height: 100vh;
    place-items: center;
    overflow: hidden;
    padding: 34px 18px;
}

.triavox-auth-bg {
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(2px);
}

.triavox-auth-bg.blue {
    width: 680px;
    height: 680px;
    left: -190px;
    top: -220px;
    background: radial-gradient(circle, rgba(22, 143, 255, .45), transparent 58%);
}

.triavox-auth-bg.red {
    width: 640px;
    height: 640px;
    right: -220px;
    top: 60px;
    background: radial-gradient(circle, rgba(255, 50, 31, .38), transparent 58%);
}

.triavox-auth-bg.green {
    width: 520px;
    height: 520px;
    right: 18%;
    bottom: -260px;
    background: radial-gradient(circle, rgba(149, 255, 0, .16), transparent 60%);
}

.triavox-auth-shell {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    width: min(100%, 520px);
}

.triavox-auth-logo {
    display: block;
    width: 320px;
    margin-bottom: -18px;
    filter: drop-shadow(0 0 18px rgba(255, 147, 0, .28));
}

.triavox-auth-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.triavox-auth-card {
    width: 100%;
    border: 1px solid rgba(255, 147, 0, .72);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(7, 11, 24, .96), rgba(3, 6, 14, .94));
    box-shadow: 0 0 44px rgba(255, 147, 0, .16), inset 0 0 24px rgba(255, 147, 0, .06);
    padding: 32px;
}

.triavox-auth-heading {
    margin-bottom: 24px;
    text-align: center;
}

.triavox-auth-heading > span {
    display: inline-flex;
    margin-bottom: 12px;
    border: 1px solid rgba(157, 49, 255, .8);
    border-radius: 7px;
    padding: 8px 14px;
    color: #d9c5ff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 1.5px;
    box-shadow: 0 0 18px rgba(157, 49, 255, .3), inset 0 0 14px rgba(157, 49, 255, .08);
}

.triavox-auth-heading h1 {
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    font-size: 42px;
    line-height: .95;
    font-weight: 950;
}

.triavox-auth-heading p {
    max-width: 370px;
    margin: 14px auto 0;
    color: #d7ddec;
    font-size: 15px;
    line-height: 1.45;
}

.triavox-auth-success {
    margin-bottom: 16px;
    border: 1px solid rgba(149, 255, 0, .38);
    border-radius: 7px;
    background: rgba(149, 255, 0, .08);
    padding: 12px 14px;
    color: #d9ff9a;
    font-size: 14px;
}

.triavox-auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.triavox-auth-field span {
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .8px;
}

.triavox-auth-field input[type="email"],
.triavox-auth-field input[type="password"],
.triavox-auth-field input[type="text"] {
    width: 100%;
    border: 1px solid #333b52;
    border-radius: 6px;
    background: #050814;
    color: #fff;
    padding: 15px;
    font-size: 15px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.triavox-auth-field input[type="email"]:focus,
.triavox-auth-field input[type="password"]:focus,
.triavox-auth-field input[type="text"]:focus {
    border-color: rgba(255, 147, 0, .9);
    box-shadow: 0 0 0 3px rgba(255, 147, 0, .14), 0 0 20px rgba(255, 147, 0, .14);
}

.triavox-auth-field small {
    color: #fecaca;
    font-size: 13px;
}

.triavox-auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 2px 0 4px;
}

.triavox-auth-remember {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #c8cedc;
    font-size: 14px;
}

.triavox-auth-remember input[type="checkbox"] {
    appearance: none;
    display: grid;
    place-content: center;
    width: 18px;
    height: 18px;
    padding: 0;
    border: 1px solid rgba(255, 146, 0, .85);
    border-radius: 4px;
    background-color: #050814;
    box-shadow: 0 0 10px rgba(255, 146, 0, .2);
}

.triavox-auth-remember input[type="checkbox"]::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--orange);
    clip-path: polygon(14% 44%, 0 65%, 43% 100%, 100% 16%, 80% 0, 38% 64%);
    transform: scale(0);
    transition: transform .12s ease-in-out;
}

.triavox-auth-remember input[type="checkbox"]:checked {
    border-color: var(--orange);
    background-color: rgba(255, 147, 0, .16);
    box-shadow: 0 0 16px rgba(255, 147, 0, .45), inset 0 0 8px rgba(255, 147, 0, .16);
}

.triavox-auth-remember input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.triavox-auth-remember input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 147, 0, .16), 0 0 14px rgba(255, 147, 0, .24);
}

.triavox-auth-link {
    color: var(--orange);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.triavox-auth-link:hover {
    color: #ffbd4c;
}

.triavox-auth-button,
.triavox-auth-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 58px;
    border-radius: 7px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: .4px;
}

.triavox-auth-button {
    border: 0;
    color: #fff;
    background: linear-gradient(#ffad14, #e86600);
    box-shadow: 0 0 26px rgba(255, 145, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .32);
}

.triavox-auth-button.is-loading,
.triavox-auth-button:disabled {
    opacity: .65;
}

.triavox-auth-secondary {
    border: 1px solid rgba(255, 146, 0, .85);
    color: #fff;
    background: rgba(255, 147, 0, .04);
    box-shadow: 0 0 20px rgba(255, 146, 0, .18), inset 0 0 14px rgba(255, 146, 0, .06);
}

.triavox-auth-button span,
.triavox-auth-secondary span {
    color: #fff;
    font-size: 26px;
    line-height: .5;
}

.triavox-page .hero {
    position: relative;
    display: grid;
    grid-template-columns: 37% 63%;
    min-height: 740px;
    padding: 10px 46px 0;
}

.triavox-page .left {
    position: relative;
    z-index: 20;
}

.triavox-page .soon {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 16px 26px;
    border: 1px solid rgba(64, 115, 255, 0.98);
    border-radius: 8px;
    color: #e7ddff;
    text-transform: uppercase;
    font-weight: 950;
    letter-spacing: 1.25px;
    font-size: 22px;
    line-height: 1.05;
    box-shadow: 0 0 25px rgba(45, 101, 255, 0.55), inset 0 0 18px rgba(45, 101, 255, 0.12);
}

.triavox-page .soon strong {
    font-size: 29px;
    color: #8cabff;
}

.triavox-page .soon > span {
    font-size: 34px;
    color: #9bc6ff;
    text-shadow: 0 0 14px rgba(130, 163, 255, 0.8);
}

.triavox-page h1 {
    margin: 22px 0 18px;
    text-transform: uppercase;
    font-size: clamp(64px, 5.5vw, 84px);
    line-height: .92;
    font-weight: 950;
    letter-spacing: .5px;
    text-shadow: 0 2px 0 rgba(255, 255, 255, .12), 0 0 18px rgba(255, 255, 255, .08);
}

.triavox-page em {
    font-style: normal;
    color: var(--orange);
}

.triavox-page .left p {
    width: min(385px, 100%);
    margin: 0 0 28px;
    font-size: 20px;
    line-height: 1.35;
}

.triavox-page .points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: min(520px, 100%);
    margin: 29px 0 31px;
}

.triavox-page .points div {
    text-align: center;
    text-transform: uppercase;
    font-weight: 950;
    font-size: 13px;
}

.triavox-page .points span {
    display: block;
    color: var(--c);
    font-size: 45px;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 18px var(--c);
}

.triavox-page .points small {
    display: block;
    color: #fff;
    font-size: 13px;
    margin-top: 4px;
}

.triavox-page .blue { --c: var(--blue); }
.triavox-page .green { --c: var(--green); }
.triavox-page .purple { --c: var(--purple); }
.triavox-page .orange { --c: var(--orange); }

.triavox-page .actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.triavox-page .cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-width: 330px;
    padding: 20px 34px;
    border-radius: 7px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 950;
    font-size: 22px;
    background: linear-gradient(#ffad14, #e86600);
    box-shadow: 0 0 26px rgba(255, 145, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .32);
}

.triavox-page .cta span {
    font-size: 34px;
    line-height: .5;
}

.triavox-page .learn {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 950;
}

.triavox-page .learn span {
    display: inline-grid;
    place-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #6f7a92;
    margin-left: 8px;
}

.triavox-page .right {
    position: relative;
    min-height: 708px;
    overflow: visible;
}

.triavox-page .energy {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.triavox-page .blue-energy {
    width: 760px;
    height: 760px;
    right: 285px;
    top: -160px;
    border-radius: 50%;
    background: radial-gradient(circle at 54% 50%, rgba(0, 143, 255, .85), transparent 16%), radial-gradient(circle at 61% 50%, rgba(72, 70, 255, .4), transparent 28%), radial-gradient(circle at 48% 49%, rgba(255, 255, 255, .12), transparent 30%);
    filter: blur(2px);
}

.triavox-page .red-energy {
    width: 620px;
    height: 620px;
    right: -60px;
    top: -115px;
    border-radius: 50%;
    background: radial-gradient(circle at 47% 45%, rgba(255, 55, 32, .72), transparent 35%);
    filter: blur(2px);
}

.triavox-page .green-energy {
    width: 520px;
    height: 520px;
    right: -35px;
    top: 190px;
    border-radius: 50%;
    background: radial-gradient(circle at 45% 45%, rgba(75, 255, 0, .48), transparent 36%);
    filter: blur(2px);
}

.triavox-page .ring {
    position: absolute;
    z-index: 1;
    width: 58%;
    aspect-ratio: 1;
    right: 7%;
    top: -8px;
    border-radius: 50%;
    box-shadow: -72px 0 90px rgba(0, 130, 255, .95), -24px 0 42px rgba(80, 65, 255, .7), 62px -10px 78px rgba(255, 54, 34, .82), 64px 132px 72px rgba(63, 255, 18, .65);
}

.triavox-page .board {
    position: absolute;
    z-index: 2;
    width: 100%;
    right: -12%;
    top: -340px;
    filter: drop-shadow(0 0 35px rgba(0, 120, 255, .45)) drop-shadow(0 0 24px rgba(255, 55, 30, .32));
}

.triavox-page .laptop {
    position: absolute;
    z-index: 5;
    width: 46%;
    left: 30%;
    top: 275px;
    filter: drop-shadow(0 30px 36px rgba(0, 0, 0, .9));
}

.triavox-page .phone {
    position: absolute;
    z-index: 7;
    width: 22%;
    bottom: 18px;
    filter: drop-shadow(0 24px 32px rgba(0, 0, 0, .92));
}

.triavox-page .phone-left {
    left:23%;
    transform: rotate(-7deg);
}

.triavox-page .phone-right {
    right: 12%;
    transform: rotate(6deg);
    z-index: 8;
}

.triavox-page .trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 82px;
    margin: 0 46px 14px;
    border: 1px solid rgba(255, 92, 20, .72);
    border-radius: 9px;
    overflow: hidden;
    background: rgba(5, 8, 18, .92);
}

.triavox-page .trust article {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 28px;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.triavox-page .trust span {
    font-size: 42px;
    color: var(--c);
    text-shadow: 0 0 18px var(--c);
}

.triavox-page .trust b {
    display: block;
    color: var(--c);
    text-transform: uppercase;
    font-size: 16px;
}

.triavox-page .trust small {
    display: block;
    color: #fff;
    font-size: 14px;
}

.triavox-page .join {
    display: grid;
    grid-template-columns: 34% 66%;
    gap: 30px;
    margin: 14px 46px 22px;
    padding: 26px 44px;
    border: 1px solid rgba(255, 147, 0, .72);
    border-radius: 9px;
    background: rgba(5, 8, 18, .88);
}

.triavox-page .join h2,
.triavox-page .why h2,
.triavox-page .final h2 {
    margin: 0;
    text-transform: uppercase;
    font-weight: 950;
    line-height: 1.05;
}

.triavox-page .join h2 {
    font-size: 38px;
}

.triavox-page .join p {
    max-width: 330px;
    line-height: 1.35;
}

.triavox-page .join ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    color: #dce5f6;
}

.triavox-page .join li {
    margin: 7px 0;
}

.triavox-page .join li::before {
    content: '✓';
    color: var(--green);
    margin-right: 8px;
}

.triavox-page form {
    display: flex;
    flex-direction: column;
    gap: 13px;
    align-self: center;
}

.triavox-page .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.triavox-page input,
.triavox-page select {
    width: 100%;
    background: #050814;
    border: 1px solid #333b52;
    border-radius: 5px;
    color: #fff;
    padding: 13px 15px;
    font-size: 15px;
}

.triavox-page form button {
    height: 60px;
    border: 0;
    border-radius: 6px;
    background: linear-gradient(#ffad1c, #e45d00);
    color: #fff;
    text-transform: uppercase;
    font-weight: 950;
    font-size: 18px;
}

.triavox-page form button:disabled {
    opacity: .65;
}

.triavox-page form small {
    text-align: center;
    color: #c7cedd;
}

.triavox-page .form-error,
.triavox-page .form-success {
    margin: 0;
    padding: 10px 12px;
    border-radius: 5px;
    font-size: 14px;
}

.triavox-page .form-error {
    color: #fecaca;
    border: 1px solid rgba(248, 113, 113, .45);
    background: rgba(127, 29, 29, .35);
}

.triavox-page .form-success {
    color: #d9f99d;
    border: 1px solid rgba(149, 255, 0, .35);
    background: rgba(63, 98, 18, .25);
}

.triavox-page .why {
    padding: 0 46px 18px;
    text-align: center;
}

.triavox-page .why h2 {
    font-size: 31px;
    margin-bottom: 17px;
}

.triavox-page .cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.triavox-page .cards article {
    min-height: 160px;
    padding: 20px 16px;
    border: 1px solid var(--c);
    border-radius: 8px;
    background: rgba(7, 11, 24, .92);
    box-shadow: 0 0 20px color-mix(in srgb, var(--c) 24%, transparent);
}

.triavox-page .cards span {
    display: block;
    color: var(--c);
    font-size: 42px;
    text-shadow: 0 0 18px var(--c);
}

.triavox-page .cards h3 {
    text-transform: uppercase;
    font-size: 15px;
    margin: 12px 0 8px;
}

.triavox-page .cards p {
    margin: 0;
    color: #d7ddec;
    font-size: 13px;
    line-height: 1.35;
}

.triavox-page .badges {
    margin: 0 46px 24px;
    border: 1px solid rgba(255, 89, 0, .72);
    border-radius: 10px;
    overflow: hidden;
    background: #050815;
}

.triavox-page .badges img {
    display: block;
    width: 100%;
    height: auto;
}

.triavox-page .badge-universe-fallback {
    padding: 22px 28px 26px;
    text-align: center;
    background:
        radial-gradient(circle at left center, rgba(0, 255, 80, .12), transparent 26%),
        radial-gradient(circle at right center, rgba(255, 50, 31, .16), transparent 28%),
        #050815;
}

.triavox-page .badge-universe-fallback h2 {
    margin: 0;
    text-transform: uppercase;
    font-size: 31px;
    font-weight: 950;
    letter-spacing: .4px;
}

.triavox-page .badge-universe-fallback p {
    margin: 3px 0 20px;
    color: #d9dfef;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 1.2px;
}

.triavox-page .badge-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
}

.triavox-page .badge {
    display: grid;
    justify-items: center;
    gap: 5px;
    color: var(--badge-color);
    text-transform: uppercase;
}

.triavox-page .badge span {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    margin-bottom: 7px;
    border: 3px solid currentColor;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, currentColor 28%, transparent), rgba(255, 255, 255, .03));
    box-shadow: 0 0 22px currentColor, inset 0 0 20px rgba(255, 255, 255, .08);
    font-size: 36px;
}

.triavox-page .badge b {
    color: #fff;
    font-size: 13px;
    line-height: 1;
}

.triavox-page .badge small {
    color: #d7ddec;
    font-size: 13px;
    font-weight: 950;
}

.triavox-page .badge.common { --badge-color: #d7dce7; }
.triavox-page .badge.uncommon { --badge-color: #b7ff00; }
.triavox-page .badge.rare { --badge-color: #2aa6ff; }
.triavox-page .badge.epic { --badge-color: #aa44ff; }
.triavox-page .badge.legendary { --badge-color: #ff9a16; }
.triavox-page .badge.mythic { --badge-color: #ff3346; }
.triavox-page .badge.transcendent { --badge-color: #69b7ff; }

.triavox-page .final {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    min-height: 86px;
    margin: 0 46px 24px;
    padding: 18px 36px;
    border: 1px solid rgba(255, 90, 0, .68);
    border-radius: 8px;
    background: rgba(5, 8, 18, .9);
}

.triavox-page .final h2 {
    font-size: 27px;
}

.triavox-page .final h2 span {
    color: #437cff;
}

.triavox-page footer {
    display: grid;
    grid-template-columns: 300px repeat(4, 1fr);
    gap: 30px;
    padding: 0 46px 30px;
}

.triavox-page footer img {
    width: 255px;
    height: auto;
}

.triavox-page footer b {
    display: block;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.triavox-page footer a,
.triavox-page footer p {
    display: block;
    color: #c8cedc;
    font-size: 13px;
    margin: 4px 0;
    text-decoration: none;
}

@media (max-width: 1180px) {
    .triavox-page .header {
        grid-template-columns: 330px 1fr auto;
    }

    .triavox-page .brand,
    .triavox-page .brand img {
        width: 330px;
    }

    .triavox-page .nav {
        gap: 22px;
    }
}

@media (max-width: 980px) {
    .triavox-page .header {
        display: flex;
        height: auto;
        padding: 18px 22px;
    }

    .triavox-page .brand,
    .triavox-page .brand img {
        width: 240px;
    }

    .triavox-page .nav,
    .triavox-page .header-actions {
        display: none;
    }

    .triavox-page .hero {
        grid-template-columns: 1fr;
        padding: 18px 22px 0;
    }

    .triavox-page .right {
        min-height: 540px;
    }

    .triavox-page .board {
        width: 88%;
        right: -12%;
        top: -175px;
    }

    .triavox-page .laptop {
        width: 65%;
        left: 16%;
        top: 110px;
    }

    .triavox-page .phone {
        width: 23%;
        bottom: 10px;
    }

    .triavox-page h1 {
        font-size: 56px;
    }

    .triavox-page .points {
        grid-template-columns: repeat(2, 1fr);
    }

    .triavox-page .actions {
        flex-wrap: wrap;
    }

    .triavox-page .cta {
        min-width: 0;
        width: 100%;
    }

    .triavox-page .trust,
    .triavox-page .join,
    .triavox-page .cards,
    .triavox-page .badge-row,
    .triavox-page footer {
        grid-template-columns: 1fr;
    }

    .triavox-page .trust,
    .triavox-page .join,
    .triavox-page .badges,
    .triavox-page .final {
        margin-left: 18px;
        margin-right: 18px;
    }

    .triavox-page .row {
        grid-template-columns: 1fr;
    }

    .triavox-page .final {
        display: block;
        text-align: center;
    }

    .triavox-page .final .cta {
        margin-top: 15px;
    }
}
