/* ============================================================
   BRIGHTON PATH LLC — storefront theme
   Palette lifted from brand art: violet / cyan / gold on lavender mist
   ============================================================ */
:root {
    --bp-ink: #221c46;
    --bp-muted: #6f6a92;
    --bp-violet: #7c3aed;
    --bp-violet-deep: #5521b5;
    --bp-cyan: #06b6d4;
    --bp-gold: #f5a524;
    --bp-pink: #ec4899;
    --bp-bg: #f5f3fe;
    --bp-card: #ffffff;
    --bp-line: #e7e2f8;
    --bp-deep: #17123a;
    --bp-grad: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    --bp-grad-warm: linear-gradient(135deg, #f5a524 0%, #ec4899 100%);
    --bp-radius: 22px;
    --bp-radius-lg: 32px;
    --bp-shadow: 0 18px 42px -18px rgba(76, 29, 149, .28);
    --bp-shadow-soft: 0 10px 26px -14px rgba(76, 29, 149, .22);
    --bp-font-display: 'Baloo 2', 'Comic Sans MS', cursive;
    --bp-font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--bp-font-body);
    color: var(--bp-ink);
    background:
        radial-gradient(900px 480px at 92% -6%, rgba(6, 182, 212, .14), transparent 60%),
        radial-gradient(820px 460px at -8% 12%, rgba(124, 58, 237, .12), transparent 60%),
        var(--bp-bg);
    line-height: 1.65;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img { max-width: 100%; height: auto; }
a { color: var(--bp-violet); text-decoration: none; }
a:hover { color: var(--bp-violet-deep); }

h1, h2, h3, h4 {
    font-family: var(--bp-font-display);
    line-height: 1.2;
    color: var(--bp-ink);
}

.bp-main { flex: 1 0 auto; }

/* ---------------- floating pill navigation ---------------- */
.bp-navwrap {
    position: sticky;
    top: 14px;
    z-index: 60;
    display: flex;
    justify-content: center;
    padding: 14px 16px 0;
}

.bp-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    width: min(1140px, 100%);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--bp-line);
    border-radius: 999px;
    padding: 8px 10px;
    box-shadow: var(--bp-shadow-soft);
}

.bp-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 14px 4px 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(124, 58, 237, .10), rgba(6, 182, 212, .10));
}

.bp-brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: block;
    background: #0b2a6b;
}

.bp-brand-word {
    font-family: var(--bp-font-display);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: .04em;
    color: var(--bp-ink);
    white-space: nowrap;
}

