@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,600,700&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --v2-bg: #ffffff;
    --v2-surface: #f9fafb;
    --v2-surface-hover: #e8e8e8;
    --v2-border: #e0e0e0;
    --v2-text: #0a0a0a;
    --v2-text-muted: #555555;
    --v2-text-subtle: #888888;
    --v2-accent: #3b82f6;
    --v2-accent-hover: #2563eb;
    --v2-white: #ffffff;
    --v2-nav-bg: rgba(255, 255, 255, 0.95);
    --v2-transition-reveal: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    background-color: var(--v2-bg);
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--v2-text);
    line-height: 1.6;
    background-color: var(--v2-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.v2-loading {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.15;
}

.v2-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.v2-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1200px;
    background: var(--v2-nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    padding: 12px 24px;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    opacity: 0;
    pointer-events: none;
}

.v2-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.v2-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--v2-text);
    flex-shrink: 0;
}

.v2-nav-logo img {
    height: 36px;
    width: auto;
}

.v2-nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 1px;
}

.v2-nav-logo-line {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--v2-text);
    line-height: 1.15;
}

.v2-nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.v2-nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.v2-nav-cta-outline {
    color: var(--v2-text);
    border: 1px solid var(--v2-border);
    background: transparent;
}

.v2-nav-cta-outline:hover {
    border-color: #cccccc;
    background: var(--v2-surface);
    transform: scale(1.05) translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.v2-nav-cta-filled {
    color: #ffffff;
    background: #0a0a0a;
    border: 1px solid #0a0a0a;
}

.v2-nav-cta-filled:hover {
    background: #2a2a2a;
    border-color: #2a2a2a;
    transform: scale(1.05) translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.v2-nav-cta-outline svg,
.v2-nav-cta-filled svg {
    margin-left: 5px;
}

.v2-menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: #ffffff;
    border: 1px solid var(--v2-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.v2-menu-toggle:hover {
    background: var(--v2-surface);
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.v2-menu-toggle .v2-dot {
    width: 4px;
    height: 4px;
    background-color: var(--v2-text);
    border-radius: 50%;
}

.v2-menu-overlay {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    width: 220px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    border-radius: 18px;
    padding: 10px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(-8px);
}

.v2-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.v2-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v2-menu-list li {
    padding: 0;
}

.v2-menu-list a {
    display: block;
    color: var(--v2-text);
    text-decoration: none;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 20px;
    transition: background 0.15s ease, color 0.15s ease;
    border-radius: 10px;
    margin: 2px 6px;
}

.v2-menu-list a:hover {
    background: var(--v2-surface);
    color: var(--v2-text);
}

.v2-menu-list li.v2-menu-sub a {
    padding-left: 36px;
    font-size: 0.8rem;
    opacity: 0.75;
}

.v2-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.v2-hero-logo {
    height: 36px;
    width: auto;
    display: block;
    margin: 20px auto;
    position: relative;
    z-index: 1;
}

.v2-hero-title {
    font-family: 'Geist', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--v2-text);
    max-width: 900px;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.08;
    position: relative;
    z-index: 1;
}

.v2-cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background-color: var(--v2-text);
    margin-left: 4px;
    vertical-align: text-bottom;
    animation: v2-blink 0.7s step-end infinite;
}

.v2-cursor.fade-out {
    animation: v2-cursor-fade 1.07s forwards;
}

@keyframes v2-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes v2-cursor-fade {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

.v2-hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--v2-text-muted);
    max-width: 600px;
    margin-bottom: 48px;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.v2-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #0a0a0a;
    color: #ffffff;
    border-radius: 50px;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.v2-hero-cta:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.v2-scroll-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--v2-text-subtle);
    animation: v2-bounce 2s infinite;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    outline: none;
    z-index: 1;
}

.v2-scroll-arrow:focus-visible {
    outline: 2px solid var(--v2-text);
    outline-offset: 4px;
    border-radius: 50%;
}

@keyframes v2-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-6px); }
}

.reveal-after-typing {
    opacity: 0;
    transition: opacity 1.33s ease;
}

.reveal-after-typing.visible {
    opacity: 1;
}

.v2-section {
    padding: 100px 0;
}

.v2-section-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.v2-section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #ffffff;
    background: #0a0a0a;
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 20px;
}

