/* BRIARWELL LLC — café-rail theme (bw-*). No "hero" class names. */
:root {
    --bw-ink: #2a2140;
    --bw-muted: #6e6488;
    --bw-magenta: #e83e8c;
    --bw-violet: #7c4dff;
    --bw-cyan: #3ec6ff;
    --bw-lime: #6fdc6a;
    --bw-gold: #f5b942;
    --bw-chocolate: #5c3a2e;
    --bw-cream: #fff7fb;
    --bw-card: #ffffff;
    --bw-line: #f0dcea;
    --bw-deep: #241838;
    --bw-grad: linear-gradient(135deg, #e83e8c 0%, #7c4dff 50%, #3ec6ff 100%);
    --bw-grad-warm: linear-gradient(135deg, #f5b942, #e83e8c);
    --bw-font: 'Outfit', 'Segoe UI', sans-serif;
    --bw-display: 'Fredoka', 'Outfit', sans-serif;
    --bw-radius: 20px;
    --bw-shadow: 0 16px 40px -18px rgba(90, 40, 100, .28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--bw-font);
    color: var(--bw-ink);
    background:
        radial-gradient(700px 400px at 100% 0%, rgba(232, 62, 140, .12), transparent 60%),
        radial-gradient(600px 380px at 0% 40%, rgba(62, 198, 255, .12), transparent 55%),
        var(--bw-cream);
    line-height: 1.65;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bw-violet); text-decoration: none; }
a:hover { color: var(--bw-magenta); }
h1, h2, h3 { font-family: var(--bw-display); line-height: 1.2; color: var(--bw-ink); }
.bw-main { flex: 1 0 auto; }

/* ---- masthead (top bar + dual-line brand — not pill, not side rail) ---- */
.bw-mast {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 247, 251, .94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--bw-line);
}
.bw-mast-inner {
    width: min(1120px, calc(100% - 28px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}
.bw-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
}
.bw-brand img {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: #0a1a2e;
    box-shadow: 0 6px 14px -6px rgba(0,0,0,.35);
}
.bw-brand-stack { display: flex; flex-direction: column; line-height: 1.15; }
.bw-brand-stack strong {
    font-family: var(--bw-display);
    font-size: 1.05rem;
    letter-spacing: .04em;
}
.bw-brand-stack em {
    font-style: normal;
    font-size: .72rem;
    font-weight: 600;
    color: var(--bw-muted);
}
.bw-menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 2px;
}
.bw-menu a {
    padding: 9px 14px;
    font-weight: 600;
    font-size: .92rem;
    color: var(--bw-ink);
    border-bottom: 2px solid transparent;
    transition: color .15s, border-color .15s;
}
.bw-menu a:hover { color: var(--bw-magenta); }
.bw-menu a.is-on { color: var(--bw-violet); border-bottom-color: var(--bw-violet); }
.bw-menu a.bw-shop-link {
    margin-left: 8px;
    background: var(--bw-grad-warm);
    color: #fff !important;
    border: 0;
    border-radius: 12px;
    padding: 10px 20px;
    box-shadow: 0 10px 22px -10px rgba(232, 62, 140, .55);
    position: relative;
}
.bw-menu a.bw-shop-link::before {
    content: '\2665';
    margin-right: 6px;
    font-size: .85em;
}
.bw-menu a.bw-shop-link.is-on { box-shadow: 0 0 0 3px rgba(232, 62, 140, .25); }
.bw-toggle {
    display: none;
    margin-left: auto;
    width: 42px; height: 42px;
    border: 1px solid var(--bw-line);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.bw-toggle span { display: block; width: 18px; height: 2px; background: var(--bw-ink); border-radius: 2px; }

/* helpers */
.bw-wrap { width: min(1120px, calc(100% - 28px)); margin: 0 auto; }
.bw-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--bw-magenta);
    background: rgba(232, 62, 140, .1);
    border: 1px solid rgba(232, 62, 140, .22);
    padding: 6px 12px;
    border-radius: 999px;
}
.bw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--bw-display);
    font-weight: 600;
    font-size: .98rem;
    padding: 13px 26px;
    border-radius: 14px;
    border: 0;
    cursor: pointer;
    transition: transform .15s, filter .15s;
}
.bw-btn--fill { background: var(--bw-grad); color: #fff; box-shadow: 0 12px 24px -10px rgba(124, 77, 255, .5); }
.bw-btn--fill:hover { color: #fff; transform: translateY(-2px); filter: brightness(1.06); }
.bw-btn--warm { background: var(--bw-grad-warm); color: #fff; }
.bw-btn--warm:hover { color: #fff; transform: translateY(-2px); }
.bw-btn--ghost { background: #fff; color: var(--bw-violet); border: 1.5px solid var(--bw-line); }
.bw-btn--ghost:hover { border-color: var(--bw-violet); }
.bw-sect { padding: 56px 0; }
.bw-sect-head { max-width: 560px; margin-bottom: 28px; }
.bw-sect-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 12px 0 8px; }
.bw-sect-head p { color: var(--bw-muted); }
.bw-fade { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.bw-fade.is-in { opacity: 1; transform: none; }

/* home open — bottom ticket over full banner (not left/right split, not side rail) */
.bw-open {
    position: relative;
    width: min(1120px, calc(100% - 28px));
    margin: 20px auto 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--bw-shadow);
    min-height: clamp(420px, 56vw, 560px);
}
.bw-open-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bw-open-ticket {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: clamp(22px, 4vw, 40px);
    background: linear-gradient(180deg, transparent 0%, rgba(36, 24, 56, .55) 28%, rgba(36, 24, 56, .92) 100%);
    color: #fff;
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 24px;
    align-items: end;
}
.bw-open-ticket .bw-tag { color: #ffd6ea; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }
.bw-open-ticket h1 { color: #fff; font-size: clamp(1.8rem, 4.2vw, 2.8rem); margin: 12px 0 10px; max-width: 16ch; }
.bw-open-ticket p { color: #e8dff5; max-width: 48ch; margin-bottom: 18px; font-size: .98rem; }
.bw-open-side {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}
.bw-pill-stat {
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.28);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 10px 16px;
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    white-space: nowrap;
}
.bw-pill-stat b { font-family: var(--bw-display); font-size: 1.05rem; }

.bw-plays { display: flex; flex-wrap: wrap; gap: 12px; }
.bw-plays-btn {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 20px -10px rgba(0,0,0,.4);
    transition: transform .15s;
}
.bw-plays-btn:hover { transform: translateY(-3px); }
.bw-plays-btn img { width: 180px; height: auto; }

/* home rail previews — stacked horizontal menu rows */
.bw-rail {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    align-items: center;
    background: var(--bw-card);
    border: 1px solid var(--bw-line);
    border-radius: var(--bw-radius);
    padding: 18px 22px;
    box-shadow: 0 8px 24px -16px rgba(90, 40, 100, .2);
    margin-bottom: 14px;
    transition: transform .15s, box-shadow .15s;
}
.bw-rail:hover { transform: translateX(4px); box-shadow: var(--bw-shadow); }
.bw-rail img { width: 100px; height: 100px; object-fit: cover; border-radius: 18px; }
.bw-rail h3 { font-size: 1.15rem; margin-bottom: 4px; }
.bw-rail p { color: var(--bw-muted); font-size: .92rem; }
.bw-rail .bw-more { font-weight: 700; white-space: nowrap; }
.bw-more::after { content: ' \2192'; }

.bw-board {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: center;
    background: var(--bw-deep);
    color: #fff;
    border-radius: 28px;
    padding: clamp(24px, 4vw, 44px);
    overflow: hidden;
    position: relative;
}
.bw-board::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(320px 200px at 90% 10%, rgba(245, 185, 66, .3), transparent 70%),
        radial-gradient(280px 180px at 10% 90%, rgba(232, 62, 140, .35), transparent 70%);
}
.bw-board > * { position: relative; }
.bw-board h2 { color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); margin: 10px 0; }
.bw-board p { color: #d5cbe8; margin-bottom: 18px; }
.bw-board img { width: min(200px, 40vw); margin: 0 auto; filter: drop-shadow(0 16px 24px rgba(245,185,66,.4)); }

.bw-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.bw-cell {
    background: var(--bw-card);
    border: 1px solid var(--bw-line);
    border-radius: var(--bw-radius);
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 8px 20px -14px rgba(90,40,100,.2);
}
.bw-ico {
    flex: 0 0 46px;
    width: 46px; height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--bw-grad);
}
.bw-ico--warm { background: var(--bw-grad-warm); }
.bw-ico--cyan { background: linear-gradient(135deg, #3ec6ff, #7c4dff); }
.bw-cell h3 { font-size: .98rem; margin-bottom: 2px; }
.bw-cell p, .bw-cell a { font-size: .88rem; color: var(--bw-muted); word-break: break-word; }

/* page band */
.bw-band {
    width: min(1120px, calc(100% - 28px));
    margin: 22px auto 0;
    border-radius: 28px;
    padding: clamp(36px, 5vw, 60px) clamp(22px, 4vw, 48px);
    background: var(--bw-deep);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.bw-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(400px 220px at 95% 0%, rgba(62, 198, 255, .35), transparent 65%),
        radial-gradient(360px 240px at 0% 100%, rgba(232, 62, 140, .4), transparent 70%);
}
.bw-band > * { position: relative; }
.bw-band .bw-tag { color: #ffd6ea; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); }
.bw-band h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 14px 0 8px; }
.bw-band p { color: #d5cbe8; max-width: 52ch; }
.bw-crumbs { font-size: .84rem; color: #a994c8; margin-bottom: 6px; }
.bw-crumbs a { color: #e0c6ff; }

/* about — image LEFT sticky (reverse of common right-rail facts) */
.bw-about {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
}
.bw-about-art {
    position: sticky;
    top: 96px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--bw-shadow);
}
.bw-about-art img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.bw-rich h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin: 26px 0 10px; }
.bw-rich h2:first-child { margin-top: 0; }
.bw-rich p { color: var(--bw-muted); margin-bottom: 12px; }
.bw-strengths { display: grid; gap: 12px; margin: 18px 0; }
.bw-strength {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    background: var(--bw-card);
    border: 1px solid var(--bw-line);
    border-radius: 16px;
    padding: 16px;
}
.bw-strength b {
    font-family: var(--bw-display);
    font-size: 1.4rem;
    background: var(--bw-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* game — zigzag rows */
.bw-zig { display: grid; gap: 40px; }
.bw-zig-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 4vw, 48px);
    align-items: center;
}
.bw-zig-row--flip > .bw-zig-media { order: 2; }
.bw-zig-media img { border-radius: 24px; box-shadow: var(--bw-shadow); width: 100%; }
.bw-zig-copy h2 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); margin: 10px 0; }
.bw-zig-copy p { color: var(--bw-muted); margin-bottom: 10px; }
.bw-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bw-feat {
    background: var(--bw-card);
    border: 1px solid var(--bw-line);
    border-radius: 16px;
    padding: 18px;
    border-top: 3px solid transparent;
    border-image: var(--bw-grad) 1;
}
.bw-feat h3 { font-size: 1rem; margin-bottom: 6px; }
.bw-feat p { font-size: .88rem; color: var(--bw-muted); }
.bw-shots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.bw-shots img {
    border-radius: 16px;
    border: 1px solid var(--bw-line);
    aspect-ratio: 1;
    object-fit: cover;
    width: 100%;
    transition: transform .15s;
}
.bw-shots img:hover { transform: translateY(-4px); }

/* contact */
.bw-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.bw-method {
    text-align: center;
    background: var(--bw-card);
    border: 1px solid var(--bw-line);
    border-radius: 22px;
    padding: 28px 20px;
    box-shadow: 0 8px 22px -14px rgba(90,40,100,.22);
    transition: transform .15s;
}
.bw-method:hover { transform: translateY(-4px); }
.bw-method .bw-ico { margin: 0 auto 14px; width: 56px; height: 56px; }
.bw-method h2 { font-size: 1.05rem; margin-bottom: 6px; }
.bw-method p, .bw-method a { font-size: .92rem; color: var(--bw-muted); word-break: break-word; }
.bw-method a { font-weight: 600; }
.bw-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--bw-shadow);
}
.bw-frame img { width: 100%; max-height: 400px; object-fit: cover; }
.bw-frame figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 50px 24px 18px;
    background: linear-gradient(180deg, transparent, rgba(36,24,56,.85));
    color: #fff;
    font-family: var(--bw-display);
    font-size: 1.15rem;
}
.bw-note {
    background: #fff;
    border: 1.5px dashed rgba(232, 62, 140, .4);
    border-radius: 16px;
    padding: 16px 20px;
    color: var(--bw-muted);
    font-size: .92rem;
}

/* store — menu-board list (not card grid) */
.bw-intro {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: center;
    background: var(--bw-card);
    border: 1px solid var(--bw-line);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 8px 22px -14px rgba(90,40,100,.2);
}
.bw-intro img { width: 110px; }
.bw-intro h2 { font-size: 1.35rem; margin-bottom: 6px; }
.bw-intro p { color: var(--bw-muted); font-size: .94rem; }

.bw-steps { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 16px; }
.bw-step {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--bw-line);
    border-radius: 999px;
    padding: 8px 14px 8px 8px;
    font-size: .86rem;
    font-weight: 600;
    color: var(--bw-muted);
}
.bw-step i {
    font-style: normal;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--bw-grad);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--bw-display);
    font-size: .85rem;
}