.bp-brand-word em {
    font-style: normal;
    background: var(--bp-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bp-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.bp-links a {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    color: var(--bp-ink);
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.bp-links a:hover { background: #f0ebff; color: var(--bp-violet); transform: translateY(-1px); }
.bp-links a.is-active { background: #efeaff; color: var(--bp-violet); }

.bp-links a.bp-store-btn {
    background: var(--bp-grad);
    color: #fff;
    font-weight: 700;
    padding: 10px 22px;
    box-shadow: 0 10px 20px -8px rgba(124, 58, 237, .55);
    position: relative;
}

.bp-links a.bp-store-btn::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 999px;
    border: 2px solid rgba(124, 58, 237, .35);
    animation: bpPulse 2.2s ease-out infinite;
}

.bp-links a.bp-store-btn:hover { color: #fff; filter: brightness(1.08); }
.bp-links a.bp-store-btn.is-active { background: var(--bp-grad); color: #fff; }

@keyframes bpPulse {
    0% { transform: scale(1); opacity: .8; }
    70% { transform: scale(1.12); opacity: 0; }
    100% { transform: scale(1.12); opacity: 0; }
}

.bp-burger {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 1px solid var(--bp-line);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.bp-burger span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--bp-ink);
    transition: transform .2s ease, opacity .2s ease;
}

.bp-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bp-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.bp-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- shared layout helpers ---------------- */
.bp-wrap { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }

.bp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--bp-violet);
    background: rgba(124, 58, 237, .1);
    border: 1px solid rgba(124, 58, 237, .22);
    padding: 7px 14px;
    border-radius: 999px;
}

.bp-kicker::before {
    content: '';
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--bp-grad);
}

.bp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--bp-font-display);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 30px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.bp-btn--grad { background: var(--bp-grad); color: #fff; box-shadow: 0 14px 28px -10px rgba(124, 58, 237, .55); }
.bp-btn--grad:hover { color: #fff; transform: translateY(-2px); filter: brightness(1.07); }
.bp-btn--ghost {
    background: #fff;
    color: var(--bp-violet);
    border: 1.5px solid rgba(124, 58, 237, .35);
}
.bp-btn--ghost:hover { background: #f4efff; transform: translateY(-2px); }
.bp-btn--warm { background: var(--bp-grad-warm); color: #fff; box-shadow: 0 14px 28px -10px rgba(236, 72, 153, .5); }
.bp-btn--warm:hover { color: #fff; transform: translateY(-2px); filter: brightness(1.06); }

.bp-sect { padding: 64px 0; }
.bp-sect-head { max-width: 640px; margin-bottom: 36px; }
.bp-sect-head h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin: 14px 0 10px; }
.bp-sect-head p { color: var(--bp-muted); }

.bp-reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.bp-reveal.is-in { opacity: 1; transform: none; }

/* ---------------- home: stage card ---------------- */
.bp-stage { padding: 26px 16px 0; }

.bp-stage-card {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    border-radius: var(--bp-radius-lg);
    overflow: hidden;
    box-shadow: var(--bp-shadow);
    isolation: isolate;
}

.bp-stage-art {
    width: 100%;
    height: clamp(380px, 52vw, 560px);
    object-fit: cover;
    object-position: center;
    display: block;
}

.bp-stage-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(92deg, rgba(23, 14, 66, .88) 0%, rgba(23, 14, 66, .55) 46%, rgba(23, 14, 66, 0) 72%);
    z-index: 1;
}

.bp-stage-copy {
    position: absolute;
    z-index: 2;
    left: clamp(22px, 6vw, 68px);
    top: 50%;
    transform: translateY(-50%);
    max-width: 520px;
    color: #fff;
}

.bp-stage-copy .bp-kicker {
    color: #a5f3fc;
    background: rgba(6, 182, 212, .16);
    border-color: rgba(165, 243, 252, .35);
}

.bp-stage-copy h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin: 18px 0 14px;
}

.bp-stage-copy p {
    color: #d9d4f5;
    font-size: clamp(.95rem, 1.6vw, 1.08rem);
    margin-bottom: 26px;
}

.bp-stage-chips {
    position: absolute;
    z-index: 2;
    right: clamp(18px, 4vw, 46px);
    bottom: clamp(18px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bp-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 16px;
    padding: 10px 16px;
    font-size: .85rem;
    font-weight: 600;
}

.bp-chip strong { font-family: var(--bp-font-display); font-size: 1.05rem; }
.bp-chip .bp-dot { width: 10px; height: 10px; border-radius: 50%; }
.bp-dot--cyan { background: #22d3ee; }
.bp-dot--gold { background: #fbbf24; }
.bp-dot--pink { background: #f472b6; }

/* play buttons row */
.bp-playrow { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }

.bp-playrow-btn {
    display: inline-flex;
    border-radius: 18px;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
    box-shadow: 0 12px 24px -12px rgba(23, 14, 66, .5);
}

.bp-playrow-btn:hover { transform: translateY(-3px) scale(1.02); }
.bp-playrow-btn img { display: block; width: 190px; height: auto; }

/* ---------------- home: duo preview rows ---------------- */
.bp-duo {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}

.bp-duo--flip > .bp-duo-art { order: 2; }

.bp-duo-art { position: relative; }

.bp-duo-art img {
    border-radius: var(--bp-radius-lg);
    box-shadow: var(--bp-shadow);
    display: block;
    width: 100%;
}

.bp-duo-art::before {
    content: '';
    position: absolute;
    inset: 14px -14px -14px 14px;
    border-radius: var(--bp-radius-lg);
    background: var(--bp-grad);
    opacity: .16;
    z-index: -1;
}

.bp-duo-copy h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); margin: 14px 0 12px; }
.bp-duo-copy p { color: var(--bp-muted); margin-bottom: 14px; }

.bp-mini-feats { list-style: none; margin: 18px 0 24px; display: grid; gap: 10px; }

.bp-mini-feats li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--bp-card);
    border: 1px solid var(--bp-line);
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: var(--bp-shadow-soft);
    font-size: .94rem;
}

.bp-mini-feats svg { flex: 0 0 20px; margin-top: 2px; }

.bp-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    margin-top: 6px;
}

.bp-more::after { content: '\2192'; transition: transform .18s ease; }
.bp-more:hover::after { transform: translateX(4px); }

/* ---------------- home: store teaser + contact strip ---------------- */
.bp-cta-panel {
    position: relative;
    border-radius: var(--bp-radius-lg);
    overflow: hidden;
    background: var(--bp-deep);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
    padding: clamp(28px, 5vw, 56px);
    isolation: isolate;
}

.bp-cta-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(420px 260px at 88% 20%, rgba(245, 165, 36, .28), transparent 65%),
        radial-gradient(520px 320px at 8% 90%, rgba(124, 58, 237, .45), transparent 70%),
        radial-gradient(300px 220px at 55% 110%, rgba(6, 182, 212, .35), transparent 70%);
    z-index: -1;
}

.bp-cta-panel h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 10px; }
.bp-cta-panel p { color: #cfc9ee; max-width: 540px; margin-bottom: 22px; }

.bp-cta-coin {
    width: clamp(120px, 18vw, 190px);
    filter: drop-shadow(0 18px 26px rgba(245, 165, 36, .35));
    animation: bpFloat 4.5s ease-in-out infinite;
}

@keyframes bpFloat {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50% { transform: translateY(-14px) rotate(5deg); }
}

.bp-contact-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.bp-contact-cell {
    background: var(--bp-card);
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius);
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: var(--bp-shadow-soft);
    transition: transform .18s ease, box-shadow .18s ease;
}

