.bi-preloader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 23% 18%, rgba(35, 195, 255, .28), transparent 30%),
        radial-gradient(circle at 75% 78%, rgba(11, 94, 215, .35), transparent 34%),
        radial-gradient(circle at 50% 52%, rgba(255, 255, 255, .06), transparent 32%),
        linear-gradient(135deg, #03102b 0%, #062d73 52%, #073eaa 100%);
    transition: opacity .45s ease, visibility .45s ease;
}

.bi-preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-panel {
    width: min(520px, 90vw);
    display: grid;
    place-items: center;
    gap: 16px;
    text-align: center;
    color: #ffffff;
}

.preloader-orbit {
    position: relative;
    width: 132px;
    height: 132px;
    display: grid;
    place-items: center;
}

.orbit-glow {
    position: absolute;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(35, 216, 255, .36), rgba(35, 216, 255, .10) 45%, transparent 70%);
    filter: blur(12px);
    animation: loginGlowPulse 1.9s ease-in-out infinite;
}

.orbit-ring {
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 5px solid rgba(255, 255, 255, .18);
    border-top-color: #ffffff;
    border-right-color: #21d6ff;
    border-bottom-color: #0b8fff;
    border-left-color: rgba(255, 255, 255, .08);
    border-radius: 50%;
    animation: loginSpin .95s linear infinite;
    box-shadow: 0 0 22px rgba(35, 216, 255, .24), inset 0 0 14px rgba(255, 255, 255, .10);
}

.ring-two {
    display: none;
}

.loader-logo-wrap {
    position: relative;
    z-index: 3;
    width: 92px;
    height: 92px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    box-shadow: 0 0 18px rgba(35, 216, 255, .22), inset 0 0 14px rgba(255, 255, 255, .12);
}

.loader-logo-water {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 18%;
    background: linear-gradient(180deg, #6ee7ff, #21c8ff 35%, #0ea5ff 68%, #0657d9);
    animation: loginWaterRise 3.2s ease-in-out infinite;
    box-shadow: inset 0 0 16px rgba(255, 255, 255, .28), 0 0 18px rgba(33, 200, 255, .30);
}

.loader-logo-water::before,
.loader-logo-water::after {
    content: "";
    position: absolute;
    left: -10%;
    top: -10px;
    width: 120%;
    height: 22px;
    border-radius: 45%;
    background: rgba(255, 255, 255, .30);
}

.loader-logo-water::before {
    animation: loginWaveMove 2.4s linear infinite;
}

.loader-logo-water::after {
    top: -14px;
    opacity: .44;
    animation: loginWaveMove2 3.2s linear infinite;
}

.loader-logo-img {
    position: relative;
    z-index: 3;
    width: 82px;
    height: 82px;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, .32)) drop-shadow(0 0 10px rgba(35, 216, 255, .30));
}

.loader-logo-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, .20), transparent 48%), linear-gradient(135deg, rgba(255,255,255,.10), transparent 42%);
}

.preloader-copy strong {
    display: block;
    color: #ffffff;
    font-size: clamp(30px, 3.2vw, 40px);
    line-height: .95;
    font-weight: 950;
    letter-spacing: -.04em;
    text-shadow: 0 0 8px rgba(33, 200, 255, .45), 0 0 18px rgba(11, 143, 255, .34), 0 10px 26px rgba(0, 0, 0, .26);
    animation: loginTitleGlow 2.2s ease-in-out infinite;
}

.preloader-copy span {
    display: block;
    margin-top: 8px;
    color: #dcecff;
    font-size: 14px;
    font-weight: 850;
}

.preloader-copy p {
    min-height: 22px;
    margin: 16px 0 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 850;
    animation: loginTextPulse 1.7s ease-in-out infinite;
}

.preloader-bar {
    width: min(310px, 70vw);
    height: 8px;
    margin: 8px auto 0;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    box-shadow: 0 0 14px rgba(36, 214, 255, .22), inset 0 0 8px rgba(255, 255, 255, .08);
}