.v2-section-title {
    font-family: 'Geist', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--v2-text);
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.v2-section-body p {
    font-size: 1.05rem;
    color: var(--v2-text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

.v2-section-body p:last-child {
    margin-bottom: 0;
}

.v2-section-divider {
    display: block;
    width: 92%;
    max-width: 1200px;
    height: 1px;
    background: var(--v2-border);
    margin: 0 auto;
    border: none;
}

.v2-footer {
    background: #f9fafb;
    position: relative;
}

.v2-footer-cta {
    text-align: center;
    padding: 80px 24px 72px;
}

.v2-footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 24px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.v2-footer-heading {
    font-family: 'Geist', sans-serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.v2-footer-sub {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: var(--v2-text-muted);
    max-width: 440px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.v2-footer-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    background: #0a0a0a;
    color: #ffffff;
    border-radius: 50px;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.v2-footer-cta-btn:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.v2-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.v2-footer-copy {
    font-size: 0.7rem;
    color: var(--v2-text-subtle);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.v2-footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.v2-footer-links a {
    font-size: 0.7rem;
    color: var(--v2-text-subtle);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.2s ease;
}

.v2-footer-links a:hover {
    color: var(--v2-text);
}

.v2-footer-sep {
    color: var(--v2-text-subtle);
    font-size: 0.7rem;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--v2-transition-reveal), transform 0.8s var(--v2-transition-reveal);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


.v2-page-header {
    padding: 120px 24px 60px;
    text-align: center;
}

.v2-page-title {
    font-family: 'Geist', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--v2-text);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-top: 16px;
}

.v2-page-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--v2-text-muted);
    margin-top: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.v2-page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.v2-content-card {
    background: var(--v2-surface);
    border: 1px solid var(--v2-border);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 16px;
}

.v2-content-card h2 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--v2-text);
    margin-bottom: 16px;
}

.v2-content-card p {
    font-size: 1.05rem;
    color: var(--v2-text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.v2-content-card p:last-child {
    margin-bottom: 0;
}

.v2-content-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.v2-content-card ul:last-child {
    margin-bottom: 0;
}

.v2-content-card li {
    font-size: 1.05rem;
    color: var(--v2-text-muted);
    line-height: 1.75;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.v2-content-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    background: var(--v2-text-subtle);
    border-radius: 50%;
}

.v2-content-card a {
    color: var(--v2-accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.v2-content-card a:hover {
    color: var(--v2-accent-hover);
    text-decoration: underline;
}

.v2-page-cta-wrapper {
    text-align: center;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .v2-nav-cta {
        display: none;
    }

    .v2-hero {
        padding: 100px 20px 60px;
    }

    .v2-section {
        padding: 60px 0;
    }

    .v2-footer-cta {
        padding: 60px 24px 56px;
    }

    .v2-footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 18px 24px;
    }

    .v2-page-header {
        padding: 100px 20px 40px;
    }
}

@media (max-width: 480px) {
    .v2-hero-title {
        font-size: 2rem;
    }

    .v2-section-title {
        font-size: 1.6rem;
    }

    .v2-hero-cta {
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    .v2-nav {
        width: 95%;
        padding: 10px 16px;
    }

    .v2-menu-overlay {
        width: 200px;
    }

    .v2-section-body p {
        font-size: 0.95rem;
        text-align: justify;
        text-align-last: left;
        hyphens: auto;
    }

    .v2-page-title {
        font-size: 1.8rem;
    }

    .v2-content-card {
        padding: 24px;
    }

    .v2-content-card p,
    .v2-content-card li {
        font-size: 0.95rem;
    }
}

.v2-login-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 60px;
    background: radial-gradient(ellipse at 60% 40%, #f0f4ff 0%, var(--v2-bg) 70%);
}

.v2-login-card {
    background: var(--v2-white);
    border: 1px solid var(--v2-border);
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.v2-login-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.v2-login-logo img {
    height: 38px;
    width: auto;
}

.v2-login-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.v2-login-logo-text span {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--v2-text);
    letter-spacing: -0.01em;
}

.v2-login-heading {
    font-family: 'Geist', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--v2-text);
    letter-spacing: -0.02em;
    margin: 0;
}

.v2-login-helper {
    font-size: 0.88rem;
    color: var(--v2-text-muted);
    text-align: center;
    margin: -8px 0 0;
    line-height: 1.5;
}

.v2-login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.v2-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.v2-form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--v2-text-muted);
    letter-spacing: 0.04em;
}

.v2-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--v2-border);
    border-radius: 10px;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.9rem;
    color: var(--v2-text);
    background: var(--v2-surface);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.v2-input:focus {
    outline: none;
    border-color: var(--v2-accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.v2-login-submit {
    width: 100%;
    padding: 13px;
    background: var(--v2-text);
    color: var(--v2-white);
    border: none;
    border-radius: 10px;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.v2-login-submit:hover {
    background: #222;
}

.v2-login-meta {
    font-size: 0.78rem;
    color: var(--v2-text-subtle);
    text-align: center;
}

.v2-login-meta a {
    color: var(--v2-accent);
    text-decoration: none;
}

.v2-login-meta a:hover {
    text-decoration: underline;
}

.v2-mobile-warning {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.v2-mobile-warning-box {
    background: var(--v2-white);
    border: 1px solid var(--v2-border);
    border-radius: 18px;
    padding: 40px 32px;
    max-width: 360px;
    width: 100%;
    text-align: center;
    position: relative;
}

.v2-mobile-warning-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--v2-text-subtle);
    cursor: pointer;
    line-height: 1;
}

.v2-mobile-warning-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--v2-text);
    margin-bottom: 12px;
}

.v2-mobile-warning-text {
    font-size: 0.88rem;
    color: var(--v2-text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.v2-mobile-warning-ok {
    background: var(--v2-accent);
    color: var(--v2-white);
    border: none;
    border-radius: 10px;
    padding: 10px 40px;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.v2-mobile-warning-ok:hover {
    background: var(--v2-accent-hover);
}

@media (max-width: 480px) {
    .v2-login-card {
        padding: 32px 24px;
    }

    .v2-login-heading {
        font-size: 1.4rem;
    }

    .v2-login-helper {
        font-size: 0.82rem;
    }
}

/* ── Lead Overlay ──────────────────────────────────────────────── */

#lo-v2-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

#lo-v2-backdrop.active {
    display: flex;
    animation: lo-backdrop-in 280ms ease forwards;
}

#lo-v2-backdrop.closing {
    animation: lo-backdrop-out 240ms ease forwards;
}

@keyframes lo-backdrop-in {
    from { background: rgba(0, 0, 0, 0); }
    to   { background: rgba(0, 0, 0, 0.5); }
}

@keyframes lo-backdrop-out {
    from { background: rgba(0, 0, 0, 0.5); }
    to   { background: rgba(0, 0, 0, 0); }
}

#lo-v2-modal {
    background: var(--v2-white);
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
    width: calc(100vw - 24px);
    max-width: 1440px;
    height: min(92vh, 960px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    outline: none;
}

#lo-v2-backdrop.active #lo-v2-modal {
    animation: lo-modal-in 320ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

#lo-v2-backdrop.closing #lo-v2-modal {
    animation: lo-modal-out 220ms ease forwards;
}

@keyframes lo-modal-in {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}

@keyframes lo-modal-out {
    from { opacity: 1; transform: translateY(0)   scale(1); }
    to   { opacity: 0; transform: translateY(10px) scale(0.98); }
}

/* ── Header ────────────────────────────────────────────────────── */

.lo-v2-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--v2-text);
    border-radius: 20px 20px 0 0;
    padding: 18px 20px 18px 28px;
    flex-shrink: 0;
}