.bp-contact-cell:hover { transform: translateY(-4px); box-shadow: var(--bp-shadow); }

.bp-ico {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--bp-grad);
}

.bp-ico--warm { background: var(--bp-grad-warm); }
.bp-ico--deep { background: linear-gradient(135deg, #17123a, #5521b5); }

.bp-contact-cell h3 { font-size: 1rem; margin-bottom: 2px; }
.bp-contact-cell p, .bp-contact-cell a { font-size: .92rem; color: var(--bp-muted); word-break: break-word; }
.bp-contact-cell a:hover { color: var(--bp-violet); }

/* ---------------- inner page band ---------------- */
.bp-band {
    position: relative;
    margin: 26px auto 0;
    max-width: 1140px;
    width: calc(100% - 32px);
    border-radius: var(--bp-radius-lg);
    background: var(--bp-deep);
    color: #fff;
    padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 60px);
    overflow: hidden;
    isolation: isolate;
}

.bp-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(460px 260px at 90% 0%, rgba(6, 182, 212, .35), transparent 65%),
        radial-gradient(420px 300px at 4% 100%, rgba(124, 58, 237, .4), transparent 70%);
    z-index: -1;
}

.bp-band .bp-kicker { color: #e9d5ff; background: rgba(124, 58, 237, .25); border-color: rgba(233, 213, 255, .3); }
.bp-band h1 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 2.9rem); margin: 16px 0 10px; }
.bp-band p { color: #cfc9ee; max-width: 620px; }

.bp-crumbs { font-size: .85rem; color: #a99ed6; margin-bottom: 6px; }
.bp-crumbs a { color: #c4b5fd; }
.bp-crumbs a:hover { color: #fff; }

/* ---------------- about page ---------------- */
.bp-about-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: clamp(26px, 4.5vw, 54px);
    align-items: start;
}

.bp-facts {
    position: sticky;
    top: 110px;
    background: var(--bp-card);
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius-lg);
    box-shadow: var(--bp-shadow-soft);
    overflow: hidden;
}

.bp-facts img { width: 100%; display: block; aspect-ratio: 1 / 1; object-fit: cover; }

.bp-facts-body { padding: 22px; }
.bp-facts-body h2 { font-size: 1.15rem; margin-bottom: 12px; }

.bp-facts dl { display: grid; gap: 10px; }
.bp-facts dt {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--bp-violet);
}
.bp-facts dd { font-size: .92rem; color: var(--bp-ink); margin-bottom: 6px; word-break: break-word; }

.bp-richtext h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 30px 0 12px; }
.bp-richtext h2:first-child { margin-top: 0; }
.bp-richtext p { color: var(--bp-muted); margin-bottom: 14px; }

.bp-vision {
    margin-top: 30px;
    border-radius: var(--bp-radius-lg);
    padding: clamp(24px, 4vw, 40px);
    background: linear-gradient(135deg, rgba(124, 58, 237, .1), rgba(6, 182, 212, .1));
    border: 1px solid rgba(124, 58, 237, .2);
    position: relative;
}

