:root {
    --nd-ink: #f6f0e4;
    --nd-muted: rgba(246, 240, 228, .72);
    --nd-line: rgba(212, 175, 55, .28);
    --nd-gold: #d4af37;
    --nd-gold-2: #f0d78c;
    --nd-bg: #0a0908;
    --nd-panel: #141312;
    --nd-radius: 1.1rem;
    --nd-font-display: "Cormorant Garamond", Georgia, serif;
    --nd-font-body: "Sora", system-ui, sans-serif;
    --nd-max: 32rem;
    --nd-bm: #a78bfa;
}

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

html { scroll-behavior: smooth; }

body.nd-v1 {
    margin: 0;
    min-height: 100dvh;
    color: var(--nd-ink);
    font-family: var(--nd-font-body);
    background:
        radial-gradient(ellipse 90% 55% at 50% -8%, rgba(212, 175, 55, .18), transparent 58%),
        radial-gradient(ellipse 50% 40% at 100% 70%, rgba(80, 72, 60, .18), transparent 55%),
        linear-gradient(180deg, #12100c 0%, var(--nd-bg) 42%, #070605 100%);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.nd-v1__shell {
    position: relative;
    z-index: 1;
    width: min(100%, var(--nd-max));
    margin: 0 auto;
    padding: 1.15rem 1.05rem calc(5.5rem + env(safe-area-inset-bottom, 0px));
}
.nd-v1__shell--top {
    position: sticky;
    top: 0;
    z-index: 30;
    padding-top: max(0.85rem, env(safe-area-inset-top, 0px));
    padding-bottom: 0.55rem;
    background: linear-gradient(180deg, #12100c 0%, #12100c 72%, rgba(18, 16, 12, 0));
}
.nd-v1__shell--main {
    padding-top: 0.45rem;
}

.nd-v1__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: 0;
}

.nd-v1__back {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    min-height: 44px;
    color: var(--nd-gold-2);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 600;
}

.nd-v1__brand-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--nd-gold-2);
    text-decoration: none;
    font-size: .86rem;
    font-weight: 700;
}

.nd-v1__top-spacer {
    width: 44px;
    min-height: 44px;
}

.nd-v1__back:focus-visible,
.nd-v1__brand-link:focus-visible,
.nd-v1__btn:focus-visible,
.nd-v1__field input:focus-visible,
.nd-v1__field textarea:focus-visible,
.nd-v1__choice:focus-visible {
    outline: 2px solid var(--nd-gold);
    outline-offset: 2px;
}

.nd-v1__brand-mini {
    font-family: var(--nd-font-display);
    font-size: 1.15rem;
    color: #fff;
}

.nd-v1__h1 {
    margin: .35rem 0 .45rem;
    font-family: var(--nd-font-display);
    font-size: clamp(1.7rem, 6vw, 2.15rem);
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.1;
}

.nd-v1__lead {
    margin: 0 0 1.25rem;
    color: var(--nd-muted);
    font-size: .92rem;
    line-height: 1.5;
}

.nd-v1__card,
.nd-v1__choice {
    display: block;
    width: 100%;
    text-align: left;
    background: var(--nd-panel);
    border: 1px solid rgba(212, 175, 55, .22);
    border-radius: var(--nd-radius);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
}

.nd-v1__choice {
    cursor: pointer;
    min-height: 44px;
    padding: .95rem 1rem;
    margin: 0 0 .65rem;
    font: inherit;
}

.nd-v1__choice:hover,
.nd-v1__choice.is-on {
    border-color: rgba(212, 175, 55, .55);
    background: #1b1916;
}

.nd-v1__choice-title {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-weight: 700;
    font-size: .95rem;
}
.nd-v1__choice-title svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--nd-gold-2); }

.nd-v1__choice-meta {
    display: block;
    margin-top: .2rem;
    color: var(--nd-muted);
    font-size: .78rem;
}

.nd-v1__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .65rem;
}

.nd-v1__grid .nd-v1__choice { margin: 0; }

.nd-v1__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    width: 100%;
    min-height: 48px;
    padding: .75rem 1rem;
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    color: #1a1408;
    background: linear-gradient(135deg, #9a7b1a, #d4af37 55%, #f0d78c);
}

.nd-v1__btn--ghost {
    background: transparent;
    color: var(--nd-gold-2);
    border: 1px solid var(--nd-line);
}
.nd-v1__back-step {
    margin-top: 1.25rem;
}

.nd-v1__btn[disabled] { opacity: .45; cursor: not-allowed; }

.nd-v1__btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.nd-v1__progress {
    height: 3px;
    background: rgba(255,255,255,.08);
    border-radius: 99px;
    margin: .35rem 0 1rem;
    overflow: hidden;
}

.nd-v1__progress span {
    display: block;
    height: 100%;
    background: var(--nd-gold);
}

.nd-v1__step-label {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--nd-gold-2);
    font-weight: 700;
}
.nd-v1__kicker {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin: 0 0 .9rem;
}
.nd-v1__kicker svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.nd-v1__kicker + .nd-v1__h1 {
    margin-top: .15rem;
}