.bw-money { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 10px 0; }
.bw-money span { font-size: .86rem; font-weight: 600; color: var(--bw-muted); }
.bw-money-btn {
    border: 1.5px solid var(--bw-line);
    background: #fff;
    border-radius: 999px;
    padding: 7px 14px;
    font-weight: 700;
    font-size: .84rem;
    cursor: pointer;
}
.bw-money-btn.is-on { background: var(--bw-grad); color: #fff; border-color: transparent; }

.bw-menu-list { display: grid; gap: 10px; margin-top: 12px; }
.bw-menu-item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 14px;
    align-items: center;
    background: #fff;
    border: 2px solid var(--bw-line);
    border-radius: 16px;
    padding: 12px 16px;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: inherit;
    width: 100%;
    transition: border-color .15s, box-shadow .15s;
}
.bw-menu-item:hover { border-color: #f0a8cb; }
.bw-menu-item.is-on {
    border-color: var(--bw-magenta);
    box-shadow: 0 0 0 3px rgba(232, 62, 140, .15);
}
.bw-menu-item img { width: 48px; height: 48px; object-fit: contain; }
.bw-menu-item strong { font-family: var(--bw-display); font-size: 1.1rem; display: block; }
.bw-menu-item small { color: var(--bw-muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.bw-menu-item .bw-price { font-weight: 800; color: var(--bw-magenta); font-size: 1.05rem; white-space: nowrap; }

.bw-state { display: flex; align-items: center; gap: 10px; color: var(--bw-muted); margin: 16px 0; font-size: .92rem; }
.bw-spin {
    width: 18px; height: 18px;
    border: 2.5px solid rgba(232,62,140,.2);
    border-top-color: var(--bw-magenta);
    border-radius: 50%;
    animation: bwSpin .7s linear infinite;
}
@keyframes bwSpin { to { transform: rotate(360deg); } }

.bw-slip {
    margin-top: 36px;
    background: #fff;
    border: 1px solid var(--bw-line);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--bw-shadow);
}
.bw-slip-top {
    background: var(--bw-deep);
    color: #fff;
    padding: 22px 28px;
    position: relative;
}
.bw-slip-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(280px 140px at 90% 0%, rgba(62,198,255,.35), transparent 70%);
}
.bw-slip-top h2 { color: #fff; position: relative; font-size: 1.25rem; }
.bw-slip-top p { color: #c9b8e0; font-size: .88rem; position: relative; }
.bw-slip-body { padding: 24px 28px 28px; }
.bw-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bw-field { display: grid; gap: 6px; }
.bw-field--full { grid-column: 1 / -1; }
.bw-field label { font-weight: 600; font-size: .9rem; }
.bw-field label i { color: var(--bw-magenta); font-style: normal; }
.bw-field input[type="text"],
.bw-field input[type="email"] {
    border: 1.5px solid var(--bw-line);
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
    background: #fffafc;
    width: 100%;
}
.bw-field input:focus { outline: none; border-color: var(--bw-magenta); box-shadow: 0 0 0 3px rgba(232,62,140,.12); }
.bw-field input[readonly] { background: #f7eef4; color: var(--bw-muted); }
.bw-field .bw-err { display: none; color: #c62828; font-size: .8rem; }
.bw-field.has-err input { border-color: #c62828; }
.bw-field.has-err .bw-err { display: block; }
.bw-hint { font-size: .78rem; color: var(--bw-muted); }

.bw-pays { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.bw-pay {
    position: relative;
    border: 1.5px solid var(--bw-line);
    border-radius: 14px;
    padding: 12px 10px;
    text-align: center;
    font-size: .84rem;
    font-weight: 600;
    cursor: pointer;
    background: #fffafc;
}
.bw-pay input { position: absolute; opacity: 0; pointer-events: none; }
.bw-pay .bw-pay-mark {
    display: block;
    width: 32px; height: 32px;
    margin: 0 auto 6px;
    border-radius: 10px;
    background: var(--bw-grad);
    color: #fff;
    line-height: 32px;
    font-family: var(--bw-display);
}
.bw-pay.is-on { border-color: var(--bw-magenta); background: #fff0f6; box-shadow: 0 0 0 3px rgba(232,62,140,.12); }
.bw-pay--ghost { opacity: .5; cursor: not-allowed; border-style: dashed; }
.bw-pay--ghost .bw-pay-mark { background: #b8aec8; }

.bw-agree {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #fffafc;
    border: 1.5px solid var(--bw-line);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: .86rem;
    color: var(--bw-muted);
}
.bw-agree input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--bw-magenta); flex: 0 0 18px; }
.bw-sum {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    background: linear-gradient(135deg, rgba(232,62,140,.08), rgba(62,198,255,.08));
    border: 1px solid rgba(232,62,140,.18);
    border-radius: 14px;
    padding: 14px 16px;
}
.bw-sum strong { font-family: var(--bw-display); }
.bw-sum .bw-sum-price { font-size: 1.25rem; color: var(--bw-magenta); font-weight: 800; }

.bw-alert {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 16px;
    font-size: .9rem;
}
.bw-alert--err { background: #fdecea; border: 1px solid #f5c6c2; color: #b71c1c; }
.bw-shake { animation: bwShake .35s ease; }
@keyframes bwShake {
    0%,100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* confirm / result */
.bw-narrow { max-width: 720px; margin: 0 auto; }
.bw-pass {
    background: #fff;
    border: 1px solid var(--bw-line);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--bw-shadow);
}
.bw-pass-top {
    background: var(--bw-deep);
    color: #fff;
    padding: 26px 28px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    position: relative;
}
.bw-pass-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(260px 140px at 90% 0%, rgba(62,198,255,.35), transparent 70%);
}
.bw-pass-top h1 { color: #fff; font-size: 1.4rem; position: relative; }
.bw-pass-top p { color: #c9b8e0; font-size: .86rem; position: relative; }
.bw-badge {
    position: relative;
    background: var(--bw-grad-warm);
    border-radius: 12px;
    padding: 8px 14px;
    font-family: var(--bw-display);
    font-size: .8rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.bw-pass-body { padding: 24px 28px; }
.bw-rows { border: 1px solid var(--bw-line); border-radius: 14px; overflow: hidden; }
.bw-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 10px;
    padding: 11px 14px;
    font-size: .9rem;
}
.bw-row:nth-child(odd) { background: #fffafc; }
.bw-row dt { color: var(--bw-muted); }
.bw-row dd { font-weight: 600; word-break: break-word; }
.bw-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(232,62,140,.08), rgba(62,198,255,.08));
    border: 1px solid rgba(232,62,140,.18);
}
.bw-total span { font-family: var(--bw-display); font-size: 1.4rem; color: var(--bw-magenta); }
.bw-count {
    margin-top: 18px;
    text-align: center;
    border: 1.5px dashed rgba(232,62,140,.4);
    border-radius: 14px;
    padding: 18px;
    background: #fffafc;
}
.bw-count-num { font-family: var(--bw-display); font-size: 1.8rem; color: var(--bw-magenta); }
.bw-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; justify-content: center; }
.bw-result { text-align: center; padding: 40px 28px; }
.bw-result-ico {
    width: 84px; height: 84px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.bw-result-ico--ok { background: linear-gradient(135deg, #6fdc6a, #3ec6ff); }
.bw-result-ico--bad { background: linear-gradient(135deg, #e83e8c, #c62828); }
.bw-result h1 { font-size: 1.7rem; margin-bottom: 8px; }
.bw-result p { color: var(--bw-muted); max-width: 440px; margin: 0 auto 8px; }

/* footer */
.bw-foot { margin-top: 60px; background: var(--bw-deep); color: #d5cbe8; flex-shrink: 0; }
.bw-foot-grid {
    width: min(1120px, calc(100% - 28px));
    margin: 0 auto;
    padding: 48px 0 28px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 24px;
}
.bw-foot-brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 10px; color: #fff; }
.bw-foot-brand img { border-radius: 12px; background: #0a1a2e; }
.bw-foot-brand span { font-family: var(--bw-display); font-weight: 700; }
.bw-foot p { font-size: .86rem; color: #a994c8; max-width: 280px; }
.bw-foot h3 { color: #fff; font-size: .92rem; margin-bottom: 12px; }
.bw-foot a, .bw-foot span {
    display: block;
    color: #d5cbe8;
    font-size: .88rem;
    padding: 3px 0;
}
.bw-foot a:hover { color: #fff; }
.bw-foot-bar {
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    padding: 16px;
    font-size: .82rem;
    color: #8f7eae;
}

@media (max-width: 960px) {
    .bw-foot-grid { grid-template-columns: 1fr 1fr; }
    .bw-shots { grid-template-columns: repeat(2, 1fr); }
    .bw-pays { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
    .bw-toggle { display: inline-flex; }
    .bw-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 14px;
        right: 14px;
        flex-direction: column;
        background: #fff;
        border: 1px solid var(--bw-line);
        border-radius: 18px;
        padding: 10px;
        box-shadow: var(--bw-shadow);
    }
    .bw-menu.is-open { display: flex; }
    .bw-menu a { border: 0; text-align: center; padding: 12px; border-radius: 10px; }
    .bw-menu a.bw-shop-link { margin: 6px 0 0; }
    .bw-open-ticket, .bw-about, .bw-zig-row, .bw-board, .bw-fields, .bw-rail { grid-template-columns: 1fr; }
    .bw-zig-row--flip > .bw-zig-media { order: 0; }
    .bw-about-art { position: static; }
    .bw-open-side { display: none; }
    .bw-trio, .bw-methods, .bw-feats { grid-template-columns: 1fr; }
    .bw-intro { grid-template-columns: 1fr; text-align: center; }
    .bw-intro img { margin: 0 auto; }
}
@media (max-width: 560px) {
    .bw-foot-grid { grid-template-columns: 1fr; }
    .bw-row { grid-template-columns: 1fr; gap: 2px; }
    .bw-pays { grid-template-columns: 1fr; }
    .bw-brand-stack em { display: none; }
}
