.vr-body {
    --vr-green: #14532d;
    --vr-green-mid: #166534;
    --vr-green-bright: #15803d;
    --vr-green-soft: #eef8f1;
    --vr-ink: #14301c;
    --vr-muted: #5a6f61;
    --vr-cream: #f6f3ec;
    --vr-paper: #fffcf7;
    --vr-line: rgba(20, 83, 45, 0.14);
    --vr-amber: #c2410c;
    --vr-gold: #f0d9b8;
    background:
        radial-gradient(1000px 420px at 100% -8%, rgba(20, 83, 45, 0.1), transparent 55%),
        radial-gradient(800px 380px at -8% 100%, rgba(180, 140, 80, 0.1), transparent 52%),
        var(--vr-cream);
}

.vr-page {
    position: relative;
    overflow: hidden;
    padding: 1.6rem 0 4rem;
}

.vr-page::before,
.vr-page::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.vr-page::before {
    width: 22rem;
    height: 22rem;
    top: -7rem;
    left: -8rem;
    background: radial-gradient(circle, rgba(20, 83, 45, 0.1), transparent 70%);
}

.vr-page::after {
    width: 16rem;
    height: 16rem;
    bottom: 5rem;
    right: -6rem;
    background: radial-gradient(circle, rgba(192, 138, 74, 0.12), transparent 70%);
}

.vr-shell {
    position: relative;
    z-index: 1;
    max-width: 1080px;
}

.vr-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1.15fr;
    gap: 1.15rem;
    margin-bottom: 1.25rem;
}

.vr-hero__story {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 1.85rem 1.65rem 1.55rem;
    color: #fff;
    background:
        linear-gradient(160deg, #0f2918 0%, #14532d 58%, #1b7a4a 100%);
    box-shadow: 0 22px 44px rgba(15, 61, 27, 0.16);
}

.vr-hero__story::after {
    content: "";
    position: absolute;
    inset: auto -18% -38% auto;
    width: 14rem;
    height: 14rem;
    background: radial-gradient(circle, rgba(240, 217, 184, 0.18), transparent 65%);
    pointer-events: none;
}

.vr-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(240, 217, 184, 0.35);
    color: var(--vr-gold);
    font-weight: 800;
    font-size: 0.78rem;
}

.vr-hero h1 {
    font-weight: 900;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    line-height: 1.3;
    margin: 0.8rem 0 0.55rem;
}

.vr-hero p {
    margin: 0;
    color: rgba(236, 253, 243, 0.9);
    font-weight: 600;
    line-height: 1.85;
    font-size: 0.98rem;
}

.vr-orbit {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
}

.vr-orbit__card {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border-radius: 22px;
    padding: 1rem 0.95rem 1.05rem;
    background: var(--vr-paper);
    border: 1px solid var(--vr-line);
    box-shadow: 0 12px 28px rgba(15, 61, 27, 0.06);
    min-height: 100%;
}

.vr-orbit__card--identity {
    border-top: 3px solid #14532d;
}

.vr-orbit__card--review {
    border-top: 3px solid #3f6212;
}

.vr-orbit__card--place {
    border-top: 3px solid #9a6b2f;
}

.vr-orbit__icon {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.vr-orbit__card--identity .vr-orbit__icon {
    background: #e8f5ec;
    color: #14532d;
}

.vr-orbit__card--review .vr-orbit__icon {
    background: #eef4e4;
    color: #3f6212;
}

.vr-orbit__card--place .vr-orbit__icon {
    background: #f6ecdc;
    color: #8a5a22;
}

.vr-orbit strong {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    color: var(--vr-muted);
}

.vr-orbit h3 {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 900;
    color: var(--vr-ink);
    line-height: 1.35;
}

.vr-orbit p {
    margin: 0.2rem 0 0;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.7;
    color: var(--vr-muted);
}

.vr-board {
    background: rgba(255, 252, 247, 0.92);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    box-shadow: 0 24px 56px rgba(15, 61, 27, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.85);
    overflow: hidden;
}

.vr-progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--vr-green);
    color: #fff;
}

.vr-progress button {
    appearance: none;
    border: 0;
    background: transparent;
    color: inherit;
    padding: 1rem 0.85rem;
    font-family: inherit;
    font-weight: 800;
    text-align: right;
    position: relative;
    opacity: 0.55;
}

.vr-progress button.is-active,
.vr-progress button.is-done {
    opacity: 1;
}

.vr-progress button.is-active {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 -3px 0 #e8c48a;
}

