@font-face {
    font-family: "Neue Haas Grotesk Display Pro";
    font-style: normal;
    font-weight: 400;
    src: local("Neue Haas Grotesk Display Pro"), url("../../../../assets/font/NeueHaasDisplayLight.woff2") format("woff2");
}

@font-face {
    font-family: "Neue Haas Grotesk Display Pro";
    font-style: normal;
    font-weight: 500;
    src: local("Neue Haas Grotesk Display Pro"), url("../../../../assets/font/NeueHaasDisplayRoman.woff2") format("woff2");
}

@font-face {
    font-family: "Neue Haas Grotesk Display Pro";
    font-style: normal;
    font-weight: 700;
    src: local("Neue Haas Grotesk Display Pro"), url("../../../../assets/font/NeueHaasDisplayBold.woff2") format("woff2");
}

@font-face {
    font-family: "Neue Haas Grotesk Display Pro";
    font-style: normal;
    font-weight: 900;
    src: local("Neue Haas Grotesk Display Pro"), url("../../../../assets/font/NeueHaasDisplayBlack.woff2") format("woff2");
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Neue Haas Grotesk Display Pro";
}

[hidden] {
    display: none !important;
}

:root {
    --lm-shell: #17213A;
    --lm-panel: #0E1526;
    --lm-surface: #1B2742;
    --lm-surface-deep: #0A101F;
    --lm-accent: #2E7BFF;
    --lm-accent-hover: #4F90FF;
    --lm-accent-light: #82B4FF;
    --lm-accent-soft: rgba(46, 123, 255, 0.22);
    --lm-muted: #AFC2E8;
    --lm-dim: #7C90B8;
    --lm-border: rgba(130, 180, 255, 0.12);
    --lm-border-strong: rgba(130, 180, 255, 0.22);
    --text: #ffffff;
    --lm-shadow-card: 0 10px 24px rgba(0, 0, 0, 0.28);
    --lm-ease: cubic-bezier(0.33, 1, 0.68, 1);
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
    background: var(--lm-shell);
    user-select: none;
}

body {
    min-width: 320px;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--lm-shell);
    color: var(--text);
    font-family: "Neue Haas Grotesk Display Pro", Arial, sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

a:focus-visible {
    outline: 2px solid var(--lm-accent-light);
    outline-offset: 3px;
}