.bp-vision::before {
    content: '\201C';
    position: absolute;
    top: -6px;
    left: 22px;
    font-family: var(--bp-font-display);
    font-size: 5rem;
    line-height: 1;
    background: var(--bp-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bp-vision h2 { margin: 18px 0 10px; font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.bp-vision p { color: var(--bp-ink); font-size: 1.02rem; }

.bp-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; }

.bp-value {
    background: var(--bp-card);
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius);
    padding: 20px;
    box-shadow: var(--bp-shadow-soft);
}

.bp-value h3 { font-size: 1rem; margin: 10px 0 6px; }
.bp-value p { font-size: .88rem; color: var(--bp-muted); }

/* ---------------- game page ---------------- */
.bp-zig { display: grid; gap: 44px; }

.bp-zig-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(26px, 5vw, 60px);
    align-items: center;
}

.bp-zig-row--rev > .bp-zig-art { order: 2; }

.bp-zig-art img { border-radius: var(--bp-radius-lg); box-shadow: var(--bp-shadow); width: 100%; display: block; }
.bp-zig-copy h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 12px 0 12px; }
.bp-zig-copy p { color: var(--bp-muted); margin-bottom: 12px; }

.bp-feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.bp-feat {
    background: var(--bp-card);
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius);
    padding: 24px;
    box-shadow: var(--bp-shadow-soft);
    position: relative;
    overflow: hidden;
}

.bp-feat::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--bp-grad);
}

.bp-feat .bp-num {
    font-family: var(--bp-font-display);
    font-weight: 800;
    font-size: 1.9rem;
    background: var(--bp-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bp-feat h3 { font-size: 1.05rem; margin: 6px 0 8px; }
.bp-feat p { font-size: .9rem; color: var(--bp-muted); }

.bp-shots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.bp-shots img {
    border-radius: 18px;
    border: 1px solid var(--bp-line);
    box-shadow: var(--bp-shadow-soft);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
    transition: transform .2s ease;
}

.bp-shots img:hover { transform: translateY(-5px) rotate(-1deg); }

/* ---------------- contact page ---------------- */
.bp-cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.bp-method {
    background: var(--bp-card);
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius-lg);
    padding: 30px 26px;
    box-shadow: var(--bp-shadow-soft);
    text-align: center;
    transition: transform .18s ease, box-shadow .18s ease;
}

.bp-method:hover { transform: translateY(-5px); box-shadow: var(--bp-shadow); }
.bp-method .bp-ico { margin: 0 auto 16px; width: 58px; height: 58px; border-radius: 18px; }
.bp-method h2 { font-size: 1.1rem; margin-bottom: 6px; }
.bp-method p, .bp-method a { font-size: .95rem; color: var(--bp-muted); word-break: break-word; }
.bp-method a { font-weight: 600; }
.bp-method a:hover { color: var(--bp-violet); }

.bp-wide-banner {
    position: relative;
    border-radius: var(--bp-radius-lg);
    overflow: hidden;
    box-shadow: var(--bp-shadow);
}

.bp-wide-banner img { width: 100%; display: block; max-height: 420px; object-fit: cover; }

.bp-wide-banner figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 60px 28px 22px;
    background: linear-gradient(180deg, transparent, rgba(23, 14, 66, .82));
    color: #fff;
    font-family: var(--bp-font-display);
    font-weight: 700;
    font-size: clamp(1.05rem, 2.4vw, 1.4rem);
}

.bp-note-panel {
    background: var(--bp-card);
    border: 1px dashed rgba(124, 58, 237, .4);
    border-radius: var(--bp-radius);
    padding: 20px 24px;
    color: var(--bp-muted);
    font-size: .94rem;
}

/* ---------------- store page ---------------- */
.bp-intro-panel {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 26px;
    align-items: center;
    background: var(--bp-card);
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius-lg);
    padding: clamp(22px, 4vw, 36px);
    box-shadow: var(--bp-shadow-soft);
}

.bp-intro-panel img { width: clamp(96px, 14vw, 150px); filter: drop-shadow(0 12px 20px rgba(245, 165, 36, .4)); }
.bp-intro-panel h2 { font-size: clamp(1.25rem, 2.6vw, 1.7rem); margin-bottom: 8px; }
.bp-intro-panel p { color: var(--bp-muted); font-size: .96rem; }

