/* ═══════════════════════════════════════════════════════════════════
   LÉVONIER — Sales Division / Join
   Clean. Direct. Premium. Professional.
   ═══════════════════════════════════════════════════════════════════ */

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

:root {
    --bg: #0a0a0a;
    --bg2: #0e0e0e;
    --bg3: #121212;
    --bg4: #161616;
    --white: #f0ede8;
    --white-80: rgba(240, 237, 232, 0.80);
    --white-50: rgba(240, 237, 232, 0.50);
    --white-30: rgba(240, 237, 232, 0.30);
    --white-12: rgba(240, 237, 232, 0.12);
    --white-06: rgba(240, 237, 232, 0.06);
    --white-03: rgba(240, 237, 232, 0.03);
    --accent: #c9a84c;
    --accent-soft: rgba(201, 168, 76, 0.12);
    --accent-dim: rgba(201, 168, 76, 0.5);
    --green: #4ade80;
    --red: #9e6a6a;
    --font: 'Inter', -apple-system, 'Segoe UI', sans-serif;
    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
::selection { background: var(--accent); color: var(--bg); }

body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}


/* ═══════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════ */
.top-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 56px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--white-06);
}

.nav-brand {
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    color: var(--accent);
    text-decoration: none;
}

.nav-tag {
    font-weight: 300;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white-30);
}


/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 48px 80px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 65%);
    pointer-events: none;
}

.hero-content {
    max-width: 720px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.hero-status {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 8px 24px;
    border: 1px solid var(--accent-soft);
    border-radius: 100px;
    opacity: 0;
    animation: up 0.7s var(--ease-out) 0.1s forwards;
}

.hero-h1 {
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--white);
    opacity: 0;
    animation: up 0.7s var(--ease-out) 0.2s forwards;
}

.hero-p {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--white-80);
    max-width: 560px;
    opacity: 0;
    animation: up 0.7s var(--ease-out) 0.35s forwards;
}

.hero-note {
    font-size: 0.62rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--white-30);
    opacity: 0;
    animation: up 0.7s var(--ease-out) 0.6s forwards;
}

.hero-credibility {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--accent);
    opacity: 0;
    animation: up 0.7s var(--ease-out) 0.42s forwards;
}

@keyframes up {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════════
   BUTTON
   ═══════════════════════════════════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font);
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a1505;
    text-decoration: none;
    padding: 16px 40px;
    background: var(--accent);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    opacity: 0;
    animation: up 0.7s var(--ease-out) 0.5s forwards;
    font-weight: 600;
}

.btn-primary:hover {
    background: #d4b35a;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.2);
}

.btn-primary svg {
    transition: transform 0.3s var(--ease);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}


/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */
.block {
    padding: 100px 0;
    background: var(--bg);
}

.block-alt {
    background: var(--bg2);
    border-top: 1px solid var(--white-03);
    border-bottom: 1px solid var(--white-03);
}

.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 48px;
}

.container-center { text-align: center; }
.container.narrow { max-width: 680px; }

.block-label {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.block-h2 {
    font-weight: 300;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    line-height: 1.35;
    letter-spacing: -0.005em;
    color: var(--white);
    margin-bottom: 20px;
}

.block-p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--white-80);
    max-width: 540px;
}


/* ═══════════════════════════════════════════
   FACTS GRID (What This Is)
   ═══════════════════════════════════════════ */
.fact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 48px;
    background: var(--white-06);
    border-radius: 8px;
    overflow: hidden;
}

.fact {
    padding: 36px 32px;
    background: var(--bg);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.fact-marker {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 8px;
    flex-shrink: 0;
    opacity: 0.6;
}

.fact p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--white-80);
}

.fact strong {
    color: var(--white);
    font-weight: 400;
}


/* ═══════════════════════════════════════════
   RESPONSIBILITIES GRID
   ═══════════════════════════════════════════ */
.resp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 48px;
}

.resp-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--white-06);
    display: flex;
    gap: 20px;
    align-items: baseline;
}

.resp-item:nth-child(odd) { padding-right: 32px; }
.resp-item:nth-child(even) { padding-left: 32px; border-left: 1px solid var(--white-06); }

.resp-num {
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--accent-dim);
    flex-shrink: 0;
}

.resp-item p {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--white-80);
}


/* ═══════════════════════════════════════════
   COMPENSATION
   ═══════════════════════════════════════════ */
.comp-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    background: var(--bg2);
    border: 1px solid var(--white-06);
    border-radius: 10px;
    margin: 40px 0 36px;
}

.comp-cell {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.comp-num {
    font-weight: 300;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    letter-spacing: 0.02em;
    color: var(--accent);
    line-height: 1;
}

.comp-label {
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white-30);
}

.comp-sep {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, transparent, var(--white-12), transparent);
    flex-shrink: 0;
}

.comp-details {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 32px;
    margin-bottom: 32px;
}