.site-topbar {
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 0 clamp(18px, 4vw, 56px);
    border-bottom: 1px solid var(--lm-border);
    background: rgba(14, 21, 38, 0.88);
    backdrop-filter: blur(14px);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.site-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.site-brand span {
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.site-nav a {
    display: inline-flex;
    height: 38px;
    align-items: center;
    padding: 0 14px;
    border-radius: 10px;
    color: var(--lm-muted);
    font-size: 14px;
    font-weight: 800;
    transition: background 0.16s var(--lm-ease), color 0.16s var(--lm-ease);
}

.site-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.topbar-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.16s var(--lm-ease), border-color 0.16s var(--lm-ease), box-shadow 0.16s var(--lm-ease), transform 0.16s var(--lm-ease), color 0.16s var(--lm-ease);
}

.topbar-cta {
    height: 40px;
    padding: 0 15px;
    border-color: rgba(130, 180, 255, 0.28);
    border-radius: 11px;
    background: var(--lm-accent-soft);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

.topbar-cta svg,
.btn svg {
    width: 19px;
    height: 19px;
    flex: none;
    stroke-width: 2.2;
}

.topbar-cta:hover {
    border-color: rgba(130, 180, 255, 0.44);
    background: rgba(46, 123, 255, 0.32);
    transform: translateY(-1px);
}

.hero {
    position: relative;
    display: flex;
    min-height: 780px;
    align-items: center;
    padding: 116px clamp(22px, 6vw, 88px) 84px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(10, 16, 31, 0.94) 0%, rgba(10, 16, 31, 0.84) 42%, rgba(10, 16, 31, 0.52) 100%),
        linear-gradient(180deg, rgba(23, 33, 58, 0.12) 0%, var(--lm-shell) 100%),
        url("../img/hero-product-preview.png") center / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(180deg, transparent, var(--lm-shell));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    max-width: 680px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 7px 13px;
    border: 1px solid rgba(130, 180, 255, 0.3);
    border-radius: 999px;
    background: var(--lm-accent-soft);
    color: var(--lm-accent-light);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    color: #ffffff;
    font-size: clamp(58px, 8vw, 116px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -1.6px;
}

.hero p {
    max-width: 560px;
    color: var(--lm-muted);
    font-size: clamp(17px, 1.7vw, 22px);
    font-weight: 500;
    line-height: 1.42;
}

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

.btn {
    height: 46px;
    padding: 0 21px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 900;
}

.btn-primary {
    background: var(--lm-accent);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(46, 123, 255, 0.4);
}

.btn-primary:hover {
    background: var(--lm-accent-hover);
    box-shadow: 0 12px 26px rgba(46, 123, 255, 0.5);
    transform: translateY(-1px);
}

.btn-ghost {
    border-color: var(--lm-border);
    background: rgba(27, 39, 66, 0.7);
    color: var(--lm-muted);
}

.btn-ghost:hover {
    border-color: var(--lm-border-strong);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    transform: translateY(-1px);
}

.hero-status {
    position: absolute;
    z-index: 1;
    right: clamp(22px, 6vw, 88px);
    bottom: 42px;
    display: flex;
    max-width: min(720px, calc(100% - 44px));
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.hero-status span {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    border: 1px solid var(--lm-border);
    border-radius: 999px;
    background: rgba(10, 16, 31, 0.72);
    color: var(--lm-muted);
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.hero-status strong {
    color: var(--lm-accent-light);
    font-weight: 900;
}

.feature-band,
.workflow-section {
    padding: 70px clamp(22px, 6vw, 88px);
    background: var(--lm-shell);
}

.section-heading {
    display: flex;
    max-width: 760px;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 22px;
}

.section-heading h2 {
    color: #ffffff;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.8px;
}

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

.feature-card {
    display: grid;
    gap: 12px;
    min-height: 188px;
    padding: 24px;
    border: 1px solid var(--lm-border);
    border-radius: 18px;
    background: var(--lm-surface);
    transition: transform 0.2s var(--lm-ease), border-color 0.2s var(--lm-ease), box-shadow 0.2s var(--lm-ease);
}

.feature-card:hover {
    border-color: var(--lm-border-strong);
    box-shadow: var(--lm-shadow-card);
    transform: translateY(-3px);
}

.feature-card svg {
    width: 36px;
    height: 36px;
    color: var(--lm-accent-light);
    stroke-width: 1.9;
}

.feature-card h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
}

.feature-card p {
    color: var(--lm-muted);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
}

.workflow-section {
    padding-top: 32px;
}

.workflow-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    list-style: none;
}

.workflow-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border: 1px solid var(--lm-border);
    border-radius: 16px;
    background: var(--lm-surface-deep);
}

.workflow-list strong {
    display: grid;
    width: 44px;
    height: 44px;
    flex: none;
    place-items: center;
    border-radius: 12px;
    background: var(--lm-accent-soft);
    color: var(--lm-accent-light);
    font-size: 22px;
    font-weight: 900;
}

.workflow-list span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
}

@media (max-width: 900px) {
    .site-topbar {
        position: sticky;
        height: auto;
        flex-wrap: wrap;
        padding-block: 14px;
    }

    .site-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .hero {
        min-height: 690px;
        padding-top: 86px;
    }

    .hero-status {
        right: 22px;
        left: 22px;
        justify-content: flex-start;
    }

    .feature-grid,
    .workflow-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .site-brand span {
        font-size: 21px;
    }

    .topbar-cta span {
        display: none;
    }

    .hero {
        min-height: 590px;
        padding-inline: 18px;
    }

    .hero h1 {
        font-size: 56px;
    }

    .hero-actions,
    .btn {
        width: 100%;
    }

    .hero-status {
        bottom: 26px;
    }

    .feature-band {
        padding-top: 42px;
    }

    .section-heading h2 {
        font-size: 34px;
        line-height: 1.08;
        overflow-wrap: anywhere;
    }
}

/* ------------------------------ Auth pages ----------------------------- */

.auth-shell {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 28px;
    background:
        radial-gradient(circle at 52% 0%, rgba(46, 123, 255, 0.2), transparent 40%),
        var(--lm-shell);
}