.preloader-bar i {
    display: block;
    width: 44%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #ffffff, #6ee7ff 28%, #21c8ff 55%, #0b8fff 78%, #ffffff);
    animation: loginLoadingBar 1.1s ease-in-out infinite;
}

@keyframes loginSpin { to { transform: rotate(360deg); } }
@keyframes loginLoadingBar { from { transform: translateX(-110%); } to { transform: translateX(260%); } }
@keyframes loginWaterRise { 0%,100% { height: 18%; } 25% { height: 42%; } 50% { height: 68%; } 75% { height: 88%; } }
@keyframes loginWaveMove { 0%,100% { transform: translateX(-8px) rotate(0); } 50% { transform: translateX(8px) rotate(2deg); } }
@keyframes loginWaveMove2 { 0%,100% { transform: translateX(10px) rotate(0); } 50% { transform: translateX(-8px) rotate(-2deg); } }
@keyframes loginGlowPulse { 0%,100% { opacity: .65; transform: scale(.94); } 50% { opacity: 1; transform: scale(1.08); } }
@keyframes loginTitleGlow { 0%,100% { filter: drop-shadow(0 0 8px rgba(33,200,255,.35)); } 50% { filter: drop-shadow(0 0 16px rgba(33,200,255,.58)); } }
@keyframes loginTextPulse { 0%,100% { opacity: .82; } 50% { opacity: 1; } }

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
}

body {
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    background: #020b20;
    color: #ffffff;
    overflow: hidden;
}

.login-screen {
    position: relative;
    width: 100vw;
    height: 100dvh;
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(620px, 64fr) minmax(410px, 36fr);
    overflow: hidden;
    background: #020b20;
}

.global-backgrounds,
.slide-bg {
    position: absolute;
    inset: 0;
}

.global-backgrounds {
    z-index: 0;
    overflow: hidden;
}

.slide-bg {
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transform: scale(1.045);
    transition:
        opacity 1s ease,
        transform 7s ease;
}

.slide-bg.active {
    opacity: 1;
    transform: scale(1);
}

.screen-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(2, 9, 28, 0.92) 0%, rgba(3, 18, 50, 0.80) 48%, rgba(3, 20, 59, 0.42) 100%),
        radial-gradient(circle at 29% 35%, rgba(0, 199, 255, 0.17), transparent 30%),
        radial-gradient(circle at 100% 8%, rgba(7, 94, 232, 0.70), transparent 36%),
        linear-gradient(0deg, rgba(2, 9, 28, 0.82), rgba(2, 9, 28, 0.05) 42%);
}

.hero-panel {
    position: relative;
    z-index: 2;
    min-width: 0;
    height: 100dvh;
    padding:
        clamp(26px, 5.7vh, 62px)
        clamp(34px, 4.4vw, 78px)
        clamp(22px, 4.2vh, 54px);
    overflow: hidden;
}

.brand-row {
    position: relative;
    z-index: 4;
    height: clamp(46px, 7vh, 74px);
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.6vw, 28px);
}

.brand-row img {
    display: block;
    max-height: 100%;
    max-width: clamp(130px, 14vw, 220px);
    object-fit: contain;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.35));
}

.brand-row span {
    width: 1px;
    height: 74%;
    background: rgba(255, 255, 255, 0.56);
}

.hero-content {
    position: relative;
    z-index: 4;
    width: min(780px, 86%);
    margin-top: clamp(44px, 10vh, 118px);
}

.ira-icon {
    position: relative;
    width: clamp(84px, 8vw, 146px);
    height: clamp(84px, 8vw, 146px);
    margin-bottom: clamp(16px, 2.5vh, 28px);
    display: grid;
    place-items: center;
    border-radius: 50%;
    isolation: isolate;
}

.ira-icon::before {
    content: "";
    position: absolute;
    inset: -5%;
    z-index: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 211, 238, .20), rgba(7, 94, 232, .08) 48%, transparent 72%);
    filter: blur(7px);
    animation: iraHaloPulse 3.4s ease-in-out infinite;
}

.ira-orbit {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    pointer-events: none;
}