.lo-v2-header-text {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.lo-v2-header-logo {
    height: 28px;
    width: auto;
    flex-shrink: 0;
    display: block;
}

.lo-v2-header-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--v2-white);
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.lo-v2-header-pipe {
    color: rgba(255, 255, 255, 0.35);
    font-size: 1rem;
    flex-shrink: 0;
}

.lo-v2-header-sub {
    font-family: 'Satoshi', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lo-v2-close {
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}

.lo-v2-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--v2-white);
}

/* ── Body ──────────────────────────────────────────────────────── */

.lo-v2-body {
    flex: 1;
    overflow-y: auto;
    padding: 28px 32px 20px;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.lo-v2-step {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Engage: single-column form */
#lo-v2-step-engage .lo-v2-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Guide: two-column split */
.lo-v2-split {
    display: grid;
    grid-template-columns: 1fr 42%;
    gap: 36px;
    align-items: stretch;
    flex: 1;
}

.lo-v2-split-form .lo-v2-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Guide thumbnail — centred book cover, natural 3:4 proportion */
.lo-v2-split-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lo-v2-thumb-cover {
    background: linear-gradient(160deg, #0d1b45 0%, #1a3578 55%, #0d1b45 100%);
    border-radius: 14px;
    aspect-ratio: 3 / 4;
    height: clamp(300px, 58vh, 520px);
    width: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 26px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.22);
}

.lo-v2-thumb-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(100, 140, 255, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.lo-v2-thumb-brand {
    font-family: 'Satoshi', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lo-v2-thumb-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lo-v2-thumb-kicker {
    font-family: 'Satoshi', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lo-v2-thumb-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--v2-white);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Form elements */
.lo-v2-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lo-v2-form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lo-v2-form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--v2-text-muted);
    letter-spacing: 0.03em;
}

.lo-req {
    color: #ef4444;
}

.lo-opt {
    font-weight: 400;
    color: var(--v2-text-subtle);
}

.lo-textarea {
    min-height: 80px;
    resize: vertical;
}

.lo-v2-form-group.lo-error input,
.lo-v2-form-group.lo-error textarea {
    border-color: #ef4444;
}

.lo-error-msg {
    display: none;
    font-size: 0.72rem;
    color: #ef4444;
}

.lo-v2-form-group.lo-error .lo-error-msg {
    display: block;
}

/* ── Footer ────────────────────────────────────────────────────── */

.lo-v2-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--v2-border);
    padding: 14px 20px 14px 20px;
    background: var(--v2-surface);
    border-radius: 0 0 20px 20px;
    flex-shrink: 0;
}

