:root {
    --ink: #1c140c;
    --navy: #0b1d36;
    --navy-2: #132844;
    --gold: #c9a227;
    --gold-2: #e6c35a;
    --sand: #f4ead2;
    --paper: #fbf6ea;
    --clay: #c45c26;
    --teal: #2a7a73;
    --line: rgba(201, 162, 39, 0.35);
    --muted: #6b5d48;
    --ok: #2f7d4a;
    --bad: #b42318;
    --rail: 248px;
    --font: "Figtree", sans-serif;
    --display: "Fraunces", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--navy);
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font-family: inherit; }
.nv-lock { overflow: hidden; }

.nv-shell {
    min-height: 100vh;
    display: flex;
    background:
        radial-gradient(1200px 500px at 80% -10%, rgba(201,162,39,.12), transparent 55%),
        var(--navy);
}

.nv-rail {
    width: var(--rail);
    flex: 0 0 var(--rail);
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    background: linear-gradient(180deg, #0e223f 0%, #0b1d36 100%);
    border-right: 1px solid var(--line);
    z-index: 40;
}
.nv-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.nv-brand img {
    width: 100%;
    max-width: 196px;
    height: auto;
    background: #fff8e8;
    padding: 8px 10px;
    border: 1px solid var(--line);
}
.nv-brand strong {
    display: block;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    color: var(--sand);
}
.nv-brand small {
    display: block;
    color: var(--gold-2);
    font-size: 0.75rem;
}

.nv-rail-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.nv-link {
    display: grid;
    grid-template-columns: 28px 18px 1fr;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border: 1px solid transparent;
    color: #d7c9a6;
    font-weight: 600;
    font-size: 0.95rem;
    transition: .2s ease;
}
.nv-link em {
    font-style: normal;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--gold);
}
.nv-link:hover { background: rgba(255,255,255,.04); color: #fff; }
.nv-link.is-on {
    background: rgba(201,162,39,.12);
    border-color: var(--line);
    color: #fff;
}
.nv-link-shop {
    margin-top: 10px;
    background: linear-gradient(180deg, #efd36a, #c9a227);
    color: #1a140c !important;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 24px rgba(201,162,39,.28);
    transform: scale(1.03);
}
.nv-link-shop em { color: #5c4308; }
.nv-link-shop.is-on,
.nv-link-shop:hover {
    filter: brightness(1.06);
}

.nv-view-home .nv-rail { box-shadow: inset -3px 0 0 var(--gold); }
.nv-view-about .nv-rail { box-shadow: inset -3px 0 0 #7ea0c8; }
.nv-view-game .nv-rail { box-shadow: inset -3px 0 0 var(--clay); }
.nv-view-contact .nv-rail { box-shadow: inset -3px 0 0 var(--teal); }
.nv-view-shop .nv-rail { box-shadow: inset -3px 0 0 var(--gold-2); }
.nv-view-faq .nv-rail { box-shadow: inset -3px 0 0 #8b6bb5; }

.nv-rail-foot { margin-top: auto; }
.nv-rail-play {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border: 1px dashed var(--line);
    color: var(--gold-2);
    font-size: 0.85rem;
    font-weight: 700;
}
.nv-rail-play:hover { background: rgba(201,162,39,.08); }

.nv-stage {
    flex: 1;
    min-width: 0;
    background:
        repeating-linear-gradient(135deg, rgba(255,255,255,.015) 0 2px, transparent 2px 8px),
        linear-gradient(180deg, #fbf6ea 0%, #f3e6c8 100%);
    display: flex;
    flex-direction: column;
}
.nv-topbar {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--navy);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 30;
}
.nv-top-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--sand);
    font-size: 0.85rem;
    letter-spacing: .06em;
}
.nv-top-brand img {
    width: 92px;
    height: auto;
    background: #fff8e8;
    padding: 4px 6px;
    border: 1px solid var(--line);
}
.nv-top-shop {
    margin-left: auto;
    background: var(--gold);
    color: #1a140c;
    font-weight: 800;
    padding: 8px 14px;
    font-size: 0.85rem;
}
.nv-menu-btn {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--sand);
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    cursor: pointer;
}

.nv-main { flex: 1; }
.nv-wrap {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 36px 0 56px;
}

.nv-kicker {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 700;
    margin-bottom: 8px;
}
.nv-title {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.8rem, 3.4vw, 3.1rem);
    line-height: 1.15;
    margin: 0 0 14px;
    color: var(--navy);
}
.nv-title em { font-style: italic; color: var(--clay); }
.nv-lead { color: var(--muted); font-size: 1.05rem; max-width: 62ch; }
.nv-prose p { margin: 0 0 14px; color: #3d3224; }
.nv-prose p:last-child { margin-bottom: 0; }

.nv-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
}
.nv-cta-row img { height: 48px; width: auto; }
.nv-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    font-weight: 700;
    border: 1px solid var(--navy);
    background: var(--navy);
    color: var(--sand);
}
.nv-btn:hover { background: #163156; }
.nv-btn-gold {
    background: linear-gradient(180deg, #efd36a, #c9a227);
    color: #1a140c;
    border-color: #b48d16;
}
.nv-btn-gold:hover { filter: brightness(1.05); }
.nv-btn-ghost {
    background: transparent;
    color: var(--navy);
}
.nv-btn-ghost:hover { background: rgba(11,29,54,.06); }

.nv-atlas {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    isolation: isolate;
    background: #0b1d36;
}
.nv-atlas-art {
    position: absolute;
    inset: -12px;
    width: calc(100% + 24px);
    height: calc(100% + 24px);
    object-fit: cover;
    object-position: center 40%;
    z-index: 0;
    filter: saturate(.55) contrast(.85) brightness(.55);
    transform: scale(1.04);
}
.nv-atlas-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8,16,32,.92) 0%, rgba(8,16,32,.78) 42%, rgba(8,16,32,.45) 100%),
        linear-gradient(180deg, rgba(8,16,32,.35) 0%, rgba(8,16,32,.2) 50%, rgba(8,16,32,.55) 100%);
}
.nv-atlas-copy {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 48px));
    margin: 48px auto 56px;
    margin-left: max(24px, calc((100% - 1120px) / 2));
    max-width: 680px;
    padding: 32px 34px 30px;
    color: #fff8e8;
    background: rgba(8, 16, 32, .82);
    border: 1px solid rgba(201, 162, 39, .28);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
    backdrop-filter: blur(8px);
}
.nv-atlas-copy .nv-kicker { color: var(--gold-2); }
.nv-atlas-copy h1 {
    font-family: var(--display);
    font-size: clamp(1.9rem, 3.6vw, 3.1rem);
    line-height: 1.18;
    margin: 0 0 16px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.nv-atlas-copy p {
    color: #f0e6cc;
    max-width: 58ch;
    text-shadow: 0 1px 8px rgba(0,0,0,.25);
}
.nv-seal {
    position: absolute;
    right: 6%;
    bottom: 28px;
    z-index: 3;
    width: min(240px, 32vw);
    filter: drop-shadow(0 16px 28px rgba(0,0,0,.4));
}

.nv-band { padding: 56px 0; }
.nv-band-navy {
    background: var(--navy);
    color: var(--sand);
}
.nv-band-navy .nv-title,
.nv-band-navy .nv-kicker { color: var(--gold-2); }
.nv-band-navy p { color: #d9cba8; }

.nv-path {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 28px;
    counter-reset: path;
}
.nv-step {
    padding: 22px 20px 22px 0;
    border-top: 2px solid var(--gold);
    position: relative;
}
.nv-step::before {
    counter-increment: path;
    content: counter(path, decimal-leading-zero);
    display: block;
    font-family: var(--display);
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 8px;
}
.nv-step h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    color: var(--navy);
}
.nv-step p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.nv-studio {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 36px;
    align-items: center;
}
.nv-quote {
    font-family: var(--display);
    font-size: 1.55rem;
    font-style: italic;
    line-height: 1.35;
    margin: 0 0 16px;
    color: var(--navy);
}

.nv-shots {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
    margin-top: 22px;
}
.nv-shots figure {
    margin: 0;
    overflow: hidden;
    background: #1a140c;
}
.nv-shots img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 160px;
    transition: transform .4s ease;
}
.nv-shots figure:hover img { transform: scale(1.04); }
.nv-shots figure:first-child {
    grid-row: 1 / span 2;
}
.nv-shots figure:first-child img { min-height: 340px; }

