.landing-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 24px 0;
}

.landing-brand { display: inline-flex; align-items: center; gap: 13px; color: var(--text); font-size: 22px; font-weight: 750; letter-spacing: -.025em; text-decoration: none; }
.landing-brand img { width: 44px; height: 44px; border-radius: 11px; }

.content-center {
    min-height: calc(100vh - 100px);
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(340px, .7fr);
    align-items: start;
    gap: clamp(36px, 7vw, 96px);
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: clamp(44px, 7vw, 84px) 0 90px;
}

.auth-card {
    position: sticky;
    top: 32px;
    width: min(100%, 430px);
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 18px 50px rgb(0 0 0 / 8%);
}

.landing-copy { min-width: 0; }
.landing-eyebrow { display: flex; align-items: center; gap: 8px; margin: 0 0 14px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.landing-eyebrow > span { width: 7px; height: 7px; border-radius: 50%; background: #2f8f4e; box-shadow: 0 0 0 4px #dff4e5; }
.landing-copy > h1 { max-width: 760px; margin-bottom: 18px; font-size: clamp(38px, 5.4vw, 68px); line-height: 1.02; letter-spacing: -.05em; }
.landing-intro { max-width: 720px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.landing-actions { display: flex; align-items: center; gap: 18px; margin-top: 26px; }
.landing-actions .btn { display: inline-flex; align-items: center; text-decoration: none; }
.landing-text-link { color: var(--muted); font-size: 13px; font-weight: 600; text-decoration: none; }

.landing-demo { overflow: hidden; margin-top: 42px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); box-shadow: 0 24px 60px rgb(0 0 0 / 9%); }
.landing-demo-bar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 45px; padding: 0 16px; border-bottom: 1px solid #e7e7e4; background: #f6f6f4; font-size: 11px; }
.landing-demo-bar > div { display: flex; gap: 5px; }
.landing-demo-bar i { width: 7px; height: 7px; border-radius: 50%; background: #c8c8c3; }
.landing-demo-bar > span { justify-self: end; color: var(--muted); }
.landing-demo-content { padding: 22px; }
.landing-demo-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.landing-demo-stats p { display: flex; align-items: center; justify-content: space-between; margin: 0; padding: 11px 12px; border: 1px solid var(--line); border-radius: 9px; background: #fafaf9; font-size: 11px; }
.landing-demo-stats span { color: var(--muted); }
.landing-demo-heading { display: flex; justify-content: space-between; margin-top: 22px; padding: 0 4px 8px; color: var(--muted); font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.landing-demo-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 11px 4px; border-top: 1px solid var(--line); }
.landing-demo-row div { min-width: 0; }
.landing-demo-row div strong, .landing-demo-row div span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.landing-demo-row div strong { font-size: 12px; }
.landing-demo-row div span { margin-top: 3px; color: var(--muted); font-size: 10px; }
.demo-pill { padding: 4px 8px; border-radius: 999px; font-size: 9px; font-style: normal; font-weight: 700; }
.demo-pill.interview { background: #fff1c7; color: #745400; }
.demo-pill.applied { background: #e7efff; color: #275395; }
.demo-pill.offer { background: #dff4e5; color: #176733; }

.landing-features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 40px; }
.landing-features article { padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.landing-features article > span { display: block; margin-bottom: 20px; color: #9a9a94; font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.landing-features h2 { font-size: 15px; line-height: 1.3; }
.landing-features p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.landing-faq { margin-top: 46px; }
.landing-faq > h2 { margin-bottom: 14px; font-size: 22px; }
.landing-faq details { padding: 14px 0; border-top: 1px solid var(--line); }
.landing-faq details:last-child { border-bottom: 1px solid var(--line); }
.landing-faq summary { font-weight: 600; cursor: pointer; }
.landing-faq details p { margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.auth-card-eyebrow { margin: 0 0 8px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.auth-card #login-title { font-size: 28px; }

.content-center.standalone-auth-layout {
    grid-template-columns: minmax(0, 560px);
    justify-content: center;
    min-height: calc(100vh - 190px);
    padding-top: 34px;
}

.standalone-auth-layout .auth-card {
    position: static;
    width: 100%;
}

@media (min-width: 901px) {
    .auth-card {
        width: 100%;
        padding: 34px;
        border-color: #d2d2cd;
        background: #efefeb;
        box-shadow: none;
    }

    .auth-card::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: -36px;
        width: 1px;
        background: var(--line);
    }

    .auth-card input {
        background: #fff;
    }
}

@media (max-width: 900px) {
    .content-center { grid-template-columns: 1fr; width: min(100%, 720px); }
    .auth-card { position: static; width: 100%; }
}

@media (max-width: 600px) {
    .landing-nav { padding: 15px 0; }
    .landing-brand { gap: 10px; font-size: 19px; }
    .landing-brand img { width: 36px; height: 36px; border-radius: 9px; }
    .content-center { min-height: auto; place-items: start stretch; gap: 36px; padding: 36px 0 24px; }
    .landing-copy > h1 { font-size: 40px; }
    .landing-intro { font-size: 16px; }
    .landing-actions { align-items: stretch; flex-direction: column; gap: 12px; }
    .landing-actions .btn { justify-content: center; }
    .landing-text-link { text-align: center; }
    .landing-demo { margin-top: 34px; border-radius: 13px; box-shadow: none; }
    .landing-demo-bar { grid-template-columns: 1fr auto; padding: 0 12px; }
    .landing-demo-bar > strong { justify-self: end; }
    .landing-demo-bar > span { display: none; }
    .landing-demo-content { padding: 14px; }
    .landing-demo-stats { gap: 6px; }
    .landing-demo-stats p { align-items: flex-start; flex-direction: column; gap: 4px; padding: 9px 8px; }
    .landing-features { grid-template-columns: 1fr; gap: 10px; margin-top: 30px; }
    .landing-faq { margin-top: 34px; }
    .auth-card { width: 100%; border: 0; padding: 0; background: transparent; box-shadow: none; }
    .auth-card h2 { font-size: 34px; line-height: 1.08; }
    .auth-card .muted { margin-bottom: 28px; }
    .auth-card .btn { width: 100%; margin-top: 4px; }
    .helper-text { margin-top: 18px; font-size: 15px; }
}
