:root {
    --lp-bg: #0b1020;
    --lp-card: rgba(255, 255, 255, 0.96);
    --lp-ink: #0f172a;
    --lp-muted: #64748b;
    --lp-border: #e2e8f0;
    --lp-border-strong: #cbd5e1;
    --lp-primary: #4f46e5;
    --lp-primary-2: #7c3aed;
    --lp-primary-dark: #3730a3;
    --lp-accent: #06b6d4;
    --lp-danger: #dc2626;
    --lp-danger-bg: #fef2f2;
    --lp-success: #16a34a;
    --lp-success-bg: #f0fdf4;
    --lp-shadow-card: 0 20px 60px -20px rgba(15, 23, 42, 0.35), 0 8px 24px -12px rgba(15, 23, 42, 0.25);
    --lp-radius: 16px;
    --lp-input-radius: 12px;
    --lp-btn-radius: 12px;
}

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

.lp * {
    box-sizing: border-box;
}

.lp,
.lp body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--lp-ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.lp-page {
    min-height: 100vh;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--lp-bg);
    overflow: hidden;
}

@media (max-width: 991px) {
    .lp-page { grid-template-columns: 1fr; }
}

.lp-hero {
    position: relative;
    padding: 56px 56px;
    color: #fff;
    background-image:
        radial-gradient(ellipse at 20% 15%, rgba(124, 58, 237, 0.55), transparent 55%),
        radial-gradient(ellipse at 80% 90%, rgba(6, 182, 212, 0.45), transparent 60%),
        radial-gradient(ellipse at 50% 50%, rgba(79, 70, 229, 0.35), transparent 70%),
        linear-gradient(135deg, #1e1b4b 0%, #0b1020 55%, #082032 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    isolation: isolate;
}

.lp-hero-custombg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.lp-hero-custombg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.82), rgba(11, 16, 32, 0.82) 55%, rgba(8, 32, 50, 0.82));
    z-index: -1;
}

.lp-hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    mix-blend-mode: overlay;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    z-index: -1;
}

.lp-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: -1;
}
.lp-hero-orb-1 { width: 340px; height: 340px; top: -60px; right: -60px; background: #7c3aed; }
.lp-hero-orb-2 { width: 300px; height: 300px; bottom: -80px; left: -60px; background: #06b6d4; }

.lp-hero-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}
.lp-hero-brand-badge {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
    display: grid;
    place-items: center;
    box-shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.7);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
}

.lp-hero-body {
    max-width: 520px;
}
.lp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #e0e7ff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.lp-hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: #22d3ee;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.25);
}

.lp-hero-title {
    font-size: 44px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    background: linear-gradient(180deg, #fff 0%, #cbd5e1 140%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lp-hero-sub {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(226, 232, 240, 0.85);
    margin-bottom: 28px;
}

.lp-hero-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.lp-hero-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.5;
}
.lp-hero-features i {
    flex: 0 0 22px;
    width: 22px; height: 22px;
    border-radius: 7px;
    background: rgba(34, 211, 238, 0.15);
    color: #22d3ee;
    display: grid; place-items: center;
    font-size: 11px;
    margin-top: 2px;
}