.lo-v2-footer.hidden {
    display: none;
}

/* Tab pills — bottom left */
.lo-v2-tab-bar {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.lo-v2-tab-bar button {
    padding: 8px 18px;
    background: #b8b8b8 !important;
    border: none !important;
    border-radius: 999px;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff !important;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}

.lo-v2-tab-bar button:hover {
    background: #a0a0a0 !important;
    color: #ffffff !important;
}

.lo-v2-tab-bar button.active {
    background: #888888 !important;
    color: #ffffff !important;
}

/* Footer actions — bottom right */
.lo-v2-footer-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.lo-v2-submit-error {
    display: none;
    font-size: 0.75rem;
    color: #ef4444;
}

.lo-v2-submit-error.visible {
    display: block;
}

.lo-v2-cancel-btn {
    padding: 9px 20px;
    background: none;
    border: 1.5px solid var(--v2-border);
    border-radius: 999px;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--v2-text-muted);
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
}

.lo-v2-cancel-btn:hover {
    border-color: var(--v2-text);
    color: var(--v2-text);
}

.lo-v2-submit-btn {
    padding: 10px 26px;
    background: var(--v2-text);
    border: none;
    border-radius: 999px;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--v2-white);
    cursor: pointer;
    transition: background 0.15s, opacity 0.15s;
}

.lo-v2-submit-btn:hover:not(:disabled) {
    background: #222;
}

.lo-v2-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ── Success ────────────────────────────────────────────────────── */

.lo-v2-success-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 14px;
    min-height: 260px;
}

.lo-v2-success-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--v2-text);
    letter-spacing: -0.03em;
}

.lo-v2-success-body {
    font-size: 0.9rem;
    color: var(--v2-text-muted);
    line-height: 1.6;
    max-width: 380px;
}