.bp-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0 22px;
}

.bp-step-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bp-card);
    border: 1px solid var(--bp-line);
    border-radius: 999px;
    padding: 9px 18px 9px 9px;
    font-weight: 600;
    font-size: .9rem;
    color: var(--bp-muted);
}

.bp-step-pill b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--bp-grad);
    color: #fff;
    font-family: var(--bp-font-display);
}

.bp-currency-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.bp-currency-row span { font-size: .88rem; font-weight: 600; color: var(--bp-muted); }

.bp-cur-btn {
    border: 1.5px solid var(--bp-line);
    background: var(--bp-card);
    border-radius: 999px;
    padding: 8px 18px;
    font-weight: 700;
    font-size: .88rem;
    color: var(--bp-ink);
    cursor: pointer;
    transition: all .16s ease;
}

.bp-cur-btn:hover { border-color: var(--bp-violet); color: var(--bp-violet); }
.bp-cur-btn.is-on { background: var(--bp-grad); border-color: transparent; color: #fff; }

.bp-packgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.bp-pack {
    position: relative;
    background: var(--bp-card);
    border: 2px solid var(--bp-line);
    border-radius: var(--bp-radius);
    padding: 22px 18px 18px;
    text-align: center;
    cursor: pointer;
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
    user-select: none;
}

.bp-pack:hover { transform: translateY(-4px); box-shadow: var(--bp-shadow-soft); }

.bp-pack.is-on {
    border-color: var(--bp-violet);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, .15), var(--bp-shadow-soft);
}

.bp-pack.is-on::after {
    content: '\2713';
    position: absolute;
    top: -12px; right: -10px;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--bp-grad);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--bp-shadow-soft);
}

.bp-pack img { width: 62px; height: 62px; object-fit: contain; margin-bottom: 10px; }

.bp-pack-amount {
    font-family: var(--bp-font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--bp-ink);
}

.bp-pack-kind {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--bp-violet);
    background: rgba(124, 58, 237, .1);
    border-radius: 999px;
    padding: 3px 10px;
    margin: 6px 0 10px;
}

.bp-pack-price { font-weight: 700; color: var(--bp-violet-deep); font-size: 1.02rem; }

.bp-packstate { margin: 26px 0; color: var(--bp-muted); font-size: .95rem; display: flex; align-items: center; gap: 12px; }

.bp-spinner {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 3px solid rgba(124, 58, 237, .2);
    border-top-color: var(--bp-violet);
    animation: bpSpin .8s linear infinite;
}

@keyframes bpSpin { to { transform: rotate(360deg); } }

/* order panel */
.bp-order {
    margin-top: 44px;
    background: var(--bp-card);
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius-lg);
    box-shadow: var(--bp-shadow);
    overflow: hidden;
}

.bp-order-head {
    background: var(--bp-deep);
    color: #fff;
    padding: 24px clamp(20px, 4vw, 38px);
    position: relative;
    overflow: hidden;
}

.bp-order-head::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(360px 180px at 92% 0%, rgba(6, 182, 212, .35), transparent 70%);
}

