/**
 * /get-started — full-viewport split layout with multi-step form.
 */
html {
    height: 100%;
}

body.pl-get-started {
    --pl-gs-bg: #ffffff;
    --pl-gs-text: #0e0e0e;
    --pl-gs-muted: #6f6f6f;
    --pl-gs-muted-2: #949494;
    --pl-gs-border: #e4e4e4;
    --pl-gs-accent: #1774ff;
    --pl-gs-visual: #0a0a0a;
    --pl-gs-font: "Helvetica Neue", Helvetica, Arial, sans-serif;

    margin: 0;
    min-height: 100%;
    min-height: 100dvh;
    background: var(--pl-gs-bg);
    color: var(--pl-gs-text);
    font-family: var(--pl-gs-font);
    -webkit-font-smoothing: antialiased;
}

.pl-get-started__shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 100vh;
    min-height: 100dvh;
    width: 100vw;
    overflow: hidden;
}

/* ── Left visual panel ── */
.pl-get-started__visual {
    position: relative;
    overflow: hidden;
    background: var(--pl-gs-visual);
    color: #fff;
}

.pl-get-started__paths {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pl-get-started__visual-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: clamp(32px, 6vh, 56px);
    height: 100%;
    padding: clamp(28px, 4vw, 48px);
}

.pl-get-started__visual-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pl-get-started__panel-signin--mobile {
    display: none;
}

.pl-get-started__visual-logo {
    display: inline-flex;
    flex-shrink: 0;
}

.pl-get-started__visual-logo img {
    display: block;
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
}

.pl-get-started__visual-copy {
    max-width: 28rem;
    padding-top: clamp(12px, 3vh, 32px);
}

.pl-get-started__visual-eyebrow {
    margin: 0 0 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.pl-get-started__visual-title {
    margin: 0 0 16px;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.pl-get-started__path-hub {
    display: inline-block;
    vertical-align: -0.08em;
    width: 0.18em;
    height: 0.18em;
    margin-left: 0.02em;
    transform: translate(-4px, -2px);
    border-radius: 50%;
    background: rgba(200, 130, 255, 1);
    box-shadow: 0 0 6px rgba(200, 130, 255, 0.55);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.pl-get-started__visual-lead {
    margin: 0;
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.68);
}

/* ── Right form panel ── */
.pl-get-started__panel {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: auto;
    background: var(--pl-gs-bg);
}

.pl-get-started__panel-head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-shrink: 0;
    padding: clamp(20px, 3vw, 32px) clamp(24px, 5vw, 56px) 0;
}

.pl-get-started__panel-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: clamp(24px, 8vh, 72px) clamp(24px, 5vw, 56px) clamp(24px, 4vh, 40px);
}

.pl-get-started__panel-signin {
    margin: 0;
    font-size: 13px;
    color: var(--pl-gs-muted);
}

.pl-get-started__panel-signin a {
    color: var(--pl-gs-text);
    font-weight: 600;
    text-decoration: none;
}

.pl-get-started__panel-signin a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pl-get-started__form-wrap {
    width: min(100%, 520px);
    margin: 0 auto;
    box-sizing: border-box;
}

.pl-get-started__success {
    width: min(100%, 520px);
    margin: 0 auto;
    box-sizing: border-box;
}

.pl-get-started__form {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.pl-get-started__intro {
    margin-bottom: 28px;
    min-height: 7.5rem;
}

.pl-get-started__title {
    margin: 0 0 8px;
    font-size: clamp(26px, 3.5vw, 34px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.15;
    min-height: 1.15em;
}

.pl-get-started__lead {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--pl-gs-muted);
    min-height: 3.1em;
}

.pl-get-started__eyebrow {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pl-gs-muted);
}

/* Progress — horizontal stepper */
.pl-get-started__progress {
    margin-bottom: 28px;
}

.pl-get-started__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
}

.pl-get-started__steps li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    min-width: 0;
}

.pl-get-started__steps-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--pl-gs-border);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    color: var(--pl-gs-muted-2);
    background: #fff;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.pl-get-started__steps-name {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--pl-gs-muted-2);
    transition: color 0.2s ease;
}

.pl-get-started__steps li.is-active .pl-get-started__steps-marker {
    border-color: var(--pl-gs-text);
    color: var(--pl-gs-text);
}

.pl-get-started__steps li.is-active .pl-get-started__steps-name {
    color: var(--pl-gs-text);
}

.pl-get-started__steps li.is-complete .pl-get-started__steps-marker {
    background: var(--pl-gs-text);
    border-color: var(--pl-gs-text);
    color: #fff;
}

.pl-get-started__steps li.is-complete .pl-get-started__steps-name {
    color: var(--pl-gs-muted);
}

.pl-get-started__progress-track {
    height: 3px;
    background: #f0f0f0;
    border-radius: 999px;
    overflow: hidden;
}

.pl-get-started__progress-fill {
    display: block;
    height: 100%;
    background: var(--pl-gs-text);
    border-radius: inherit;
    transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Form steps — one column, one step visible */
.pl-get-started__steps-viewport {
    width: 100%;
    min-height: 17.5rem;
}

.pl-get-started__step {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 17.5rem;
}

.pl-get-started__step[hidden] {
    display: none;
}

.pl-get-started__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.pl-get-started__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pl-gs-muted);
}