/* ── Responsive ─────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .lo-v2-split {
        grid-template-columns: 1fr;
    }

    .lo-v2-split-thumb {
        display: none;
    }

    .lo-v2-header-sub {
        display: none;
    }

    .lo-v2-header-pipe {
        display: none;
    }
}

@media (max-width: 600px) {
    #lo-v2-backdrop {
        padding: 0;
        align-items: flex-end;
    }

    #lo-v2-modal {
        width: 100vw;
        height: 92vh;
        border-radius: 20px 20px 0 0;
    }

    .lo-v2-footer {
        border-radius: 0;
        flex-wrap: wrap;
        gap: 10px;
    }

    .lo-v2-tab-bar {
        order: 2;
        width: 100%;
        justify-content: flex-start;
    }

    .lo-v2-footer-actions {
        order: 1;
        width: 100%;
        justify-content: flex-end;
    }

    .lo-v2-row {
        grid-template-columns: 1fr;
    }
}

/* ── Download Guide tab: hidden until resource is ready ─────────── */
/* Re-enable by removing this rule when the guide PDF is live */
.lo-v2-tab-bar button[data-tab="guide"] {
    display: none !important;
}

/* ── Tab switch fade-in ──────────────────────────────────────────── */

@keyframes lo-tab-fade-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.lo-v2-step.lo-tab-fade {
    animation: lo-tab-fade-in 220ms ease forwards;
}

/* ── Disclaimer ─────────────────────────────────────────────────── */

.lo-v2-disclaimer {
    font-size: 0.78rem;
    color: rgba(0, 0, 0, 0.4);
    line-height: 1.55;
    margin-top: 8px;
}

.lo-v2-disclaimer a {
    color: inherit;
    text-decoration: underline;
}

/* ── File upload section ─────────────────────────────────────────── */

.lo-v2-upload-section {
    margin-top: 4px;
}

.lo-v2-upload-label {
    font-family: 'Satoshi', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--v2-text);
    margin-bottom: 4px;
}

.lo-v2-upload-hint {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.42);
    line-height: 1.55;
    margin-bottom: 10px;
}

.lo-v2-upload-hint a {
    color: inherit;
    text-decoration: underline;
}

.lo-v2-dropzone {
    border: 1.5px dashed rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    user-select: none;
}

.lo-v2-dropzone:hover,
.lo-v2-dropzone.drag-over {
    border-color: var(--v2-text);
    background: rgba(0, 0, 0, 0.02);
}

.lo-v2-dropzone-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
    opacity: 0.35;
    display: block;
}

.lo-v2-dropzone-text {
    font-size: 0.82rem;
    color: rgba(0, 0, 0, 0.5);
    margin: 0;
}

.lo-v2-dropzone-text a {
    color: var(--v2-text);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.lo-v2-dropzone-sub {
    font-size: 0.74rem;
    color: rgba(0, 0, 0, 0.32);
    margin: 4px 0 0;
}

.lo-v2-dropzone-filename {
    font-size: 0.8rem;
    color: var(--v2-text);
    font-weight: 500;
    margin: 6px 0 0;
    min-height: 1.2em;
}

/* ── End Lead Overlay ──────────────────────────────────────────── */

.v2-page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
}

.v2-page-transition-overlay.fade-out {
    animation: v2-fade-to-black 300ms ease forwards;
}

.v2-page-transition-overlay.fade-in {
    opacity: 1;
    animation: v2-fade-from-black 300ms ease forwards;
}

@keyframes v2-fade-to-black {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes v2-fade-from-black {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* ── Privacy Policy Accordions ──────────────────────────────────── */

.pp-accordion-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.pp-accordion {
    background: var(--v2-surface);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
}

.pp-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Geist', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--v2-text);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 150ms;
}

.pp-accordion-btn:hover {
    background: rgba(0, 0, 0, 0.025);
}

.pp-accordion-btn h2 {
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
    line-height: inherit;
}

.pp-accordion-chevron {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--v2-text-muted);
    transition: transform 220ms ease;
}

.pp-accordion.open .pp-accordion-chevron {
    transform: rotate(180deg);
}

.pp-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
}

.pp-accordion-body-inner {
    padding: 4px 24px 24px;
    color: var(--v2-text-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.pp-accordion-body-inner p {
    margin-bottom: 16px;
}

.pp-accordion-body-inner p:last-child {
    margin-bottom: 0;
}

.pp-accordion-body-inner ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.pp-accordion-body-inner li {
    margin-bottom: 6px;
}

.pp-accordion-body-inner a {
    color: var(--v2-text);
    text-decoration: underline;
}

/* ── PDF download button ─────────────────────────────────────────── */

.pp-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 12px 26px;
    background: var(--v2-text);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.15s;
}

.pp-pdf-btn:hover {
    opacity: 0.82;
}

.pp-pdf-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

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