.nv-depart {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    padding: 28px;
    background: #fff8e8;
    border: 1px solid var(--line);
}

.nv-mast {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.nv-mast img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}
.nv-mast-copy {
    background: var(--navy);
    color: var(--sand);
    padding: 42px 8%;
}
.nv-mast-copy .nv-kicker { color: var(--gold-2); }
.nv-mast-copy h1 { color: #fff; font-family: var(--display); margin: 0 0 12px; }
.nv-mast-copy p { color: #d9cba8; max-width: 70ch; }

.nv-beliefs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 8px;
}
.nv-belief {
    background: #fff8e8;
    padding: 22px;
    border-top: 4px solid var(--gold);
}
.nv-belief h3 { margin: 0 0 10px; font-size: 1.05rem; }
.nv-belief p { margin: 0; color: var(--muted); }

.nv-facts {
    margin-top: 28px;
    display: grid;
    gap: 10px;
}
.nv-fact {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--line);
}
.nv-fact b { color: var(--navy); }

.nv-brief {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 28px;
    align-items: center;
}
.nv-brief img {
    width: 100%;
    object-fit: cover;
    max-height: 420px;
}

.nv-controls {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    background: #fff8e8;
    border-left: 4px solid var(--clay);
    margin: 28px 0;
}
.nv-controls i { color: var(--clay); font-size: 1.4rem; }