.ira-orbit-one {
    inset: 0;
    border: 2px dashed rgba(158, 221, 255, .82);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .13),
        0 0 22px rgba(33, 200, 255, .25),
        inset 0 0 18px rgba(7, 94, 232, .13);
    animation: iraOrbitSpin 11s linear infinite;
}

.ira-orbit-one::before,
.ira-orbit-one::after,
.ira-orbit-two::before,
.ira-orbit-two::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border: 2px solid rgba(255, 255, 255, .96);
    border-radius: 50%;
    background: #0b8fff;
    box-shadow: 0 0 12px rgba(32, 207, 255, .85);
}

.ira-orbit-one::before {
    left: 11%;
    top: 18%;
}

.ira-orbit-one::after {
    right: 7%;
    bottom: 25%;
}

.ira-orbit-two {
    inset: 12%;
    border: 1.5px solid rgba(64, 205, 255, .84);
    box-shadow:
        0 0 16px rgba(33, 200, 255, .18),
        inset 0 0 14px rgba(255, 255, 255, .12);
    animation: iraOrbitSpinReverse 7.6s linear infinite;
}

.ira-orbit-two::before {
    right: 2%;
    top: 29%;
    width: 6px;
    height: 6px;
}

.ira-orbit-two::after {
    left: 5%;
    bottom: 24%;
    width: 6px;
    height: 6px;
}

.ira-logo-core {
    position: relative;
    z-index: 3;
    width: 68%;
    height: 68%;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, .84);
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    box-shadow:
        0 0 0 5px rgba(22, 172, 244, .12),
        0 12px 28px rgba(0, 16, 52, .24),
        0 0 22px rgba(32, 207, 255, .35);
}

.ira-icon img {
    width: 92%;
    height: 92%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 8px rgba(7, 94, 232, .20));
}

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

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