.bp-order-head h2 { color: #fff; font-size: 1.35rem; position: relative; }
.bp-order-head p { color: #b6aee0; font-size: .9rem; position: relative; margin-top: 4px; }

.bp-order-body { padding: clamp(20px, 4vw, 38px); }

.bp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.bp-field { display: grid; gap: 7px; }
.bp-field--full { grid-column: 1 / -1; }

.bp-field label { font-weight: 600; font-size: .9rem; }
.bp-field label i { color: var(--bp-pink); font-style: normal; }

.bp-field input[type="text"],
.bp-field input[type="email"] {
    border: 1.5px solid var(--bp-line);
    border-radius: 14px;
    padding: 13px 16px;
    font-size: .95rem;
    font-family: var(--bp-font-body);
    color: var(--bp-ink);
    background: #fbfaff;
    transition: border-color .16s ease, box-shadow .16s ease;
    width: 100%;
}

.bp-field input:focus {
    outline: none;
    border-color: var(--bp-violet);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, .12);
    background: #fff;
}

.bp-field input[readonly] { background: #f1eefb; color: var(--bp-muted); cursor: not-allowed; }

.bp-field .bp-err {
    display: none;
    font-size: .8rem;
    color: #dc2626;
    font-weight: 500;
}

.bp-field.has-err input { border-color: #dc2626; }
.bp-field.has-err .bp-err { display: block; }

.bp-hint { font-size: .8rem; color: var(--bp-muted); }

.bp-paygrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

.bp-pay {
    position: relative;
    border: 1.5px solid var(--bp-line);
    border-radius: 16px;
    padding: 14px 12px;
    text-align: center;
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    background: #fbfaff;
    transition: all .16s ease;
}

.bp-pay:hover { border-color: var(--bp-violet); }
.bp-pay input { position: absolute; opacity: 0; pointer-events: none; }

.bp-pay .bp-pay-ico {
    display: block;
    margin: 0 auto 8px;
    width: 34px; height: 34px;
    border-radius: 10px;
    background: var(--bp-grad);
    color: #fff;
    font-family: var(--bp-font-display);
    font-weight: 800;
    line-height: 34px;
    font-size: .95rem;
}

.bp-pay.is-on {
    border-color: var(--bp-violet);
    background: #f4efff;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, .12);
}

.bp-pay--ghost { opacity: .55; cursor: not-allowed; border-style: dashed; }
.bp-pay--ghost:hover { border-color: var(--bp-line); }
.bp-pay--ghost .bp-pay-ico { background: #b7b3cf; }

.bp-agree {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fbfaff;
    border: 1.5px solid var(--bp-line);
    border-radius: 14px;
    padding: 14px 16px;
    font-size: .88rem;
    color: var(--bp-muted);
}

.bp-agree input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--bp-violet); flex: 0 0 18px; }
.bp-agree a { font-weight: 600; }

.bp-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: linear-gradient(135deg, rgba(124, 58, 237, .08), rgba(6, 182, 212, .08));
    border: 1px solid rgba(124, 58, 237, .18);
    border-radius: 16px;
    padding: 16px 20px;
}

.bp-summary strong { font-family: var(--bp-font-display); font-size: 1.15rem; }
.bp-summary .bp-sum-price { font-size: 1.35rem; color: var(--bp-violet-deep); }

.bp-alert {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border-radius: 14px;
    padding: 14px 18px;
    font-size: .92rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.bp-alert--err { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }
.bp-alert--info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1d4ed8; }

.bp-shake { animation: bpShake .4s ease; }
@keyframes bpShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

/* ---------------- confirm / result pages ---------------- */
.bp-narrow { max-width: 780px; margin: 0 auto; }

.bp-pass {
    background: var(--bp-card);
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius-lg);
    box-shadow: var(--bp-shadow);
    overflow: hidden;
}

