:root {
    --vr-primary: #4f46e5;
    --vr-primary-dark: #312e81;
    --vr-text: #172033;
    --vr-muted: #667085;
    --vr-border: #e5e7eb;
    --vr-bg: #f4f6fb;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--vr-text);
    font-family: Arial, Helvetica, sans-serif;
}

.vendor-registration-body {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at top right,
            rgba(79, 70, 229, 0.12),
            transparent 30%
        ),
        var(--vr-bg);
}

.vendor-registration-shell {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
    min-height: 100vh;
}

.vendor-registration-hero {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 55px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            #111827,
            #312e81 56%,
            #4f46e5
        );
}

.vendor-registration-hero-content {
    max-width: 540px;
}

.vendor-registration-badge {
    display: inline-flex;
    padding: 6px 11px;
    color: inherit;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid currentColor;
    border-radius: 999px;
    opacity: 0.9;
}

.vendor-registration-hero h1 {
    margin: 20px 0 15px;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.12;
}

.vendor-registration-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.8;
}

.vendor-registration-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 31px;
}

.vendor-registration-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.09);
}

.vendor-registration-features i {
    font-size: 18px;
}

.vendor-registration-form-section {
    padding: 35px;
}

.vendor-registration-form-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid var(--vr-border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.08);
}

.vendor-registration-form-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eef0f3;
}

.vendor-registration-form-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: grid;
    place-items: center;
    color: var(--vr-primary);
    font-size: 21px;
    border-radius: 15px;
    background: #eef2ff;
}

.vendor-registration-form-header h2 {
    margin: 0 0 5px;
    font-size: 24px;
    font-weight: 900;
}

.vendor-registration-form-header p {
    margin: 0;
    color: var(--vr-muted);
    font-size: 12px;
}

.vendor-registration-alert {
    display: flex;
    gap: 9px;
    font-size: 12px;
    border-radius: 12px;
}

.vendor-registration-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
}

.vendor-registration-section-title > span {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    border-radius: 11px;
    background:
        linear-gradient(
            135deg,
            var(--vr-primary-dark),
            var(--vr-primary)
        );
}

.vendor-registration-section-title h3 {
    margin: 0 0 3px;
    font-size: 16px;
    font-weight: 900;
}

.vendor-registration-section-title p {
    margin: 0;
    color: var(--vr-muted);
    font-size: 10px;
}

.vendor-registration-divider {
    margin: 28px 0;
    border-top: 1px solid #eef0f3;
}

.vendor-public-label {
    display: block;
    margin-bottom: 7px;
    color: #344054;
    font-size: 11px;
    font-weight: 800;
}

.vendor-public-label span {
    color: #dc2626;
}

.vendor-public-control {
    min-height: 45px;
    color: #344054;
    font-size: 12px;
    border: 1px solid #dfe3ea;
    border-radius: 11px;
}

textarea.vendor-public-control {
    min-height: auto;
    resize: vertical;
}

.vendor-public-control:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.10);
}

.vendor-public-slug {
    display: flex;
    height: 45px;
    overflow: hidden;
    border: 1px solid #dfe3ea;
    border-radius: 11px;
}

.vendor-public-slug:focus-within {
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.10);
}

.vendor-public-slug span {
    display: flex;
    align-items: center;
    padding: 0 13px;
    color: #667085;
    font-weight: 800;
    border-right: 1px solid #e5e7eb;
    background: #f8fafc;
}

.vendor-public-slug input {
    width: 100%;
    padding: 0 12px;
    border: none;
    outline: none;
    font-size: 12px;
}

.vendor-public-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 25px 0 18px;
    padding: 14px;
    color: #475467;
    font-size: 11px;
    line-height: 1.6;
    border: 1px solid #c7d2fe;
    border-radius: 12px;
    background: #eef2ff;
}

.vendor-public-terms input {
    margin-top: 3px;
}

.vendor-public-submit {
    width: 100%;
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    border: none;
    border-radius: 12px;
    background:
        linear-gradient(
            135deg,
            var(--vr-primary-dark),
            var(--vr-primary)
        );
    box-shadow: 0 12px 25px rgba(79, 70, 229, 0.23);
}

.vendor-success-wrapper {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 25px;
}

.vendor-success-card {
    width: 100%;
    max-width: 720px;
    padding: 38px;
    text-align: center;
    border: 1px solid var(--vr-border);
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(17, 24, 39, 0.10);
}

.vendor-success-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    color: #ffffff;
    font-size: 34px;
    border-radius: 22px;
    background: linear-gradient(135deg, #047857, #10b981);
    box-shadow: 0 13px 28px rgba(16, 185, 129, 0.25);
}

.vendor-success-card .vendor-registration-badge {
    color: var(--vr-primary);
}

.vendor-success-card h1 {
    margin: 18px 0 10px;
    font-size: 31px;
    font-weight: 900;
}

.vendor-success-card > p {
    max-width: 540px;
    margin: 0 auto;
    color: var(--vr-muted);
    font-size: 13px;
    line-height: 1.7;
}

.vendor-success-information {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin: 28px 0;
    text-align: left;
}