@keyframes iraHaloPulse {
    0%,
    100% {
        opacity: .62;
        transform: scale(.96);
    }

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

@media (prefers-reduced-motion: reduce) {
    .ira-orbit-one,
    .ira-orbit-two,
    .ira-icon::before {
        animation: none;
    }
}

.main-title {
    display: flex;
    align-items: baseline;
    margin-bottom: clamp(14px, 2vh, 22px);
    font-size: clamp(56px, 6.7vw, 122px);
    line-height: 0.84;
    font-weight: 950;
    letter-spacing: 0.02em;
    text-shadow: 0 18px 48px rgba(0, 0, 0, 0.72);
}

.main-title span {
    color: #ffffff;
}

.main-title strong {
    background: linear-gradient(180deg, #4fd6ff, #0a94f2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.slide-copy {
    position: relative;
    width: min(740px, 100%);
    min-height: clamp(116px, 18vh, 185px);
}

.copy-item {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.copy-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.copy-item span {
    display: inline-block;
    margin-bottom: 6px;
    color: #35cfff;
    font-size: clamp(13px, 1.05vw, 18px);
    font-weight: 900;
    letter-spacing: 0.03em;
}

.copy-item h2 {
    width: min(690px, 100%);
    margin: 0 0 clamp(7px, 1.1vh, 12px);
    color: #ffffff;
    font-size: clamp(20px, 2.05vw, 35px);
    line-height: 1.14;
    font-weight: 950;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.70);
}

.copy-item p {
    width: min(710px, 100%);
    margin: 0;
    color: #e8f3ff;
    font-size: clamp(12px, 1.18vw, 16px);
    line-height: 1.48;
    font-weight: 500;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.74);
}

.feature-grid {
    width: min(760px, 100%);
    margin-top: clamp(14px, 2.7vh, 30px);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(8px, 0.9vw, 14px);
}

.feature-card {
    min-height: clamp(78px, 11vh, 112px);
    padding: clamp(9px, 1.3vh, 15px);
    border-radius: clamp(12px, 1vw, 18px);
    background: rgba(4, 39, 86, 0.64);
    border: 1px solid rgba(67, 191, 255, 0.24);
    box-shadow:
        inset 0 0 28px rgba(0, 160, 255, 0.08),
        0 18px 36px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(10px);
}

.feature-card svg {
    width: clamp(23px, 1.9vw, 33px);
    height: clamp(23px, 1.9vw, 33px);
    margin-bottom: 6px;
    fill: none;
    stroke: #18c4ff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card b {
    display: block;
    color: #ffffff;
    font-size: clamp(10px, 0.9vw, 15px);
    line-height: 1.2;
    font-weight: 900;
}

.feature-card small {
    display: block;
    margin-top: 5px;
    color: #d3e8ff;
    font-size: clamp(9px, 0.74vw, 13px);
    line-height: 1.25;
}

.carousel-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: clamp(32px, 2.6vw, 42px);
    height: clamp(32px, 2.6vw, 42px);
    border-radius: 50%;
    border: 1px solid rgba(99, 204, 255, 0.42);
    background: rgba(7, 25, 62, 0.58);
    color: #ffffff;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 0;
    cursor: pointer;
    display: grid;
    place-items: center;
    backdrop-filter: blur(8px);
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.carousel-arrow:hover {
    background: rgba(12, 104, 226, 0.90);
}

.carousel-prev {
    left: clamp(8px, 0.8vw, 16px);
    transform: translateY(-50%);
}

.carousel-next {
    right: clamp(8px, 0.8vw, 16px);
    transform: translateY(-50%);
}

.carousel-prev:hover {
    transform: translateY(-50%) scale(1.03);
}

.carousel-next:hover {
    transform: translateY(-50%) scale(1.03);
}

.carousel-dots {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: clamp(66px, 8.5vh, 100px);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 11px;
}

.carousel-dots button {
    width: clamp(10px, 0.85vw, 14px);
    height: clamp(10px, 0.85vw, 14px);
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
    cursor: pointer;
    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.carousel-dots button.active {
    width: clamp(26px, 2.2vw, 36px);
    background: #0ebdff;
}

.hero-footer {
    position: absolute;
    z-index: 4;
    left: clamp(34px, 4.4vw, 78px);
    right: clamp(34px, 4.4vw, 78px);
    bottom: clamp(18px, 3.3vh, 38px);
    color: rgba(233, 243, 255, 0.78);
}

.hero-footer p {
    margin: 0 0 5px;
    font-size: clamp(11px, 0.95vw, 15px);
    line-height: 1.35;
}

.login-panel {
    position: relative;
    z-index: 3;
    min-width: 0;
    height: 100dvh;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
    justify-items: center;
    padding:
        clamp(20px, 4.8vh, 54px)
        clamp(24px, 3.8vw, 70px)
        clamp(16px, 3vh, 34px);
}

.login-panel::before {
    content: "";
    position: absolute;
    inset: -20% -38% -20% auto;
    width: 86%;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 207, 255, 0.20), transparent 34%),
        repeating-radial-gradient(circle at 68% 34%, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 12px);
    opacity: 0.55;
    pointer-events: none;
}

.login-card {
    position: relative;
    z-index: 2;
    width: min(100%, clamp(380px, 31vw, 555px));
    padding:
        clamp(24px, 4.2vh, 48px)
        clamp(26px, 3.1vw, 52px)
        clamp(22px, 3.7vh, 42px);
    border-radius: clamp(20px, 1.8vw, 30px);
    background: rgba(255, 255, 255, 0.985);
    color: #08204d;
    box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.34),
        inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.security-icon {
    width: clamp(68px, 7.6vh, 98px);
    height: clamp(68px, 7.6vh, 98px);
    margin: 0 auto clamp(14px, 2vh, 24px);
}

.security-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #075ee8;
    stroke-width: 3.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 12px 16px rgba(7, 94, 232, 0.18));
}