.nv-commands { display: grid; gap: 14px; }
.nv-cmd {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(28,20,12,.08);
}
.nv-cmd-ico {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: var(--gold-2);
    font-size: 1.2rem;
}
.nv-cmd h3 { margin: 0 0 6px; font-size: 1.05rem; }
.nv-cmd p, .nv-cmd ul { margin: 0; color: var(--muted); }
.nv-cmd ul { padding-left: 18px; }

.nv-tips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 24px 0;
}
.nv-tip {
    padding: 18px;
    background: var(--navy);
    color: var(--sand);
    min-height: 140px;
}
.nv-tip strong { display: block; color: var(--gold-2); margin-bottom: 8px; }

.nv-contact-frame {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.nv-contact-frame img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
}
.nv-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--navy);
}
.nv-tile {
    padding: 28px 24px;
    color: var(--sand);
    border-right: 1px solid rgba(201,162,39,.2);
}
.nv-tile:last-child { border-right: 0; }
.nv-tile i {
    font-size: 1.5rem;
    color: var(--gold-2);
    margin-bottom: 12px;
    display: block;
}
.nv-tile h3 { margin: 0 0 8px; font-size: 0.95rem; letter-spacing: .08em; text-transform: uppercase; }
.nv-tile p, .nv-tile a { margin: 0; color: #eadfc4; }
.nv-tile a:hover { color: var(--gold-2); }

.nv-faq { display: grid; gap: 10px; }
.nv-faq details {
    background: #fff8e8;
    border: 1px solid var(--line);
    padding: 14px 18px;
}
.nv-faq summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--navy);
}
.nv-faq p { margin: 10px 0 0; color: var(--muted); }

.nv-shop-intro {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: start;
}
.nv-loop {
    background: var(--navy);
    color: var(--sand);
    padding: 22px;
}
.nv-loop ol { margin: 10px 0 0; padding-left: 18px; }
.nv-loop li { margin: 6px 0; }

.nv-money {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 8px;
}
.nv-money button {
    border: 1px solid var(--navy);
    background: transparent;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 700;
}
.nv-money button.is-on {
    background: var(--navy);
    color: var(--sand);
}

.nv-board {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 8px;
    margin: 18px 0 28px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 4px;
}
.nv-ingot {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 10px;
    background: #fff8e8;
    border: 1px solid var(--line);
    padding: 8px 12px;
    text-align: left;
    cursor: pointer;
    color: var(--ink);
}
.nv-ingot img { width: 40px; height: 40px; object-fit: contain; margin: 0; }
.nv-ingot strong { display: block; font-size: 0.88rem; font-weight: 700; }
.nv-ingot span { color: var(--clay); font-weight: 800; white-space: nowrap; }
.nv-ingot.is-on {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px var(--gold);
    background: #fff;
}
.nv-empty, .nv-wait { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 28px; }
.nv-wait span {
    display: inline-block;
    width: 28px;
    height: 28px;
    border: 3px solid var(--line);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: nvspin .8s linear infinite;
}
@keyframes nvspin { to { transform: rotate(360deg); } }

.nv-slip {
    background: #fff;
    border: 1px solid var(--line);
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 28px;
}
.nv-slip h2 {
    grid-column: 1 / -1;
    margin: 0 0 4px;
    font-family: var(--display);
    font-size: 1.5rem;
}
.nv-field { display: flex; flex-direction: column; gap: 6px; }
.nv-field-wide { grid-column: 1 / -1; }
.nv-field label { font-weight: 700; font-size: 0.9rem; }
.nv-field input[type="text"],
.nv-field input[type="email"] {
    border: 1px solid #d7c9a6;
    padding: 10px 12px;
    background: var(--paper);
}
.nv-field input[readonly] { color: var(--muted); }
.nv-pick {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: var(--sand);
    color: var(--muted);
}
.nv-pick.has-val { color: var(--navy); font-weight: 700; }
.nv-err { color: var(--bad); font-size: 0.82rem; min-height: 1em; }
.nv-alert {
    background: #fde8e6;
    color: var(--bad);
    padding: 12px 14px;
    margin-bottom: 16px;
    border-left: 4px solid var(--bad);
}
.nv-notes { padding-left: 18px; color: var(--muted); }
.nv-notes li { margin: 6px 0; }