.comp-details li {
    font-size: 0.78rem;
    color: var(--white-50);
    display: flex;
    align-items: center;
    gap: 8px;
}

.comp-details li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.4;
}

.comp-disclaimer {
    font-size: 0.78rem;
    color: var(--white-30);
    font-style: italic;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

.comp-legal {
    font-size: 0.65rem;
    color: var(--white-30);
    max-width: 480px;
    margin: 12px auto 0;
    line-height: 1.6;
    opacity: 0.6;
}


/* ═══════════════════════════════════════════
   FILTER (Who / Not)
   ═══════════════════════════════════════════ */
.filter-grid {
    display: flex;
    gap: 0;
    margin-top: 48px;
    background: var(--bg3);
    border: 1px solid var(--white-06);
    border-radius: 10px;
    overflow: hidden;
}

.filter-col {
    flex: 1;
    padding: 44px 40px;
}

.filter-line {
    width: 1px;
    background: var(--white-06);
    flex-shrink: 0;
}

.filter-heading {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--white-06);
}

.filter-yes { color: var(--accent); }
.filter-no { color: var(--white-30); }

.filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.filter-list li {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--white-80);
    padding-left: 18px;
    position: relative;
}

.filter-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
}

.filter-list-no li::before {
    background: var(--red);
    opacity: 0.4;
}


/* ═══════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════ */
.timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 56px;
    text-align: left;
}

.tl-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    max-width: 480px;
    width: 100%;
}

.tl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
    background: var(--bg);
}

.tl-connector {
    width: 1px;
    height: 32px;
    background: var(--white-06);
    margin-left: 4.5px;
}

.tl-content h4 {
    font-weight: 400;
    font-size: 0.88rem;
    color: var(--white);
    margin-bottom: 6px;
}

.tl-content p {
    font-size: 0.78rem;
    line-height: 1.7;
    color: var(--white-50);
}


/* ═══════════════════════════════════════════
   APPLICATION FORM
   ═══════════════════════════════════════════ */
.block-form {
    padding: 100px 0 120px;
    background: var(--bg);
    background-image: radial-gradient(ellipse 50% 30% at 50% 0%, rgba(201, 168, 76, 0.02) 0%, transparent 100%);
}

.app-form-wrap {
    background: var(--bg2);
    border: 1px solid var(--white-06);
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
}

form {
    display: flex;
    flex-direction: column;
}

.fg {
    padding: 36px 44px;
    border-bottom: 1px solid var(--white-03);
}

.fg-last { border-bottom: none; }

.fg-title {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--white-03);
    opacity: 0.8;
}

.field { margin-bottom: 24px; }
.field:last-child { margin-bottom: 0; }

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.field-row:last-child { margin-bottom: 0; }
.field-row .field { margin-bottom: 0; }

.field label {
    display: block;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--white-50);
    margin-bottom: 8px;
    transition: color 0.3s var(--ease);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 0;
    font-family: var(--font);
    font-weight: 300;
    font-size: 0.88rem;
    color: var(--white);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--white-06);
    outline: none;
    transition: border-color 0.3s var(--ease);
    border-radius: 0;
    -webkit-appearance: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-bottom-color: var(--accent);
}

.field:has(input:focus) label,
.field:has(select:focus) label,
.field:has(textarea:focus) label {
    color: var(--accent);
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--white-12);
}

.field textarea {
    resize: vertical;
    min-height: 72px;
    line-height: 1.7;
}

.field select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23C9A84C' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 10px;
}

.field select option {
    background: var(--bg2);
    color: var(--white);
}

.field input[type="file"] {
    border: none;
    padding: 10px 0;
    font-size: 0.78rem;
    color: var(--white-30);
    cursor: pointer;
}

.field input[type="file"]::file-selector-button {
    font-family: var(--font);
    font-weight: 400;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white-50);
    background: transparent;
    border: 1px solid var(--white-12);
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    margin-right: 12px;
    transition: all 0.3s var(--ease);
}

.field input[type="file"]::file-selector-button:hover {
    border-color: var(--accent-dim);
    color: var(--accent);
}


/* Submit */
.submit-btn {
    font-family: var(--font);
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a1505;
    background: var(--accent);
    border: none;
    border-radius: 0 0 10px 10px;
    padding: 22px 44px;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    font-weight: 600;
}

.submit-btn:hover {
    background: #d4b35a;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.2);
}

.submit-btn svg { transition: transform 0.3s var(--ease); }
.submit-btn:hover svg { transform: translateX(4px); }

.submit-btn.loading { pointer-events: none; opacity: 0.7; }
.submit-btn.loading span, .submit-btn.loading svg { visibility: hidden; }

.submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 16px; height: 16px;
    border: 2px solid transparent;
    border-top-color: var(--bg);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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


/* ═══════════════════════════════════════════
   CONFIRMATION
   ═══════════════════════════════════════════ */