.auth-card {
    width: min(100%, 438px);
    padding: 26px;
    border: 1px solid var(--lm-border);
    border-radius: 18px;
    background: var(--lm-panel);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.auth-brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.auth-brand span {
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
}

.auth-heading {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.auth-heading h1 {
    color: #ffffff;
    font-size: 31px;
    line-height: 1.05;
    font-weight: 900;
}

.auth-heading p,
.auth-help,
.auth-switch {
    color: var(--lm-muted);
    font-size: 14px;
    line-height: 1.45;
}

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

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

.auth-field span,
.auth-check {
    color: var(--lm-muted);
    font-size: 13px;
    font-weight: 800;
}

.auth-field input {
    width: 100%;
    height: 46px;
    border: 1px solid var(--lm-border);
    border-radius: 10px;
    background: var(--lm-surface-deep);
    color: #ffffff;
    font: inherit;
    padding: 0 13px;
    outline: none;
    transition: border-color 0.16s var(--lm-ease), box-shadow 0.16s var(--lm-ease), background 0.16s var(--lm-ease);
}

.auth-field input:focus {
    border-color: var(--lm-accent);
    box-shadow: 0 0 0 3px var(--lm-accent-soft);
}

.auth-check {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 9px;
}

.auth-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--lm-accent);
}

.auth-alert {
    padding: 10px 12px;
    border: 1px solid rgba(255, 95, 87, 0.28);
    border-radius: 10px;
    background: rgba(255, 95, 87, 0.1);
    color: #ffd7d4;
    font-size: 13px;
    line-height: 1.35;
}

.auth-alert.is-success {
    border-color: rgba(39, 200, 64, 0.28);
    background: rgba(39, 200, 64, 0.1);
    color: #c5f6ce;
}

.auth-submit {
    width: 100%;
    min-height: 46px;
    margin-top: 2px;
}

.auth-submit:disabled {
    cursor: wait;
    opacity: 0.68;
}

.auth-switch {
    margin-top: 18px;
    text-align: center;
}

.auth-switch a {
    color: var(--lm-accent-light);
    font-weight: 900;
}

.auth-shell-split {
    grid-template-columns: minmax(320px, 520px) minmax(360px, 460px);
    gap: 18px;
    place-items: stretch center;
    align-items: stretch;
    padding: 30px;
}

.auth-product-panel,
.auth-card-panel {
    min-height: min(720px, calc(100vh - 60px));
}

.auth-product-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--lm-border);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(27, 39, 66, 0.92), rgba(10, 16, 31, 0.95)),
        var(--lm-panel);
    box-shadow: var(--lm-shadow-pop);
}

.auth-product-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(130, 180, 255, 0.07) 1px, transparent 1px),
        linear-gradient(0deg, rgba(130, 180, 255, 0.06) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 78%);
    pointer-events: none;
}

.auth-brand-large {
    position: relative;
    margin-bottom: 0;
}

.auth-brand-large img {
    width: 50px;
    height: 50px;
}

.auth-brand-large span {
    font-size: 27px;
}

.auth-product-copy {
    position: relative;
    display: grid;
    gap: 14px;
    max-width: 430px;
}

.auth-product-copy h2 {
    color: #ffffff;
    font-size: 42px;
    line-height: 1.02;
    font-weight: 900;
}

.auth-product-copy p {
    max-width: 380px;
    color: var(--lm-muted);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 600;
}

.auth-product-stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.auth-product-stats span {
    display: grid;
    gap: 10px;
    min-height: 86px;
    align-content: center;
    padding: 13px;
    border: 1px solid var(--lm-border);
    border-radius: 12px;
    background: rgba(10, 16, 31, 0.58);
    color: var(--lm-muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
}

.auth-product-stats svg {
    width: 21px;
    height: 21px;
    color: var(--lm-accent-light);
}

.auth-card-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(100%, 460px);
    padding: 30px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(27, 39, 66, 0.72), rgba(14, 21, 38, 0.98)),
        var(--lm-panel);
}

.auth-input-wrap {
    position: relative;
}

.auth-input-wrap svg {
    position: absolute;
    left: 14px;
    top: 50%;
    width: 18px;
    height: 18px;
    color: var(--lm-dim);
    transform: translateY(-50%);
    pointer-events: none;
}

.auth-input-wrap input {
    padding-left: 43px;
}

.verify-status {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 16px;
    padding: 14px;
    border: 1px solid var(--lm-border);
    border-radius: 12px;
    background: var(--lm-inset);
}

.verify-status-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: none;
    place-items: center;
    border: 1px solid var(--lm-border-strong);
    border-radius: 12px;
    background: var(--lm-accent-soft);
    color: var(--lm-accent-light);
}

.verify-status-icon svg {
    width: 21px;
    height: 21px;
}

.verify-status strong,
.verify-status span {
    display: block;
}

.verify-status strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
}