.vendor-success-information > div {
    padding: 13px;
    border: 1px solid #eef0f3;
    border-radius: 12px;
    background: #f8fafc;
}

.vendor-success-information span,
.vendor-success-information strong {
    display: block;
}

.vendor-success-information span {
    margin-bottom: 4px;
    color: #98a2b3;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.vendor-success-information strong {
    overflow-wrap: anywhere;
    color: #344054;
    font-size: 12px;
}

.vendor-success-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 18px;
    padding: 13px;
    text-align: left;
    color: #475467;
    font-size: 11px;
    line-height: 1.6;
    border: 1px solid #c7d2fe;
    border-radius: 12px;
    background: #eef2ff;
}

.vendor-success-note i {
    color: var(--vr-primary);
}

.vendor-success-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 17px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 11px;
    background:
        linear-gradient(
            135deg,
            var(--vr-primary-dark),
            var(--vr-primary)
        );
}

@media (max-width: 991.98px) {
    .vendor-registration-shell {
        grid-template-columns: 1fr;
    }

    .vendor-registration-hero {
        position: static;
        height: auto;
        min-height: 430px;
    }
}

@media (max-width: 575.98px) {
    .vendor-registration-hero,
    .vendor-registration-form-section {
        padding: 22px;
    }

    .vendor-registration-form-card,
    .vendor-success-card {
        padding: 21px;
        border-radius: 18px;
    }

    .vendor-registration-features,
    .vendor-success-information {
        grid-template-columns: 1fr;
    }

    .vendor-registration-hero h1 {
        font-size: 35px;
    }

    .vendor-success-card h1 {
        font-size: 24px;
    }
}
/* Vendor Partner Landing v2 */
.vr-landing-hero{padding:72px max(24px,6vw);color:#fff;background:radial-gradient(circle at 80% 15%,rgba(52,211,153,.25),transparent 22%),linear-gradient(135deg,#071329,#18275f 55%,#4f46e5);display:grid;grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr);gap:44px;align-items:center}.vr-hero-copy{max-width:720px}.vr-kicker{display:inline-flex;padding:8px 13px;border:1px solid rgba(255,255,255,.24);border-radius:999px;font-size:11px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;background:rgba(255,255,255,.08)}.vr-hero-copy h1{font-size:clamp(38px,5vw,70px);line-height:1.05;margin:22px 0 18px;font-weight:950}.vr-hero-copy p{font-size:17px;line-height:1.8;color:rgba(255,255,255,.78);max-width:650px}.vr-hero-actions{display:flex;align-items:center;gap:18px;flex-wrap:wrap;margin-top:28px}.vr-primary-cta{display:inline-flex;align-items:center;gap:9px;padding:14px 20px;border-radius:13px;background:#fff;color:#2832a8;font-weight:900;text-decoration:none;box-shadow:0 15px 35px rgba(0,0,0,.18)}.vr-hero-actions>span{font-size:12px;color:rgba(255,255,255,.76)}.vr-benefit-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:13px}.vr-benefit-grid article{padding:18px;border:1px solid rgba(255,255,255,.14);border-radius:18px;background:rgba(255,255,255,.09);backdrop-filter:blur(12px)}.vr-benefit-grid i{font-size:22px;display:block;margin-bottom:13px}.vr-benefit-grid b{display:block;font-size:14px}.vr-benefit-grid small{display:block;margin-top:5px;color:rgba(255,255,255,.68)}.vr-how{max-width:1080px;margin:-25px auto 20px;position:relative;display:grid;grid-template-columns:repeat(3,1fr);gap:12px;padding:0 22px}.vr-how>div{padding:18px;background:#fff;border:1px solid #e8eaf0;border-radius:16px;box-shadow:0 12px 30px rgba(15,23,42,.08);display:grid;grid-template-columns:42px 1fr;column-gap:12px}.vr-how span{grid-row:1/3;width:42px;height:42px;display:grid;place-items:center;border-radius:12px;background:#eef2ff;color:#4f46e5;font-weight:900}.vr-how b{font-size:13px}.vr-how small{color:#667085}.vr-terms{display:flex;gap:10px;align-items:flex-start;margin-bottom:16px;font-size:12px;color:#475467}.vendor-public-submit{width:100%;border:0;border-radius:13px;padding:14px 18px;color:#fff;font-weight:900;background:linear-gradient(135deg,#4f46e5,#0ea5e9);box-shadow:0 12px 25px rgba(79,70,229,.18)}.vendor-public-submit:disabled{opacity:.55;cursor:not-allowed}@media(max-width:980px){.vr-landing-hero{grid-template-columns:1fr;padding:55px 24px}.vr-benefit-grid{grid-template-columns:repeat(3,1fr)}.vr-how{margin:15px auto}.vendor-registration-shell{display:block}.vendor-registration-hero{display:none}.vendor-registration-form-section{padding:20px}}@media(max-width:640px){.vr-benefit-grid{grid-template-columns:1fr 1fr}.vr-how{grid-template-columns:1fr}.vendor-registration-form-card{padding:20px}.vr-hero-copy h1{font-size:38px}}