.vr-progress b {
    display: block;
    font-size: 0.7rem;
    color: var(--vr-gold);
    margin-bottom: 0.12rem;
}

.vr-progress span {
    font-size: 0.95rem;
}

.vr-form {
    padding: 1.55rem 1.45rem 1.35rem;
}

.vr-pane {
    display: none;
    animation: vr-in 0.35s ease;
}

.vr-pane.is-active {
    display: block;
}

@keyframes vr-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
}

.vr-pane__title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.15rem;
}

.vr-pane__title i {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--vr-green-soft);
    color: var(--vr-green-mid);
    font-size: 1.1rem;
}

.vr-pane__title h2 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--vr-green);
}

.vr-pane__title small {
    display: block;
    color: var(--vr-muted);
    font-weight: 700;
    line-height: 1.55;
}

.vr-field label {
    font-weight: 800;
    color: var(--vr-ink);
    margin-bottom: 0.35rem;
}

.vr-field .form-control,
.vr-field .form-select {
    border-radius: 14px;
    min-height: 50px;
    border: 1px solid var(--vr-line);
    background: #fff;
    font-weight: 600;
}

.vr-field .form-control:focus,
.vr-field .form-select:focus {
    border-color: var(--vr-green-bright);
    box-shadow: 0 0 0 4px rgba(21, 128, 61, 0.12);
    background: #fff;
}

.vr-choices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
}

.vr-choice {
    position: relative;
}

.vr-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.vr-choice span {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 3.7rem;
    padding: 0.65rem 0.9rem;
    border-radius: 16px;
    border: 1.5px solid var(--vr-line);
    background: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.vr-choice em {
    font-style: normal;
}

.vr-choice i {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: var(--vr-green-soft);
    color: var(--vr-green-mid);
}

.vr-choice input:checked + span {
    border-color: var(--vr-green-mid);
    background: var(--vr-green-soft);
    box-shadow: 0 8px 18px rgba(20, 83, 45, 0.08);
    color: var(--vr-green);
}

.vr-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.vr-chip {
    position: relative;
}

.vr-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.vr-chip span {
    display: inline-flex;
    align-items: center;
    min-height: 2.45rem;
    padding: 0.32rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--vr-line);
    background: #fff;
    font-weight: 800;
    font-size: 0.86rem;
    cursor: pointer;
}

.vr-chip input:checked + span {
    background: var(--vr-green);
    color: #fff;
    border-color: var(--vr-green);
}

.vr-meter {
    height: 6px;
    border-radius: 999px;
    background: #e7eee8;
    overflow: hidden;
    margin-top: 0.45rem;
}

.vr-meter i {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: #b45309;
    transition: width 0.25s ease, background 0.25s ease;
}

.vr-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: space-between;
    margin-top: 1.35rem;
    padding-top: 1.05rem;
    border-top: 1px dashed var(--vr-line);
}

.vr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 3rem;
    padding: 0.65rem 1.3rem;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 900;
    border: 0;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vr-btn:hover {
    transform: translateY(-2px);
}

.vr-btn--next,
.vr-btn--submit {
    background: linear-gradient(135deg, #166534, #14532d);
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(20, 83, 45, 0.22);
}

.vr-btn--back,
.vr-btn--ghost {
    background: #fff;
    color: var(--vr-green) !important;
    border: 1px solid var(--vr-line);
}

.vr-nin-wrap {
    position: relative;
}

.vr-nin-wrap input {
    letter-spacing: 0.08em;
    font-variant-numeric: tabular-nums;
    padding-left: 4.4rem;
}

.vr-nin-counter {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.72rem;
    font-weight: 800;
    color: #6b7c72;
    background: #eef3ef;
    border-radius: 8px;
    padding: 3px 8px;
    pointer-events: none;
}

.vr-nin-counter.is-ok {
    background: #dcfce7;
    color: #14532d;
}

.vr-nin-counter.is-err {
    background: #fee2e2;
    color: #b91c1c;
}

.vr-nin-hint {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--vr-muted);
}

.vr-nin-hint.is-ok { color: #166534; }
.vr-nin-hint.is-err { color: #b91c1c; }

.vr-alert {
    border-radius: 18px;
    border: 0;
    background: #fef2f2;
    color: #7f1d1d;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .vr-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .vr-progress {
        grid-template-columns: 1fr;
    }
    .vr-orbit,
    .vr-choices {
        grid-template-columns: 1fr;
    }
    .vr-nav .vr-btn {
        width: 100%;
    }
}