.verify-status span {
    margin-top: 3px;
    color: var(--lm-muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.verify-status.is-success .verify-status-icon {
    border-color: rgba(39, 200, 64, 0.3);
    background: rgba(39, 200, 64, 0.12);
    color: var(--lm-green);
}

.verify-status.is-error .verify-status-icon {
    border-color: rgba(255, 95, 87, 0.3);
    background: rgba(255, 95, 87, 0.12);
    color: var(--lm-red);
}

@media (max-width: 520px) {
    .auth-shell {
        padding: 16px;
    }

    .auth-card {
        padding: 20px;
        border-radius: 16px;
    }

    .auth-heading h1 {
        font-size: 27px;
    }
}

@media (max-width: 920px) {
    .auth-shell-split {
        grid-template-columns: minmax(0, 1fr);
    }

    .auth-product-panel {
        min-height: auto;
        gap: 28px;
    }

    .auth-product-copy h2 {
        font-size: 32px;
    }

    .auth-product-stats {
        grid-template-columns: 1fr;
    }

    .auth-card-panel {
        min-height: auto;
    }
}

/* ----------------------- Auth split (yeni tasarım) ---------------------- */

.auth-split {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
    gap: 24px;
    min-height: 100vh;
    padding: 20px;
    background: #0A101F;
}

/* Mavi ışık hüzmeli tanıtım paneli */

.auth-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 40px 46px;
    border: 1px solid rgba(110, 165, 255, 0.45);
    border-radius: 36px;
    background:
        radial-gradient(90% 65% at 6% 2%, rgba(4, 9, 22, 0.9) 0%, rgba(4, 9, 22, 0) 55%),
        radial-gradient(110% 80% at 98% 102%, rgba(4, 9, 22, 0.85) 0%, rgba(4, 9, 22, 0) 52%),
        linear-gradient(118deg, #081431 0%, #123A8C 32%, #418CFF 50%, #123A8C 68%, #081431 100%);
    box-shadow: 0 0 46px rgba(46, 123, 255, 0.14);
}

.auth-hero-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
}

.auth-hero-brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.auth-hero-brand span {
    color: #ffffff;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.auth-hero-copy {
    display: grid;
    gap: 10px;
    max-width: 520px;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 60px;
}

.auth-hero-copy h2 {
    color: #ffffff;
    font-size: clamp(34px, 3.2vw, 46px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.8px;
}

.auth-hero-copy p {
    color: rgba(233, 240, 255, 0.85);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.auth-hero-foot {
    color: rgba(233, 240, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
}

/* Ayna düzen (sign-up): panel sağda, metin sağa hizalı */

.auth-split.is-reverse .auth-hero {
    order: 2;
    align-items: flex-end;
    text-align: right;
}

.auth-split.is-reverse .auth-pane {
    order: 1;
}

.auth-split.is-reverse .auth-hero-copy {
    justify-items: end;
}

/* Form tarafı */

.auth-pane {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 84px 24px 48px;
}

.auth-back {
    position: absolute;
    top: 30px;
    right: 40px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--lm-muted);
    font-size: 14.5px;
    font-weight: 700;
    transition: color 0.16s var(--lm-ease);
}

.auth-back svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.8;
}

.auth-back:hover {
    color: #ffffff;
}

.auth-split.is-reverse .auth-back {
    right: auto;
    left: 40px;
}

.auth-box {
    display: grid;
    gap: 20px;
    width: min(100%, 380px);
}

.auth-box-head {
    display: grid;
    justify-items: center;
    gap: 7px;
    text-align: center;
}

.auth-app-icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    margin-bottom: 6px;
    border: 1px solid var(--lm-border-strong);
    border-radius: 16px;
    background: linear-gradient(180deg, #14203C, #0C1428);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.auth-app-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.auth-box-head h1 {
    color: #ffffff;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.auth-box-head p {
    max-width: 340px;
    color: var(--lm-dim);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.auth-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    height: 46px;
    border: 0;
    border-radius: 10px;
    background: #ffffff;
    color: #1F2937;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.16s var(--lm-ease), transform 0.16s var(--lm-ease);
}

.auth-google:hover {
    background: #EDF2FB;
}

.auth-google svg {
    width: 20px;
    height: 20px;
    flex: none;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--lm-muted);
    font-size: 12.5px;
    font-weight: 600;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(190, 208, 240, 0.38);
}

.auth-split .auth-field>span {
    color: #E7EDF9;
    font-size: 13.5px;
    font-weight: 600;
}

.auth-split .auth-field input {
    background: #151E33;
    border-color: rgba(130, 180, 255, 0.16);
}

.auth-split .auth-field input::placeholder {
    color: var(--lm-dim);
}

.auth-input {
    position: relative;
}

.auth-input .auth-at {
    position: absolute;
    top: 50%;
    left: 14px;
    color: var(--lm-dim);
    font-size: 15px;
    font-weight: 700;
    transform: translateY(-50%);
    pointer-events: none;
}

.auth-input input.has-at {
    padding-left: 36px;
}

.auth-eye {
    position: absolute;
    top: 50%;
    right: 8px;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--lm-accent-light);
    cursor: pointer;
    transform: translateY(-50%);
    transition: color 0.16s var(--lm-ease);
}