.login-card h1 {
    margin: 0;
    text-align: center;
    color: #071c47;
    font-size: clamp(25px, 1.9vw, 37px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.login-card > p {
    margin: clamp(8px, 1.2vh, 13px) 0 clamp(20px, 3.3vh, 34px);
    text-align: center;
    color: #536486;
    font-size: clamp(13px, 0.95vw, 17px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.login-form {
    display: grid;
    gap: clamp(13px, 1.8vh, 20px);
}

.input-group {
    position: relative;
    height: clamp(46px, 6vh, 60px);
    display: flex;
    align-items: center;
    border: 1px solid #c9d5e7;
    border-radius: clamp(10px, 0.85vw, 14px);
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 47, 96, 0.06);
    transition:
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.input-group:focus-within {
    border-color: #075ee8;
    box-shadow: 0 0 0 4px rgba(7, 94, 232, 0.11);
}

.input-group > svg {
    flex: 0 0 auto;
    width: clamp(19px, 1.45vw, 24px);
    height: clamp(19px, 1.45vw, 24px);
    margin-left: clamp(13px, 1.2vw, 21px);
    fill: none;
    stroke: #516789;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.input-group input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: none;
    padding: 0 clamp(12px, 1vw, 18px);
    color: #081f4d;
    background: transparent;
    font-size: clamp(14px, 1vw, 18px);
    font-weight: 600;
}

.input-group input::placeholder {
    color: #7182a1;
    font-weight: 600;
}

.password-toggle {
    width: clamp(42px, 3vw, 50px);
    height: 100%;
    border: 0;
    background: transparent;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.password-toggle svg {
    width: clamp(19px, 1.4vw, 24px);
    height: clamp(19px, 1.4vw, 24px);
    fill: none;
    stroke: #516789;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: -1px;
    color: #0b2452;
    font-size: clamp(13px, 0.95vw, 16px);
}

.form-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 700;
}

.form-options input {
    width: clamp(15px, 1vw, 18px);
    height: clamp(15px, 1vw, 18px);
    accent-color: #075ee8;
}

.form-options a {
    color: #075ee8;
    text-decoration: none;
    font-weight: 800;
}

.form-options a:hover {
    text-decoration: underline;
}

.login-button {
    width: 100%;
    height: clamp(50px, 6.2vh, 60px);
    border: 0;
    border-radius: clamp(10px, 0.85vw, 14px);
    background: linear-gradient(135deg, #075ee8, #0352d9);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: clamp(15px, 1.05vw, 18px);
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 34px rgba(7, 94, 232, 0.26);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        filter 0.22s ease;
}

.login-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 20px 38px rgba(7, 94, 232, 0.34);
}

.login-button svg {
    width: clamp(20px, 1.5vw, 24px);
    height: clamp(20px, 1.5vw, 24px);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.separator {
    position: relative;
    margin: clamp(17px, 2.4vh, 26px) 0;
    text-align: center;
    color: #7b8aa8;
    font-size: clamp(12px, 0.9vw, 15px);
}

.separator::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #dce5f2;
}

.separator span {
    position: relative;
    padding: 0 16px;
    background: #ffffff;
}

.create-account {
    width: 100%;
    height: clamp(48px, 5.8vh, 58px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid #bfd2ef;
    border-radius: clamp(10px, 0.85vw, 14px);
    background: #ffffff;
    color: #075ee8;
    text-decoration: none;
    font-size: clamp(14px, 1vw, 17px);
    font-weight: 900;
    transition:
        background 0.22s ease,
        border-color 0.22s ease;
}

.create-account:hover {
    background: #f2f7ff;
    border-color: #075ee8;
}

.create-account svg {
    width: clamp(20px, 1.45vw, 24px);
    height: clamp(20px, 1.45vw, 24px);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.safe-box {
    margin-top: clamp(17px, 2.5vh, 28px);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    padding: clamp(13px, 1.7vh, 18px);
    border-radius: clamp(13px, 1vw, 18px);
    background: linear-gradient(135deg, #eef6ff, #e8f3ff);
    color: #123a76;
}

.safe-box svg {
    width: clamp(28px, 2.2vw, 36px);
    height: clamp(28px, 2.2vw, 36px);
    fill: none;
    stroke: #075ee8;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.safe-box b {
    display: block;
    color: #075ee8;
    font-size: clamp(13px, 0.95vw, 16px);
    font-weight: 950;
    margin-bottom: 4px;
}

.safe-box span {
    display: block;
    color: #23446f;
    font-size: clamp(11px, 0.82vw, 14px);
    line-height: 1.35;
}

.device-row {
    position: relative;
    z-index: 2;
    width: min(100%, 640px);
    margin-top: clamp(12px, 2vh, 24px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 1.4vw, 24px);
    color: #ffffff;
}

.device-row div {
    display: grid;
    justify-items: center;
    gap: 7px;
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
}

.device-row svg {
    width: clamp(24px, 2vw, 34px);
    height: clamp(24px, 2vw, 34px);
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.30));
}

.device-row span {
    font-size: clamp(10px, 0.78vw, 13px);
    font-weight: 700;
}

.alert {
    margin-bottom: clamp(12px, 1.8vh, 18px);
    padding: 12px 14px;
    border-radius: 13px;
    background: #fdecec;
    color: #b02a37;
    border: 1px solid #f5c2c7;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

@media (max-height: 760px) and (min-width: 1001px) {
    .hero-panel {
        padding-top: 26px;
        padding-bottom: 18px;
    }

    .brand-row {
        height: 48px;
    }

    .hero-content {
        margin-top: 46px;
    }

    .ira-icon {
        width: 82px;
        height: 82px;
        margin-bottom: 14px;
    }

    .main-title {
        font-size: clamp(54px, 6vw, 88px);
        margin-bottom: 12px;
    }

    .slide-copy {
        min-height: 122px;
    }

    .copy-item h2 {
        font-size: clamp(20px, 1.8vw, 28px);
    }

    .copy-item p {
        font-size: clamp(13px, 1vw, 16px);
        line-height: 1.38;
    }

    .feature-grid {
        margin-top: 12px;
    }

    .feature-card {
        min-height: 76px;
        padding: 9px;
    }

    .feature-card small {
        display: none;
    }

    .login-card {
        padding: 22px 30px;
    }

    .security-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 12px;
    }

    .login-card h1 {
        font-size: 26px;
    }

    .login-card > p {
        margin-bottom: 18px;
    }

    .input-group {
        height: 46px;
    }

    .login-form {
        gap: 12px;
    }

    .login-button {
        height: 48px;
    }

    .separator {
        margin: 14px 0;
    }

    .create-account {
        height: 46px;
    }

    .safe-box {
        margin-top: 14px;
        padding: 12px;
    }

    .device-row {
        margin-top: 10px;
    }
}

@media (max-width: 1000px) {
    body {
        overflow: auto;
    }

    .login-screen {
        min-height: 100dvh;
        height: auto;
        display: block;
        overflow: hidden;
    }

    .hero-panel {
        height: auto;
        min-height: 48dvh;
        padding: 28px 28px 26px;
    }

    .brand-row {
        justify-content: center;
        flex-wrap: wrap;
        height: auto;
    }

    .brand-row img {
        max-height: 54px;
        max-width: 180px;
    }

    .hero-content {
        width: min(760px, 100%);
        margin: 58px auto 0;
        text-align: center;
    }

    .ira-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .main-title {
        justify-content: center;
    }

    .slide-copy {
        margin: 0 auto;
    }

    .copy-item {
        text-align: center;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(620px, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    .hero-footer {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 28px;
        text-align: center;
    }

    .carousel-dots {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        justify-content: center;
        margin-top: 24px;
    }

    .carousel-prev {
        left: 16px;
    }

    .carousel-next {
        right: 16px;
    }

    .login-panel {
        height: auto;
        min-height: auto;
        padding: 22px 20px 28px;
    }

    .login-card {
        width: min(100%, 520px);
    }

    .device-row {
        width: min(100%, 520px);
        margin-top: 18px;
    }
}

@media (max-width: 620px) {
    .screen-overlay {
        background:
            linear-gradient(180deg, rgba(2, 9, 28, 0.92) 0%, rgba(3, 18, 50, 0.75) 50%, rgba(3, 20, 59, 0.86) 100%),
            radial-gradient(circle at 50% 12%, rgba(0, 199, 255, 0.15), transparent 38%);
    }

    .hero-panel {
        min-height: auto;
        padding: 18px 16px 12px;
    }

    .brand-row {
        gap: 8px;
    }

    .brand-row span {
        display: none;
    }

    .brand-row img {
        max-height: 38px;
        max-width: 31%;
    }

    .hero-content {
        margin-top: 34px;
    }

    .ira-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 12px;
    }

    .main-title {
        font-size: 48px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .slide-copy {
        min-height: 134px;
    }

    .copy-item span {
        font-size: 13px;
    }

    .copy-item h2 {
        font-size: 20px;
        line-height: 1.18;
    }

    .copy-item p {
        font-size: 12px;
        line-height: 1.42;
    }

    .feature-grid {
        display: none;
    }

    .carousel-arrow {
        display: none;
    }

    .carousel-dots {
        margin-top: 14px;
        gap: 8px;
    }

    .hero-footer {
        display: none;
    }

    .login-panel {
        padding: 10px 12px 18px;
    }

    .login-card {
        width: 100%;
        padding: 22px 18px;
        border-radius: 22px;
    }

    .security-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 12px;
    }

    .login-card h1 {
        font-size: 25px;
    }

    .login-card > p {
        margin-bottom: 18px;
    }

    .form-options {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .safe-box {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .device-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

.login-status {
    width: fit-content;
    min-height: 30px;
    margin: -6px auto 13px;
    padding: 0 11px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #cfe1fa;
    border-radius: 999px;
    color: #075ee8;
    background: #edf6ff;
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.security-icon {
    display: grid;
    place-items: center;
    border: 1px solid #cfe1fa;
    border-radius: 24px;
    color: #075ee8;
    background: linear-gradient(145deg, #ffffff, #e9f3ff);
    box-shadow: 0 18px 34px rgba(7, 94, 232, .16), inset 0 0 0 7px rgba(7, 94, 232, .04);
}

.security-icon > i {
    font-size: clamp(42px, 4.5vw, 62px);
    filter: drop-shadow(0 12px 16px rgba(7, 94, 232, .18));
}

.feature-card > i {
    display: block;
    margin-bottom: 7px;
    color: #18c4ff;
    font-size: clamp(23px, 1.9vw, 33px);
}

.carousel-arrow i {
    font-size: clamp(18px, 1.7vw, 26px);
}

.input-symbol {
    flex: 0 0 auto;
    margin-left: clamp(13px, 1.2vw, 21px);
    color: #516789;
    font-size: clamp(19px, 1.45vw, 24px);
}

.password-toggle i {
    color: #516789;
    font-size: clamp(19px, 1.4vw, 24px);
}

.login-button i,
.create-account i {
    font-size: clamp(20px, 1.5vw, 24px);
}

.safe-box > i {
    color: #075ee8;
    font-size: clamp(28px, 2.2vw, 36px);
}

.device-row i {
    color: #ffffff;
    font-size: clamp(24px, 2vw, 34px);
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .30));
}

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

.alert i {
    flex: 0 0 auto;
    font-size: 18px;
}

.honeypot {
    position: fixed !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.login-button:disabled {
    opacity: .76;
    cursor: wait;
    transform: none;
}

.button-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,.38);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: loginSpin .72s linear infinite;
}

.noscript-message {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 100005;
    width: min(560px, calc(100vw - 28px));
    padding: 12px 16px;
    border: 1px solid #f0c36d;
    border-radius: 14px;
    color: #5d3b00;
    background: #fff7df;
    box-shadow: 0 18px 44px rgba(0,0,0,.22);
    text-align: center;
    font-size: 12px;
    font-weight: 850;
    transform: translateX(-50%);
}

@media (max-width: 720px) {
    .preloader-orbit {
        width: 112px;
        height: 112px;
    }

    .loader-logo-wrap {
        width: 78px;
        height: 78px;
    }

    .loader-logo-img {
        width: 70px;
        height: 70px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