.confirm {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 80px 0;
}

.confirm.active { display: flex; }

.confirm-icon {
    width: 56px; height: 56px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    opacity: 0;
    animation: pop 0.6s var(--ease-out) forwards;
}

@keyframes pop {
    0% { opacity: 0; transform: scale(0.5); }
    60% { transform: scale(1.08); }
    100% { opacity: 1; transform: scale(1); }
}

.confirm-title {
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--white);
    opacity: 0;
    animation: up 0.7s var(--ease-out) 0.1s forwards;
}

.confirm-body {
    font-size: 0.82rem;
    line-height: 1.8;
    color: var(--white-50);
    text-align: center;
    opacity: 0;
    animation: up 0.7s var(--ease-out) 0.2s forwards;
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.foot { padding: 0 48px 48px; }

.foot-line {
    width: 100%;
    height: 1px;
    background: var(--white-06);
    margin-bottom: 32px;
}

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

.foot-brand {
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: var(--accent);
    opacity: 0.35;
}

.foot-copy {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    color: var(--white-30);
    opacity: 0.5;
}

.foot-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.foot-link {
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white-30);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.foot-link:hover { color: var(--accent); }

.foot-dot {
    color: var(--white-12);
    font-size: 0.7rem;
}


/* ═══════════════════════════════════════════
   WHAT MAKES THIS DIFFERENT
   ═══════════════════════════════════════════ */
.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 48px;
    margin-top: 40px;
    text-align: left;
}

.diff-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--white-03);
    font-size: 0.85rem;
    color: var(--white-80);
}

.diff-icon {
    font-size: 0.4rem;
    color: var(--accent);
    opacity: 0.5;
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════
   BEFORE YOU APPLY
   ═══════════════════════════════════════════ */
.before-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 36px;
}

.before-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg2);
    border: 1px solid var(--white-06);
    border-radius: 6px;
    transition: border-color 0.3s var(--ease);
}

.before-item:hover {
    border-color: var(--accent-soft);
}

.before-icon {
    font-size: 0.35rem;
    color: var(--accent);
    opacity: 0.55;
    margin-top: 5px;
    flex-shrink: 0;
}

.before-item p {
    font-size: 0.84rem;
    line-height: 1.7;
    color: var(--white-80);
}

.before-item strong {
    font-weight: 500;
    color: var(--white);
}


/* ═══════════════════════════════════════════
   VIDEO / FORM EXTRAS
   ═══════════════════════════════════════════ */
.fg-desc {
    font-size: 0.75rem;
    line-height: 1.7;
    color: var(--white-30);
    margin-bottom: 20px;
    font-style: italic;
}

.video-prompt {
    background: var(--bg2);
    border: 1px solid var(--white-06);
    border-radius: 6px;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.video-prompt p {
    font-size: 0.8rem;
    color: var(--white-50);
    margin-bottom: 12px;
    font-weight: 400;
}

.video-prompt ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
}

.video-prompt li {
    font-size: 0.78rem;
    color: var(--white-50);
    padding-left: 18px;
    position: relative;
}

.video-prompt li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-dim);
}


/* ═══════════════════════════════════════════
   FILTER STATEMENT
   ═══════════════════════════════════════════ */
.filter-statement {
    padding: 24px 28px;
    margin-bottom: 0;
    text-align: center;
}

.filter-statement p {
    font-size: 0.72rem;
    line-height: 1.7;
    color: var(--white-30);
    font-style: italic;
    max-width: 480px;
    margin: 0 auto;
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .top-bar { padding: 0 20px; height: 50px; }
    .hero { padding: 100px 20px 60px; }
    .block { padding: 72px 0; }
    .container { padding: 0 20px; }
    
    .fact-grid { grid-template-columns: 1fr; }
    .resp-grid { grid-template-columns: 1fr; }
    .resp-item:nth-child(odd) { padding-right: 0; }
    .resp-item:nth-child(even) { padding-left: 0; border-left: none; }
    
    .comp-bar { flex-direction: column; padding: 36px 24px; gap: 28px; }
    .comp-sep { width: 48px; height: 1px; background: linear-gradient(90deg, transparent, var(--white-12), transparent); }
    
    .filter-grid { flex-direction: column; }
    .filter-line { width: 100%; height: 1px; background: var(--white-06); }
    .filter-col { padding: 32px 28px; }
    
    .field-row { grid-template-columns: 1fr; gap: 24px; }
    .fg { padding: 28px 24px; }
    .submit-btn { padding: 18px 32px; }
    
    .foot-inner { flex-direction: column; gap: 10px; align-items: center; }
    .diff-grid { grid-template-columns: 1fr; }
    .before-item { padding: 16px 20px; }
}

@media (max-width: 480px) {
    .hero-h1 { font-size: 1.6rem; }
    .block-h2 { font-size: 1.3rem; }
}