.auth-eye:hover,
.auth-eye.is-on {
    color: #ffffff;
}

.auth-eye svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.auth-input input.has-eye {
    padding-right: 44px;
}

.auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.auth-row .auth-check {
    font-size: 12.5px;
}

.auth-link {
    color: var(--lm-muted);
    font-size: 12.5px;
    font-weight: 700;
    transition: color 0.16s var(--lm-ease);
}

.auth-link:hover {
    color: var(--lm-accent-light);
}

.auth-terms {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--lm-muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    cursor: pointer;
}

.auth-terms input {
    width: 15px;
    height: 15px;
    flex: none;
    margin-top: 2px;
    accent-color: var(--lm-accent);
}

.auth-terms a {
    color: var(--lm-accent-light);
    text-decoration: underline;
}

.auth-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    height: 46px;
    padding: 0 16px;
    border: 0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.16s var(--lm-ease), box-shadow 0.16s var(--lm-ease), color 0.16s var(--lm-ease);
}

.auth-cta svg {
    width: 20px;
    height: 20px;
    flex: none;
    stroke-width: 2.2;
}

.auth-cta.is-primary {
    background: var(--lm-accent);
    color: #ffffff;
    box-shadow: 0 0 0 1px rgba(130, 180, 255, 0.35), 0 8px 20px rgba(46, 123, 255, 0.32);
}

.auth-cta.is-primary:hover {
    background: var(--lm-accent-hover);
}

.auth-cta.is-light {
    background: #ffffff;
    color: #0B1322;
}

.auth-cta.is-light:hover {
    background: #E8EEFB;
}

.auth-cta:disabled {
    cursor: wait;
    opacity: 0.65;
}

.auth-more {
    display: grid;
    gap: 18px;
    margin-top: 26px;
}

.auth-note {
    color: var(--lm-muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

.auth-otp-form[hidden],
.auth-close-success[hidden] {
    display: none;
}

.auth-otp-head,
.auth-close-success {
    display: grid;
    gap: 7px;
    padding: 14px;
    border: 1px solid rgba(130, 180, 255, 0.16);
    border-radius: 12px;
    background: rgba(10, 16, 31, 0.72);
}

.auth-otp-head strong,
.auth-close-success strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    line-height: 20px;
}

.auth-otp-head span,
.auth-close-success span,
.auth-otp-head small {
    color: var(--lm-muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 17px;
}

.auth-otp-code {
    text-align: center;
    font-size: 22px !important;
    font-weight: 900 !important;
    letter-spacing: 6px;
}

.auth-otp-code[hidden] {
    display: none !important;
}

.auth-otp-boxes {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
}

.auth-otp-digit {
    width: 100%;
    height: 48px;
    border: 1px solid rgba(130, 180, 255, 0.18);
    border-radius: 9px;
    background: rgba(27, 39, 66, 0.82);
    color: #ffffff;
    text-align: center;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    outline: none;
}

.auth-otp-digit:focus {
    border-color: rgba(130, 180, 255, 0.7);
    box-shadow: 0 0 0 3px rgba(46, 123, 255, 0.22);
}

.auth-link-button {
    border: 0;
    background: transparent;
    color: var(--lm-accent-light);
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
}

.auth-link-button:hover {
    color: #ffffff;
}

.auth-split .verify-status {
    margin-bottom: 0;
    background: #10182B;
}

@media (max-width: 980px) {

    .auth-split,
    .auth-split.is-reverse {
        grid-template-columns: minmax(0, 1fr);
    }

    .auth-hero {
        display: none;
    }

    .auth-split.is-reverse .auth-pane {
        order: 0;
    }

    .auth-pane {
        padding-top: 96px;
    }

    .auth-back,
    .auth-split.is-reverse .auth-back {
        top: 26px;
        right: auto;
        left: 24px;
    }
}