.nv-pays { display: flex; flex-wrap: wrap; gap: 8px; }
.nv-pay {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d7c9a6;
    padding: 8px 12px;
    cursor: pointer;
    background: var(--paper);
}
.nv-pay input { display: none; }
.nv-pay.is-on { border-color: var(--navy); background: var(--navy); color: var(--sand); }
.nv-pay.is-show {
    opacity: .55;
    cursor: default;
}
.nv-agree { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; }
.nv-agree a { color: var(--clay); text-decoration: underline; }
.nv-go {
    grid-column: 1 / -1;
    justify-self: start;
    cursor: pointer;
    border: 0;
}

.nv-ticket {
    width: min(640px, 92%);
    margin: 48px auto;
    background: #fff;
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.nv-ticket::before,
.nv-ticket::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--sand);
    border-radius: 50%;
    top: 58%;
}
.nv-ticket::before { left: -11px; }
.nv-ticket::after { right: -11px; }
.nv-ticket-head {
    background: var(--navy);
    color: var(--sand);
    padding: 22px 24px;
}
.nv-ticket-head h1 { margin: 0; font-family: var(--display); font-size: 1.6rem; }
.nv-ticket-body { padding: 22px 24px 28px; }
.nv-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--line);
}
.nv-row span { color: var(--muted); }
.nv-row b { color: var(--navy); }
.nv-paywait { margin-top: 18px; text-align: center; }
.nv-bar {
    height: 6px;
    background: #efe4c6;
    overflow: hidden;
    margin: 10px 0 16px;
}
.nv-bar i {
    display: block;
    height: 100%;
    width: 0;
    background: var(--gold);
    animation: nvfill 2s linear forwards;
}
@keyframes nvfill { to { width: 100%; } }

.nv-result {
    width: min(640px, 92%);
    margin: 48px auto;
    text-align: center;
    padding: 42px 28px;
    background: #fff;
    border: 1px solid var(--line);
}
.nv-result i { font-size: 3rem; margin-bottom: 12px; }
.nv-ok i { color: var(--ok); }
.nv-fail i { color: var(--bad); }
.nv-result h1 { font-family: var(--display); margin: 0 0 10px; }
.nv-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }

.nv-footer {
    background: #091627;
    color: #d7c9a6;
    padding: 28px 24px 18px;
    margin-top: auto;
}
.nv-footer-grid {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 20px;
    align-items: start;
}
.nv-footer-brand { display: flex; gap: 12px; align-items: center; }
.nv-footer-brand img {
    width: 120px;
    background: #fff8e8;
    padding: 6px 8px;
    border: 1px solid var(--line);
}
.nv-footer-brand p { margin: 4px 0 0; color: var(--gold-2); font-size: 0.85rem; }
.nv-footer-nav, .nv-footer-legal {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.9rem;
}
.nv-footer a:hover { color: var(--gold-2); }
.nv-copy {
    width: min(1120px, 100%);
    margin: 18px auto 0;
    border-top: 1px solid rgba(201,162,39,.2);
    padding-top: 12px;
    font-size: 0.82rem;
    color: #9e8f72;
}

@media (max-width: 980px) {
    .nv-shell { display: block; }
    .nv-rail {
        position: fixed;
        left: 0;
        top: 0;
        transform: translateX(-105%);
        transition: transform .25s ease;
        height: 100vh;
    }
    .nv-rail.is-open { transform: none; }
    .nv-topbar { display: flex; }
    .nv-path, .nv-beliefs, .nv-tips, .nv-tiles, .nv-shop-intro, .nv-brief, .nv-studio, .nv-slip, .nv-footer-grid {
        grid-template-columns: 1fr;
    }
    .nv-shots { grid-template-columns: 1fr 1fr; }
    .nv-shots figure:first-child { grid-row: auto; }
    .nv-atlas-copy {
        margin: 28px auto 120px;
        width: min(1120px, calc(100% - 32px));
        padding: 24px 20px;
    }
    .nv-seal { width: 140px; }
    .nv-tile { border-right: 0; border-bottom: 1px solid rgba(201,162,39,.2); }
    .nv-fact { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .nv-shots { grid-template-columns: 1fr; }
    .nv-wrap { width: min(1120px, calc(100% - 28px)); }
    .nv-cta-row img { height: 42px; }
}