.bp-pass-top {
    background: var(--bp-deep);
    color: #fff;
    padding: 30px clamp(22px, 5vw, 44px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.bp-pass-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(300px 160px at 90% 10%, rgba(6, 182, 212, .4), transparent 70%);
}

.bp-pass-top h1 { color: #fff; font-size: clamp(1.3rem, 3vw, 1.8rem); position: relative; }
.bp-pass-top p { color: #b6aee0; font-size: .88rem; position: relative; }

.bp-pass-badge {
    position: relative;
    flex: 0 0 auto;
    background: var(--bp-grad);
    border-radius: 16px;
    padding: 10px 18px;
    font-family: var(--bp-font-display);
    font-weight: 800;
    font-size: .9rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bp-pass-body { padding: clamp(22px, 5vw, 44px); }

.bp-pass-rows { display: grid; border: 1px solid var(--bp-line); border-radius: 16px; overflow: hidden; }

.bp-pass-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 12px;
    padding: 13px 18px;
    font-size: .93rem;
}

.bp-pass-row:nth-child(odd) { background: #faf8ff; }
.bp-pass-row dt { color: var(--bp-muted); font-weight: 500; }
.bp-pass-row dd { font-weight: 600; word-break: break-word; }

.bp-pass-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    padding: 16px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(124, 58, 237, .1), rgba(6, 182, 212, .1));
    border: 1px solid rgba(124, 58, 237, .2);
}

.bp-pass-total strong { font-size: 1rem; }
.bp-pass-total span { font-family: var(--bp-font-display); font-weight: 800; font-size: 1.5rem; color: var(--bp-violet-deep); }

.bp-count-box {
    margin-top: 22px;
    text-align: center;
    background: #fbfaff;
    border: 1.5px dashed rgba(124, 58, 237, .4);
    border-radius: 16px;
    padding: 22px;
}

.bp-count-box p { color: var(--bp-muted); font-size: .92rem; margin-bottom: 12px; }
.bp-count-num { font-family: var(--bp-font-display); font-weight: 800; font-size: 2rem; color: var(--bp-violet); }

.bp-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; justify-content: center; }

.bp-result { text-align: center; padding: clamp(30px, 6vw, 60px) clamp(20px, 4vw, 44px); }

.bp-result-ico {
    width: 92px; height: 92px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.bp-result-ico--ok { background: linear-gradient(135deg, #22c55e, #06b6d4); box-shadow: 0 18px 34px -12px rgba(34, 197, 94, .5); }
.bp-result-ico--bad { background: linear-gradient(135deg, #ef4444, #ec4899); box-shadow: 0 18px 34px -12px rgba(239, 68, 68, .5); }

.bp-result h1 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); margin-bottom: 10px; }
.bp-result p { color: var(--bp-muted); max-width: 480px; margin: 0 auto 8px; }
.bp-result .bp-ref { font-weight: 700; color: var(--bp-ink); }

/* ---------------- footer ---------------- */
.bp-foot {
    margin-top: 70px;
    background: var(--bp-deep);
    color: #cfc9ee;
    flex-shrink: 0;
}

.bp-foot-inner {
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
    padding: 52px 0 30px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 30px;
}

.bp-foot-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.bp-foot-brand img { border-radius: 50%; background: #0b2a6b; }
.bp-foot-brand span { font-family: var(--bp-font-display); font-weight: 800; color: #fff; font-size: 1rem; }

.bp-foot-col p { font-size: .88rem; color: #a99ed6; max-width: 300px; }

.bp-foot-col h3 {
    color: #fff;
    font-size: .95rem;
    margin-bottom: 14px;
    letter-spacing: .04em;
}

.bp-foot-col a, .bp-foot-addr {
    display: block;
    color: #cfc9ee;
    font-size: .9rem;
    padding: 4px 0;
    transition: color .15s ease, transform .15s ease;
}

.bp-foot-col a:hover { color: #fff; transform: translateX(3px); }
.bp-foot-addr { color: #a99ed6; }

.bp-foot-bar {
    border-top: 1px solid rgba(255, 255, 255, .09);
    padding: 18px 16px;
    text-align: center;
    font-size: .84rem;
    color: #8d84ba;
}

/* ---------------- responsive ---------------- */
@media (max-width: 1020px) {
    .bp-packgrid { grid-template-columns: repeat(3, 1fr); }
    .bp-shots { grid-template-columns: repeat(2, 1fr); }
    .bp-foot-inner { grid-template-columns: 1fr 1fr; }
    .bp-paygrid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .bp-burger { display: inline-flex; }

    .bp-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: rgba(255, 255, 255, .98);
        border: 1px solid var(--bp-line);
        border-radius: 24px;
        padding: 12px;
        box-shadow: var(--bp-shadow);
    }

    .bp-links.is-open { display: flex; }
    .bp-links a { display: block; text-align: center; padding: 13px; }

    .bp-duo, .bp-zig-row, .bp-about-grid, .bp-form-grid { grid-template-columns: 1fr; }
    .bp-duo--flip > .bp-duo-art, .bp-zig-row--rev > .bp-zig-art { order: 0; }
    .bp-facts { position: static; }
    .bp-values, .bp-cards3, .bp-contact-strip { grid-template-columns: 1fr; }
    .bp-feat-grid { grid-template-columns: 1fr; }
    .bp-stage-chips { display: none; }
    .bp-stage-copy { max-width: 88%; }
    .bp-cta-panel { grid-template-columns: 1fr; text-align: center; }
    .bp-cta-coin { margin: 0 auto; }
    .bp-cta-panel .bp-btn { margin: 0 auto; }
    .bp-intro-panel { grid-template-columns: 1fr; text-align: center; }
    .bp-intro-panel img { margin: 0 auto; }
}

@media (max-width: 620px) {
    .bp-packgrid { grid-template-columns: repeat(2, 1fr); }
    .bp-brand-word { font-size: .92rem; }
    .bp-pass-row { grid-template-columns: 1fr; gap: 2px; }
    .bp-foot-inner { grid-template-columns: 1fr; }
    .bp-paygrid { grid-template-columns: 1fr; }
    .bp-shots { grid-template-columns: repeat(2, 1fr); }
}