.lp-hero-notice {
    margin-top: 28px;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    max-height: 220px;
    overflow-y: auto;
}
.lp-hero-notice-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #a5f3fc;
    margin-bottom: 10px;
    display: flex; align-items: center; gap: 8px;
}
.lp-hero-notice-item { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.lp-hero-notice-item:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.lp-hero-notice-item h4 { font-size: 14px; color: #fff; margin: 0 0 4px; font-weight: 600; }
.lp-hero-notice-item p { font-size: 13px; color: rgba(226,232,240,0.75); margin: 0; line-height: 1.45; }
.lp-hero-notice-item a.more { color: #67e8f9; font-weight: 600; text-decoration: none; }
.lp-hero-notice-item a.more:hover { text-decoration: underline; }

.lp-hero-foot {
    font-size: 12px;
    color: rgba(203, 213, 225, 0.6);
    letter-spacing: 0.2px;
}

.lp-form-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 32px;
    background: radial-gradient(ellipse at top, #f8fafc 0%, #eef2ff 100%);
    position: relative;
}

.lp-card {
    width: 100%;
    max-width: 420px;
    background: var(--lp-card);
    border-radius: var(--lp-radius);
    padding: 40px 36px;
    box-shadow: var(--lp-shadow-card);
    border: 1px solid rgba(255,255,255,0.6);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(14px);
}

.lp-card-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}
.lp-card-logo img {
    max-height: 64px;
    max-width: 220px;
    object-fit: contain;
}

.lp-card-heading {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: var(--lp-ink);
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.lp-card-sub {
    font-size: 14px;
    color: var(--lp-muted);
    text-align: center;
    margin: 0 0 26px;
}

.lp-alert {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}
.lp-alert-danger { background: var(--lp-danger-bg); color: var(--lp-danger); border: 1px solid #fecaca; }
.lp-alert-success { background: var(--lp-success-bg); color: var(--lp-success); border: 1px solid #bbf7d0; }

.lp-field {
    margin-bottom: 16px;
}
.lp-field-wrap {
    position: relative;
}
.lp-field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    font-size: 14px;
}
.lp-input {
    width: 100%;
    height: 48px;
    padding: 0 14px 0 42px;
    border-radius: var(--lp-input-radius);
    border: 1.5px solid var(--lp-border);
    background: #fff;
    color: var(--lp-ink);
    font-size: 14.5px;
    font-family: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    outline: none;
}
.lp-input::placeholder { color: #94a3b8; }
.lp-input:hover { border-color: var(--lp-border-strong); }
.lp-input:focus {
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
    background: #fff;
}
.lp-input.input-error, .lp-input.is-invalid {
    border-color: var(--lp-danger);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}
.lp-field-error {
    display: block;
    color: var(--lp-danger);
    font-size: 12px;
    margin-top: 6px;
    padding-left: 2px;
}

.lp-captcha {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}
.lp-captcha-img {
    border: 1.5px solid var(--lp-border);
    border-radius: var(--lp-input-radius);
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    height: 48px;
}
.lp-captcha-img img { max-height: 32px; }
.lp-captcha-refresh {
    cursor: pointer;
    color: var(--lp-primary);
    font-size: 15px;
    margin-left: auto;
}

.lp-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
}
.lp-row a { color: var(--lp-primary); text-decoration: none; font-weight: 600; }
.lp-row a:hover { color: var(--lp-primary-dark); text-decoration: underline; }

.lp-btn {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: var(--lp-btn-radius);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    font-family: inherit;
    cursor: pointer;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-2) 100%);
    box-shadow: 0 10px 24px -8px rgba(79, 70, 229, 0.55);
    transition: transform 0.1s ease, box-shadow 0.2s ease, filter 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.lp-btn:hover { filter: brightness(1.05); box-shadow: 0 14px 28px -10px rgba(79, 70, 229, 0.7); }
.lp-btn:active { transform: translateY(1px); }

.lp-divider {
    margin: 24px 0 16px;
    text-align: center;
    font-size: 12px;
    color: var(--lp-muted);
    position: relative;
}
.lp-divider::before, .lp-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: var(--lp-border);
}
.lp-divider::before { left: 0; }
.lp-divider::after { right: 0; }

.lp-card-footer {
    font-size: 12.5px;
    color: var(--lp-muted);
    text-align: center;
}
.lp-card-footer a { color: var(--lp-primary); text-decoration: none; font-weight: 600; }
.lp-card-footer a:hover { text-decoration: underline; }

@media (max-width: 991px) {
    .lp-hero { padding: 36px 28px; min-height: 40vh; }
    .lp-hero-title { font-size: 30px; }
    .lp-hero-body { max-width: 100%; }
    .lp-hero-features { display: none; }
    .lp-hero-notice { max-height: 120px; }
    .lp-form-col { padding: 28px 20px 48px; }
    .lp-card { padding: 28px 22px; }
}