.pl-get-started__label--required::after {
    content: " *";
    color: #c2410c;
}

.pl-get-started__input,
.pl-get-started__select {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--pl-gs-border);
    border-radius: 8px;
    background: #fff;
    color: var(--pl-gs-text);
    font-family: inherit;
    font-size: 15px;
    line-height: 1.4;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pl-get-started__input::placeholder {
    color: var(--pl-gs-muted-2);
}

.pl-get-started__input:focus,
.pl-get-started__select:focus {
    outline: none;
    border-color: var(--pl-gs-text);
    box-shadow: inset 0 0 0 1px var(--pl-gs-text);
}

.pl-get-started__select-wrap {
    position: relative;
    min-width: 0;
}

.pl-get-started__select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.pl-get-started__select-wrap::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid var(--pl-gs-muted);
    border-bottom: 1.5px solid var(--pl-gs-muted);
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.pl-get-started__review {
    padding: 18px 20px;
    border: 1px solid var(--pl-gs-border);
    border-radius: 10px;
    background: #fafafa;
}

.pl-get-started__review-label {
    margin: 0 0 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pl-gs-muted);
}

.pl-get-started__review-list {
    margin: 0;
    display: grid;
    gap: 10px;
}

.pl-get-started__review-list div {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 8px;
    align-items: baseline;
}

.pl-get-started__review-list dt {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--pl-gs-muted-2);
}

.pl-get-started__review-list dd {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--pl-gs-text);
    word-break: break-word;
}

.pl-get-started__error {
    margin: 16px 0 0;
    padding: 12px 14px;
    border-left: 3px solid var(--pl-gs-text);
    background: #f5f5f5;
    font-size: 14px;
    line-height: 1.45;
}

.pl-get-started__error[hidden] {
    display: none;
}

.pl-get-started__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
    flex-shrink: 0;
}

.pl-get-started__btn[hidden] {
    display: none !important;
}

.pl-get-started__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 28px;
    border: none;
    border-radius: 0;
    background: var(--pl-gs-text);
    color: #fff;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.2s ease, transform 0.15s ease;
}

.pl-get-started__btn--primary {
    min-width: 148px;
}

.pl-get-started__btn--ghost {
    margin-right: auto;
    min-width: 96px;
    background: #fff;
    color: var(--pl-gs-text);
    border: 1px solid #d4d4d4;
}

.pl-get-started__btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--pl-gs-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.pl-get-started__btn:hover:not(:disabled) {
    background: #1a1a1a;
}

.pl-get-started__btn:hover:not(:disabled)::before {
    transform: scaleX(1);
}

.pl-get-started__btn:active:not(:disabled) {
    transform: scale(0.995);
}

.pl-get-started__btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.pl-get-started__btn--ghost::before {
    display: none;
}

.pl-get-started__btn--ghost:hover:not(:disabled) {
    background: #fafafa;
    border-color: var(--pl-gs-text);
}

.pl-get-started__powered {
    margin: 18px 0 0;
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
    color: var(--pl-gs-muted-2);
}

.pl-get-started__botcheck {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Success */
.pl-get-started__success[hidden] {
    display: none;
}

.pl-get-started__success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #0e0e0e;
    color: #fff;
}

.pl-get-started__success-title {
    margin: 0 0 10px;
    font-size: clamp(26px, 3.5vw, 32px);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.pl-get-started__success-copy {
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--pl-gs-muted);
    max-width: 36em;
}

.pl-get-started__success .pl-get-started__btn {
    flex: 0 0 auto;
    width: 100%;
    max-width: 280px;
}

/* Mobile: stack with visual on top */
@media (max-width: 900px) {
    .pl-get-started__shell {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        min-height: 100dvh;
        width: 100%;
        overflow: auto;
    }

    .pl-get-started__visual {
        min-height: auto;
        padding-bottom: 8px;
    }

    .pl-get-started__visual-inner {
        justify-content: flex-start;
        gap: 20px;
        padding-bottom: 28px;
    }

    .pl-get-started__panel-signin--desktop {
        display: none;
    }

    .pl-get-started__panel-signin--mobile {
        display: block;
        margin: 0;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.72);
        text-align: right;
        flex-shrink: 0;
    }

    .pl-get-started__panel-signin--mobile a {
        color: #fff;
    }

    .pl-get-started__panel-head {
        display: none;
    }

    .pl-get-started__visual-title {
        font-size: clamp(24px, 7vw, 32px);
    }

    .pl-get-started__panel-body {
        align-items: flex-start;
        padding-top: 28px;
        padding-bottom: 24px;
    }

    .pl-get-started__intro {
        margin-bottom: 14px;
        min-height: 0;
    }

    .pl-get-started__lead {
        min-height: 0;
    }

    .pl-get-started__progress {
        margin-bottom: 18px;
    }

    .pl-get-started__eyebrow {
        display: none;
    }

    .pl-get-started__panel {
        overflow: visible;
    }

    .pl-get-started__form-wrap,
    .pl-get-started__success {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .pl-get-started__actions {
        flex-wrap: wrap;
    }

    .pl-get-started__btn--ghost {
        margin-right: auto;
    }

    .pl-get-started__btn--primary {
        min-width: 148px;
    }
}