.nd-v1__field {
    margin: 0 0 .85rem;
}

.nd-v1__field label {
    display: block;
    margin-bottom: .35rem;
    font-size: .78rem;
    font-weight: 600;
}

.nd-v1__field input,
.nd-v1__field textarea,
.nd-v1__field select {
    width: 100%;
    min-height: 44px;
    padding: .7rem .85rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.12);
    background: #0e0d0c;
    color: #fff;
    font: inherit;
}

.nd-v1__field input::placeholder,
.nd-v1__field textarea::placeholder {
    color: rgba(255,255,255,.38);
}
.nd-v1__note {
    margin: 0 0 1rem;
    font-size: .82rem;
    line-height: 1.45;
    color: var(--nd-muted);
}
.nd-v1__check {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    margin: .15rem 0 1rem;
    font-size: .82rem;
    line-height: 1.4;
    color: var(--nd-muted);
    cursor: pointer;
}
.nd-v1__check input {
    width: 1.15rem;
    height: 1.15rem;
    margin-top: .15rem;
    flex: 0 0 auto;
    accent-color: #c9a227;
}
.nd-v1__check a { color: var(--nd-gold-2); }

.nd-v1__err {
    color: #ffb4a8;
    font-size: .82rem;
    margin: 0 0 .8rem;
}

.nd-v1__slots {
    display: grid;
    grid-template-columns: 1fr;
    gap: .5rem;
}

.nd-v1__slot {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    width: 100%;
    padding: .7rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--nd-line);
    background: var(--nd-panel);
    color: #fff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
}

.nd-v1__slot.is-on,
.nd-v1__slot:hover {
    border-color: var(--nd-gold);
    background: #1c1914;
}

.nd-v1__days {
    display: grid;
    grid-template-columns: 1fr;
    gap: .5rem;
}

.nd-v1__day {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid var(--nd-line);
    background: var(--nd-panel);
    color: #fff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    padding: .7rem 1rem;
}

.nd-v1__day.is-on { border-color: var(--nd-gold); }

.nd-v1__fab {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    z-index: 40;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #141312;
    border: 1px solid var(--nd-gold);
    color: var(--nd-gold-2);
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0,0,0,.45);
}

.nd-v1__legal {
    margin-top: 1.25rem;
    font-size: .75rem;
    color: var(--nd-muted);
}

.nd-v1__legal a { color: var(--nd-gold-2); }

.nd-v1__hidden { display: none !important; }

.nd-lh__btn--bm {
    border-color: rgba(167, 139, 250, .42) !important;
}
.nd-lh__btn--bm .nd-lh__btn-icon {
    background: rgba(124, 58, 237, .2);
    color: #d8c4ff;
}
.nd-lh__btn--bm.nd-lh__btn--static {
    cursor: default;
    pointer-events: none;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: .7rem .78rem .32rem;
    background: none;
    border: 0 !important;
    box-shadow: none;
}
.nd-lh__btn--bm.nd-lh__btn--static .nd-lh__btn-title {
    color: #fff;
}
.nd-lh__btn--bm.nd-lh__btn--static .nd-lh__btn-desc {
    color: #dbcaff;
}
.nd-lh__bm-stack {
    display: grid;
    gap: .5rem;
    padding: .42rem;
    border: 1px solid rgba(196, 140, 255, .42);
    border-radius: calc(var(--nd-radius) + .22rem);
    background:
        radial-gradient(circle at 20% 0%, rgba(167, 139, 250, .18), transparent 48%),
        linear-gradient(180deg, rgba(88, 28, 135, .16), rgba(20, 19, 18, .3));
    box-shadow:
        0 14px 42px rgba(124, 58, 237, .2),
        0 0 0 1px rgba(255, 255, 255, .04) inset;
}
.nd-lh__bm-stack .nd-lh__btn--bm:not(.nd-lh__btn--static) {
    pointer-events: auto;
    cursor: pointer;
    background:
        linear-gradient(135deg, rgba(55, 31, 91, .68), rgba(20, 19, 18, .94)),
        var(--nd-panel);
    border-color: rgba(167, 139, 250, .38) !important;
    box-shadow: 0 10px 32px rgba(124, 58, 237, .28);
}
.nd-lh__bm-stack .nd-lh__btn--bm:not(.nd-lh__btn--static):hover,
.nd-lh__bm-stack .nd-lh__btn--bm:not(.nd-lh__btn--static):focus-visible {
    border-color: rgba(196, 140, 255, .7);
    box-shadow: 0 16px 44px rgba(167, 139, 250, .45);
    transform: translateY(-2px);
    filter: brightness(1.05);
    outline: none;
    color: #fff;
}
.nd-lh__next {
    margin: 0 0 1.1rem;
    padding: .9rem 1rem;
    border-radius: var(--nd-radius);
    border: 1px solid var(--nd-line);
    background: #141312;
}
.nd-lh__next h2 {
    margin: 0 0 .55rem;
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--nd-gold-2);
}
.nd-lh__next p { margin: 0 0 .35rem; font-size: .88rem; }
