/*
  SONO XR — Showcase Stage v2 (main-stage architecture).
  Activated by body.sxr-stage-on (config "stage": true — see js/showcase-stage.js).
  The game model: the MAIN viewING area IS whatever module the viewer picks;
  the ambient world is just the Overview/idle state. Sidebars retire.
  Layers: world z1 · STAGE z40 · sidebars z90 (hidden) · HUD/dock z100.
*/
body.sxr-stage-on .showcase-sidebar-left,
body.sxr-stage-on .showcase-sidebar-right { display: none !important; }

#sxr-stage {
  position: absolute; inset: 0; z-index: 40;
  display: none; pointer-events: none;
}
body.sxr-stage-on #sxr-stage { display: block; }
#sxr-stage .sxr-stage-inner {
  position: absolute; left: 24px; right: 24px; top: 84px; bottom: 104px;
  pointer-events: auto;
  animation: sxrStageIn .45s cubic-bezier(.22,1,.36,1) both;
}
#sxr-stage.sxr-idle .sxr-stage-inner { pointer-events: none; }
@keyframes sxrStageIn { from { opacity:0; transform: translateY(14px); } to { opacity:1; transform:none; } }

/* full-bleed media frames (tour / twin / map / video / aerial / pano) */
.sxr-frame {
  position: absolute; inset: 0; border-radius: 14px; overflow: hidden;
  background: #05080f; border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 18px 70px rgba(0,0,0,0.55);
}
.sxr-frame iframe, .sxr-frame video { position:absolute; inset:0; width:100%; height:100%; border:0; object-fit:cover; }
.sxr-frame iframe { object-fit: unset; }
.sxr-frame-label {
  position: absolute; top: 12px; left: 14px; z-index: 2;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.85);
  background: rgba(6,9,14,0.65); border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
}

/* ── OVERVIEW — the property story (Compass-bar storytelling) ── */
.sxr-overview {
  position: absolute; left: 0; top: 0; bottom: 0; width: min(620px, 100%);
  overflow-y: auto; overscroll-behavior: contain; padding: 26px 28px 34px;
  background: linear-gradient(90deg, rgba(6,9,14,0.88) 0%, rgba(6,9,14,0.82) 78%, rgba(6,9,14,0) 100%);
  border-radius: 14px; scrollbar-width: thin;
}
.sxr-overview .ov-badge {
  display:inline-block; font-family:'Barlow Condensed',sans-serif; font-weight:700;
  font-size:0.68rem; letter-spacing:0.16em; text-transform:uppercase; color: var(--sxr-accent, #00f0ff);
  border:1px solid currentColor; border-radius:999px; padding:5px 12px; margin-bottom:16px; opacity:0.9;
}
.sxr-overview h2 {
  font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height:1.04; letter-spacing:0.01em; text-transform:uppercase; color:#fff; margin:0 0 6px;
}
.sxr-overview .ov-meta { font-size:0.82rem; color:rgba(255,255,255,0.6); margin-bottom:16px; }
.sxr-chips { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:20px; }
.sxr-chip {
  font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:0.78rem; letter-spacing:0.06em;
  color:#fff; background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.14);
  border-radius:8px; padding:8px 13px; text-transform:uppercase;
}
.sxr-chip b { color: var(--sxr-accent, #00f0ff); margin-right:6px; }
.sxr-overview p.ov-desc { font-size:0.94rem; line-height:1.65; color:rgba(255,255,255,0.82); margin:0 0 18px; }
.sxr-overview h4 {
  font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:0.8rem; letter-spacing:0.14em;
  text-transform:uppercase; color:rgba(255,255,255,0.55); margin:20px 0 10px;
  border-top:1px solid rgba(255,255,255,0.1); padding-top:16px;
}
.sxr-hl { list-style:none; margin:0; padding:0; }
.sxr-hl li { display:flex; gap:10px; font-size:0.88rem; line-height:1.5; color:rgba(255,255,255,0.85); margin-bottom:8px; }
.sxr-hl li::before { content:'—'; color: var(--sxr-accent, #00f0ff); flex-shrink:0; }
.sxr-feat { display:grid; grid-template-columns:1fr 1fr; gap:4px 18px; }
.sxr-feat span { font-size:0.82rem; color:rgba(255,255,255,0.72); padding:3px 0; }

/* overview broker card + CTA row + customize note */
.sxr-ov-broker { display:flex; align-items:center; gap:14px; margin:6px 0 16px; }
.sxr-ov-broker .av { width:52px; height:52px; border-radius:50%; background-size:cover; background-position:center; border:2px solid var(--sxr-accent,#00f0ff); flex-shrink:0; }
.sxr-ov-broker .nm { font-size:0.9rem; font-weight:600; color:#fff; }
.sxr-ov-broker .tt { font-size:0.74rem; color:rgba(255,255,255,0.55); }
.sxr-cta-row { display:flex; gap:10px; flex-wrap:wrap; margin-top:4px; }
.sxr-btn {
  font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:0.8rem; letter-spacing:0.1em;
  text-transform:uppercase; border-radius:999px; padding:12px 22px; cursor:pointer; transition:all .18s ease;
}
.sxr-btn-primary { background:#fff; color:#0a0d12; border:1px solid #fff; }
.sxr-btn-primary:hover { transform:translateY(-1px); box-shadow:0 8px 26px rgba(255,255,255,0.25); }
.sxr-btn-ghost { background:rgba(255,255,255,0.06); color:#fff; border:1px solid rgba(255,255,255,0.22); }
.sxr-btn-ghost:hover { border-color:rgba(255,255,255,0.5); }
.sxr-customize-note {
  display:flex; align-items:center; gap:10px; margin-top:18px; padding:12px 14px;
  border:1px dashed rgba(255,255,255,0.22); border-radius:10px; font-size:0.78rem; color:rgba(255,255,255,0.65);
}
.sxr-customize-note b { color: var(--sxr-accent,#00f0ff); font-weight:700; }
.sxr-customize-note a { color:#fff; text-decoration:underline; cursor:pointer; }

/* ── centered card views (avatar / live / lead) ── */
.sxr-card-view { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.sxr-card {
  width:min(520px, 92%); max-height:100%; overflow-y:auto; background:rgba(8,11,17,0.92);
  border:1px solid rgba(255,255,255,0.12); border-radius:16px; padding:28px 30px;
  box-shadow:0 24px 80px rgba(0,0,0,0.65); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
}
.sxr-card h3 { font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:1.15rem; letter-spacing:0.08em; text-transform:uppercase; color:#fff; margin:0 0 12px; }
.sxr-card p { font-size:0.88rem; line-height:1.6; color:rgba(255,255,255,0.78); }
.sxr-card label { display:block; font-size:0.72rem; letter-spacing:0.08em; text-transform:uppercase; color:rgba(255,255,255,0.5); margin:12px 0 5px; font-family:'Barlow Condensed',sans-serif; font-weight:700; }
.sxr-card input, .sxr-card select, .sxr-card textarea {
  width:100%; box-sizing:border-box; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.15);
  border-radius:8px; color:#fff; padding:11px 12px; font-size:0.9rem; font-family:inherit;
}
.sxr-card input:focus, .sxr-card select:focus, .sxr-card textarea:focus { outline:none; border-color:var(--sxr-accent,#00f0ff); }

/* ── gallery stage ── */
.sxr-gal-main { position:absolute; inset:0 0 96px 0; border-radius:14px; background-size:contain; background-position:center; background-repeat:no-repeat; background-color:#05080f; border:1px solid rgba(255,255,255,0.1); }
.sxr-gal-title { position:absolute; left:16px; bottom:110px; font-family:'Barlow Condensed',sans-serif; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; font-size:0.8rem; color:#fff; background:rgba(6,9,14,0.7); padding:7px 14px; border-radius:999px; border:1px solid rgba(255,255,255,0.12); }
.sxr-gal-strip { position:absolute; left:0; right:0; bottom:0; height:84px; display:flex; gap:8px; overflow-x:auto; scrollbar-width:none; }
.sxr-gal-strip::-webkit-scrollbar { display:none; }
.sxr-gal-thumb { flex:0 0 128px; border-radius:10px; background-size:cover; background-position:center; border:2px solid transparent; cursor:pointer; opacity:0.65; transition:all .18s ease; }
.sxr-gal-thumb.active, .sxr-gal-thumb:hover { opacity:1; border-color:var(--sxr-accent,#00f0ff); }

/* ── 360 pano stage ── */
.sxr-pano-stage { position:absolute; inset:0; border-radius:14px; overflow:hidden; cursor:grab; background-color:#05080f; background-repeat:repeat-x; background-size:auto 100%; border:1px solid rgba(255,255,255,0.1); }
.sxr-pano-stage:active { cursor:grabbing; }

/* ── surface selector on the splash ── */
.sxr-surfaces { display:flex; gap:10px; justify-content:center; margin:18px 0 6px; }
.sxr-surface {
  display:flex; flex-direction:column; align-items:center; gap:6px; cursor:pointer;
  background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.16); border-radius:12px;
  padding:12px 18px; min-width:96px; color:rgba(255,255,255,0.75); transition:all .18s ease;
  font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:0.68rem; letter-spacing:0.12em; text-transform:uppercase;
}
.sxr-surface i { width:20px; height:20px; }
.sxr-surface:hover { border-color:rgba(255,255,255,0.4); color:#fff; }
.sxr-surface.active { border-color:var(--sxr-accent,#00f0ff); color:#fff; background:rgba(0,240,255,0.08); box-shadow:0 0 24px rgba(0,240,255,0.15); }
.sxr-surface .sub { font-size:0.58rem; letter-spacing:0.08em; color:rgba(255,255,255,0.45); font-weight:600; }

/* kiosk surface: bigger touch targets */
body.sxr-kiosk .sxr-dock { transform:scale(1.22); transform-origin:bottom center; }
body.sxr-kiosk .sxr-overview { font-size:1.06em; }
body.sxr-kiosk .sxr-btn { padding:16px 28px; font-size:0.9rem; }
body.sxr-kiosk .sxr-gal-thumb { flex-basis:160px; }

/* ── viewer settings (toggles) ── */
.sxr-settings-btn {
  position:absolute; top:88px; right:24px; z-index:110; width:38px; height:38px;
  display:flex; align-items:center; justify-content:center; border-radius:10px; cursor:pointer;
  background:rgba(6,9,14,0.7); border:1px solid rgba(255,255,255,0.14); color:rgba(255,255,255,0.75);
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); transition:all .18s ease;
}
.sxr-settings-btn:hover { color:#fff; border-color:rgba(255,255,255,0.35); }
.sxr-settings-pop {
  position:absolute; top:134px; right:24px; z-index:110; width:250px; display:none;
  background:rgba(8,11,17,0.95); border:1px solid rgba(255,255,255,0.14); border-radius:14px;
  padding:16px 18px; box-shadow:0 20px 60px rgba(0,0,0,0.6); backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
}
.sxr-settings-pop.open { display:block; }
.sxr-settings-pop h5 { font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:0.75rem; letter-spacing:0.16em; text-transform:uppercase; color:rgba(255,255,255,0.55); margin:0 0 10px; }
.sxr-tog { display:flex; align-items:center; justify-content:space-between; padding:8px 0; font-size:0.84rem; color:rgba(255,255,255,0.85); cursor:pointer; }
.sxr-tog .sw { width:38px; height:21px; border-radius:999px; background:rgba(255,255,255,0.14); position:relative; transition:background .2s; flex-shrink:0; }
.sxr-tog .sw::after { content:''; position:absolute; top:2.5px; left:3px; width:16px; height:16px; border-radius:50%; background:#fff; transition:transform .2s; }
.sxr-tog.on .sw { background:var(--sxr-accent,#00f0ff); }
.sxr-tog.on .sw::after { transform:translateX(16px); }

/* cinema mode: strip the chrome, keep the world + dock */
body.sxr-cinema .showcase-hud-header, body.sxr-cinema .sxr-brand-slot,
body.sxr-cinema .sxr-lead-pill { opacity:0; pointer-events:none; transition:opacity .3s ease; }

/* ── persistent lead pill ── */
.sxr-lead-pill {
  position:absolute; right:24px; bottom:112px; z-index:105; cursor:pointer;
  font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:0.78rem; letter-spacing:0.12em;
  text-transform:uppercase; color:#0a0d12; background:#fff; border:0; border-radius:999px; padding:13px 22px;
  box-shadow:0 10px 34px rgba(0,0,0,0.5); transition:all .18s ease;
}
.sxr-lead-pill:hover { transform:translateY(-2px); box-shadow:0 16px 44px rgba(255,255,255,0.22); }

/* dock tier dots + narration mini-player */
.sxr-mod { position:relative; }
.sxr-tier-dot { position:absolute; top:5px; right:7px; width:6px; height:6px; border-radius:50%; background:var(--sxr-accent,#00f0ff); box-shadow:0 0 8px var(--sxr-accent,#00f0ff); }
.sxr-narr {
  position:absolute; left:24px; bottom:112px; z-index:105; display:none; align-items:center; gap:10px;
  background:rgba(8,11,17,0.9); border:1px solid rgba(255,255,255,0.14); border-radius:999px; padding:8px 14px;
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
}
.sxr-narr.on { display:flex; }
.sxr-narr audio { height:30px; max-width:240px; }
.sxr-narr span { font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:0.66rem; letter-spacing:0.12em; text-transform:uppercase; color:rgba(255,255,255,0.6); }

/* mobile */
@media (max-width: 768px) {
  #sxr-stage .sxr-stage-inner { left:10px; right:10px; top:74px; bottom:118px; }
  .sxr-overview { width:100%; background:rgba(6,9,14,0.9); padding:20px 18px 30px; }
  .sxr-feat { grid-template-columns:1fr; }
  .sxr-settings-btn { top:auto; bottom:170px; right:12px; }
  .sxr-settings-pop { top:auto; bottom:216px; right:12px; }
  .sxr-lead-pill { right:12px; bottom:124px; padding:11px 18px; }
  .sxr-narr { left:12px; bottom:124px; }
  .sxr-surfaces { flex-wrap:wrap; }
  body.sxr-kiosk .sxr-dock { transform:none; }
}

/* ═══ direction pass #3: CINEMA LANGUAGE ═══ */

/* splash billing block — the movie-poster credits */
.sxr-billing { margin-top: 20px; text-align: center; animation: sxrGlide 1.1s cubic-bezier(.22,1,.36,1) 1.15s both; }
.sxr-billing .bb-line {
  font-family:'Barlow Condensed',sans-serif; font-weight:600; font-size:0.64rem;
  letter-spacing:0.22em; text-transform:uppercase; color:rgba(255,255,255,0.55); margin-bottom:6px;
}
.sxr-billing .bb-k { color:rgba(255,255,255,0.32); margin-right:9px; }
.sxr-billing .bb-prod {
  font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:0.7rem;
  letter-spacing:0.34em; text-transform:uppercase; color:var(--sxr-accent,#00f0ff); margin-top:12px;
}

/* the overview title-sequence: full-screen snap chapters */
.sxr-cine {
  position:absolute; inset:0; overflow-y:auto; scroll-snap-type:y mandatory;
  border-radius:14px; scrollbar-width:none;
  background:linear-gradient(180deg, rgba(4,6,10,0.5) 0%, rgba(4,6,10,0.72) 100%);
}
.sxr-cine::-webkit-scrollbar { display:none; }
.sxr-cine section {
  position:relative; min-height:100%; scroll-snap-align:start; box-sizing:border-box;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:48px 8vw;
}
.sxr-cine h1 {
  font-family:'Barlow Condensed',sans-serif; font-weight:900; text-transform:uppercase;
  font-size:clamp(2.4rem, 6.5vw, 5rem); line-height:0.98; letter-spacing:0.01em; color:#fff; margin:16px 0 12px;
}
.sxr-cine h1 .kw { display:inline-block; opacity:0; transform:translateY(0.7em); }
.sxr-cine section.on h1 .kw { animation: cineRise .85s cubic-bezier(.22,1,.36,1) both; }
@keyframes cineRise { from { opacity:0; transform:translateY(0.7em); } to { opacity:1; transform:none; } }

/* generic staggered reveal — replays every time a chapter re-enters */
.sxr-cine .k { opacity:0; transform:translateY(26px); transition:opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }
.sxr-cine section.on .k { opacity:1; transform:none; }

.sxr-cine .c-kicker {
  font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:0.72rem;
  letter-spacing:0.32em; text-transform:uppercase; color:var(--sxr-accent,#00f0ff); margin:0 0 22px;
}
.sxr-cine .c-meta { font-size:0.86rem; letter-spacing:0.06em; color:rgba(255,255,255,0.6); margin-bottom:18px; }
.sxr-cine .c-p { max-width:740px; font-size:clamp(1rem, 1.6vw, 1.22rem); line-height:1.85; color:rgba(255,255,255,0.88); margin:0 0 20px; }
.sxr-cine .c-hll { list-style:none; margin:0; padding:0; }
.sxr-cine .c-hll li {
  font-family:'Barlow Condensed',sans-serif; font-weight:700; text-transform:uppercase;
  font-size:clamp(1.15rem, 2.4vw, 1.7rem); letter-spacing:0.04em; color:#fff; margin:0 0 18px; line-height:1.25;
}
.sxr-cine .c-hll li::before { content:'— '; color:var(--sxr-accent,#00f0ff); }
.sxr-cine .c-fg { margin-bottom:26px; max-width:820px; }
.sxr-cine .c-fg h5 {
  font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:0.7rem; letter-spacing:0.28em;
  text-transform:uppercase; color:rgba(255,255,255,0.45); margin:0 0 10px;
}
.sxr-cine .c-fg div span { display:inline-block; font-size:0.92rem; color:rgba(255,255,255,0.85); }
.sxr-cine .c-fg div span + span::before { content:'·'; color:var(--sxr-accent,#00f0ff); margin:0 12px; }
.sxr-cine .c-cred .av { width:76px; height:76px; border-radius:50%; margin:0 auto 14px; background-size:cover; background-position:center; border:2px solid var(--sxr-accent,#00f0ff); }
.sxr-cine .c-cred .c-nm { font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:1.5rem; text-transform:uppercase; letter-spacing:0.04em; color:#fff; }
.sxr-cine .c-cred .c-tt { font-size:0.82rem; color:rgba(255,255,255,0.55); margin-bottom:24px; }
.sxr-cine .c-prod {
  font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:0.72rem;
  letter-spacing:0.34em; text-transform:uppercase; color:var(--sxr-accent,#00f0ff); margin-top:34px;
}
.sxr-cine .c-scroll {
  position:absolute; bottom:22px; left:0; right:0; font-family:'Barlow Condensed',sans-serif;
  font-weight:600; font-size:0.66rem; letter-spacing:0.26em; text-transform:uppercase;
  color:rgba(255,255,255,0.4); animation: cineNudge 2.4s ease-in-out infinite;
}
@keyframes cineNudge { 0%,100% { transform:translateY(0); opacity:.55; } 50% { transform:translateY(6px); opacity:1; } }

/* soundtrack toggle */
.sxr-cine-audio {
  position:absolute; top:14px; left:50%; transform:translateX(-50%); z-index:3; cursor:pointer;
  display:flex; align-items:center; gap:8px; padding:9px 18px; border-radius:999px;
  background:rgba(8,11,17,0.75); border:1px solid rgba(255,255,255,0.16); color:rgba(255,255,255,0.7);
  font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:0.68rem; letter-spacing:0.16em;
  text-transform:uppercase; backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); transition:all .2s ease;
}
.sxr-cine-audio i { width:15px; height:15px; }
.sxr-cine-audio:hover { color:#fff; border-color:rgba(255,255,255,0.4); }
.sxr-cine-audio.on { color:#fff; border-color:var(--sxr-accent,#00f0ff); box-shadow:0 0 22px rgba(0,240,255,0.18); }

/* ═══ tweaks pass (2026-07-10): splash air + living title + welcome screen ═══ */

/* breathe: space the splash controls out */
body.sxr-stage-on .sxr-surfaces { gap: 16px; margin: 30px 0 26px; }
body.sxr-stage-on .sxr-surface { min-width: 108px; padding: 14px 20px; }
body.sxr-stage-on #enter-experience-btn { margin-top: 10px; }
body.sxr-stage-on .sxr-billing { margin-top: 26px; }
body.sxr-stage-on .splash-content-box { padding-top: 34px !important; padding-bottom: 34px !important; }

/* the living title — entrance (config motion) + endless light sweep */
.sxr-title-cine {
  background: linear-gradient(105deg, #ffffff 32%, var(--sxr-accent, #00f0ff) 50%, #ffffff 68%);
  background-size: 230% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sxrSheen 4.6s ease-in-out infinite;
}
@keyframes sxrSheen { 0% { background-position: 120% 0; } 55% { background-position: -20% 0; } 100% { background-position: -20% 0; } }

/* welcome screen — the game's "how to play" card, world visible behind */
.sxr-welcome { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; text-align:center; }
.sxr-welcome .w-in { max-width: 640px; padding: 0 24px; }
.sxr-welcome h1 {
  font-family:'Barlow Condensed',sans-serif; font-weight:900; text-transform:uppercase;
  font-size:clamp(2.2rem, 5.5vw, 4rem); line-height:1; color:#fff; margin:0 0 12px;
}
.sxr-welcome h1 .kw { display:inline-block; animation: cineRise .85s cubic-bezier(.22,1,.36,1) both; }
.sxr-welcome .w-sub { font-size:0.95rem; line-height:1.6; color:rgba(255,255,255,0.75); margin-bottom:26px; animation: sxrGlide 1s cubic-bezier(.22,1,.36,1) .5s both; }
.sxr-steps { display:flex; flex-direction:column; gap:12px; margin-bottom:28px; }
.sxr-step {
  display:flex; align-items:center; gap:14px; text-align:left; padding:13px 18px;
  background:rgba(8,11,17,0.72); border:1px solid rgba(255,255,255,0.12); border-radius:12px;
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  animation: sxrStageIn .6s cubic-bezier(.22,1,.36,1) both;
}
.sxr-step:nth-child(2) { animation-delay:.75s; } .sxr-step:nth-child(3) { animation-delay:.9s; } .sxr-step:nth-child(1) { animation-delay:.6s; }
.sxr-step i { width:20px; height:20px; color:var(--sxr-accent,#00f0ff); flex-shrink:0; }
.sxr-step .n {
  font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:0.9rem; color:var(--sxr-accent,#00f0ff);
  flex-shrink:0; width:18px;
}
.sxr-step span { font-size:0.86rem; color:rgba(255,255,255,0.85); }
.sxr-welcome .sxr-cta-row { justify-content:center; animation: sxrGlide 1s cubic-bezier(.22,1,.36,1) 1.05s both; }
@media (max-width:768px){ .sxr-welcome .w-in { padding:0 12px; } .sxr-step { padding:11px 14px; } }

/* ═══ title-card BRAND ROW (2026-07-11): avatar · name · logo · intro button ═══ */
.sxr-brandrow {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  margin-top: 24px; animation: sxrGlide 1.1s cubic-bezier(.22,1,.36,1) 1s both;
}
.sxr-brandrow .br-av {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background-size: cover; background-position: center;
  border: 2px solid var(--sxr-accent, #00f0ff); box-shadow: 0 0 18px rgba(0,240,255,0.25);
}
.sxr-brandrow .br-id { text-align: left; line-height: 1.25; }
.sxr-brandrow .br-id b {
  display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.06em; color: #fff; text-transform: uppercase;
}
.sxr-brandrow .br-id i {
  font-style: normal; font-size: 0.68rem; color: rgba(255,255,255,0.55); letter-spacing: 0.04em;
}
.sxr-brandrow .br-logo {
  height: 30px; width: auto; display: block; opacity: 0.92;
  padding-left: 16px; border-left: 1px solid rgba(255,255,255,0.18);
}
.sxr-brandrow .br-intro {
  display: flex; align-items: center; gap: 9px; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px; padding: 10px 18px; transition: all .2s ease;
}
.sxr-brandrow .br-intro .br-ic { font-size: 0.6rem; color: var(--sxr-accent, #00f0ff); }
.sxr-brandrow .br-intro:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.sxr-brandrow .br-intro.on {
  border-color: var(--sxr-accent, #00f0ff); color: #fff;
  box-shadow: 0 0 22px rgba(0,240,255,0.2);
}
@media (max-width: 640px) {
  .sxr-brandrow { gap: 12px; }
  .sxr-brandrow .br-logo { padding-left: 12px; height: 24px; }
}

/* "Powered by ⟨SXR⟩" as one unit on the title card (matches the corner badge) */
.sxr-brandrow .br-pow { display: flex; align-items: center; gap: 9px; }
.sxr-brandrow .br-pow i {
  font-style: normal; font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.sxr-brandrow .br-pow img { height: 26px; width: auto; display: block; }
.sxr-brandrow .br-id + .br-pow, .sxr-brandrow .br-av + .br-pow {
  padding-left: 16px; border-left: 1px solid rgba(255,255,255,0.18);
}

/* ═══ title-card rhythm pass (2026-07-11): even spacing, smaller mark ═══ */
body.sxr-stage-on .sxr-surfaces { margin: 28px 0 24px; }
body.sxr-stage-on #enter-experience-btn { margin-top: 0; }
.sxr-brandrow { margin-top: 24px; }
.sxr-brandrow .br-pow img { height: 20px; }
.sxr-billing { margin-top: 18px; }

/* ═══ surfaces that DO something ═══ */
/* kiosk: genuinely bigger touch world */
body.sxr-kiosk .sxr-dock { transform: scale(1.32); transform-origin: bottom center; }
body.sxr-kiosk .sxr-welcome .sxr-step { padding: 17px 22px; }
body.sxr-kiosk .sxr-welcome .sxr-step span { font-size: 1rem; }
body.sxr-kiosk .sxr-btn { padding: 17px 30px; font-size: 0.92rem; }
body.sxr-kiosk .sxr-lead-pill { padding: 16px 26px; font-size: 0.88rem; }
body.sxr-kiosk .sxr-settings-btn { width: 48px; height: 48px; }
body.sxr-kiosk .sxr-overview, body.sxr-kiosk .sxr-cine { font-size: 1.08em; }
body.sxr-kiosk .sxr-card input, body.sxr-kiosk .sxr-card select, body.sxr-kiosk .sxr-card textarea { padding: 15px 16px; font-size: 1rem; }

/* AR/VR: persistent readiness chip while the surface is active */
body.sxr-xr::after {
  content: 'VR-READY · OPEN 3D TOUR IN A HEADSET BROWSER';
  position: fixed; top: 88px; left: 24px; z-index: 9000;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.62rem;
  letter-spacing: 0.16em; color: rgba(255,255,255,0.75);
  background: rgba(8,11,17,0.72); border: 1px solid rgba(0,240,255,0.3);
  border-radius: 999px; padding: 8px 14px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
}

/* ═══ glass SCENE PILLS (NAVIGO-style sub-options inside a module) ═══ */
.sxr-scenes {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; max-width: 86%;
  background: rgba(10,13,19,0.45); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px; padding: 5px;
  backdrop-filter: blur(18px) saturate(1.3); -webkit-backdrop-filter: blur(18px) saturate(1.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.sxr-scene {
  border: 0; background: transparent; cursor: pointer; border-radius: 999px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.65);
  padding: 8px 16px; transition: all .18s ease;
}
.sxr-scene:hover { color: #fff; }
.sxr-scene.active { background: rgba(255,255,255,0.92); color: #0a0d12; }
body.sxr-kiosk .sxr-scene { padding: 12px 22px; font-size: 0.84rem; }

/* ══ Stage v2.1 (2026-07-22, Michael): the chosen module IS the background —
      full-bleed stage, no floating-card chrome; HUD + dock overlay the media.
      Plus: a clear BACK pill and a proper fullscreen system. ══ */
#sxr-stage .sxr-stage-inner { left: 0; right: 0; top: 0; bottom: 0; }
.sxr-frame { border-radius: 0; border: 0; box-shadow: none; }
.sxr-frame-label { top: auto; bottom: 118px; left: 18px; }
.sxr-overview { border-radius: 0; padding-top: 96px; padding-bottom: 130px; }

.sxr-back-pill, .sxr-fs-exit {
  position: fixed; z-index: 10001; display: none; align-items: center; gap: 8px;
  background: rgba(6,9,14,0.8); border: 1px solid rgba(255,255,255,0.18); color: #fff;
  border-radius: 999px; padding: 10px 18px; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: border-color .2s ease, color .2s ease;
}
.sxr-back-pill { top: 84px; left: 18px; }
.sxr-fs-exit { top: 84px; right: 18px; z-index: 10002; }
.sxr-back-pill:hover, .sxr-fs-exit:hover { border-color: var(--sxr-accent, #00f0ff); color: var(--sxr-accent, #00f0ff); }
.sxr-back-pill.on, .sxr-fs-exit.on { display: inline-flex; }

/* ══ Stage v2.2 (2026-07-22, Michael): GROUPED DOCK — the menu system.
      Top level reads as chapters (Overview · Virtual Tours · Media · 3D Models
      · Floor Plan · The Area · Guided); each group opens a glass flyout. ══ */
.sxr-grp { position: relative; display: flex; }
.sxr-grp-btn .gcv {
  position: absolute; top: 5px; right: 7px; font-style: normal; font-weight: 400;
  font-size: 0.5rem; color: rgba(255,255,255,0.35); transition: transform .18s ease, color .18s ease;
}
.sxr-grp.open .sxr-grp-btn .gcv { color: var(--sxr-accent, #00f0ff); transform: rotate(180deg); }
.sxr-grp-btn.has-active::after {
  content: ''; position: absolute; left: 50%; bottom: 3px; transform: translateX(-50%);
  width: 18px; height: 2px; border-radius: 2px; background: var(--sxr-accent, #00f0ff);
}
.sxr-grp-btn.has-active { color: #fff; }
.sxr-grp-menu {
  position: absolute; bottom: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px; display: flex; flex-direction: column; gap: 2px;
  background: rgba(6,9,14,0.88); border: 1px solid rgba(255,255,255,0.13);
  border-radius: 14px; padding: 7px;
  backdrop-filter: blur(20px) saturate(1.2); -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 22px 60px rgba(0,0,0,0.65);
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.sxr-grp-menu::after { /* connector notch */
  content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 7px solid transparent; border-top-color: rgba(6,9,14,0.88);
}
.sxr-grp.open .sxr-grp-menu {
  opacity: 1; pointer-events: auto; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.sxr-grp-menu .sxr-mod {
  flex-direction: row; justify-content: flex-start; gap: 12px;
  width: 100%; min-width: 0; padding: 12px 14px; border-radius: 9px;
  font-size: 0.7rem; letter-spacing: 0.11em; white-space: nowrap;
}
.sxr-grp-menu .sxr-mod.active::after {
  left: auto; right: 12px; top: 50%; bottom: auto; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%;
}
.sxr-grp-menu .sxr-mod[data-live="0"]::before { top: 50%; transform: translateY(-50%); right: 26px; }
body.sxr-kiosk .sxr-grp-menu .sxr-mod { padding: 15px 18px; font-size: 0.82rem; }

/* labeled FULL SCREEN dock item + louder return pill */
.sxr-fs-mod { border-left: 1px solid rgba(255,255,255,0.1); border-radius: 0 8px 8px 0; }
.sxr-fs-mod.active { color: var(--sxr-accent, #00f0ff); }
.sxr-fs-exit {
  border-color: rgba(0,240,255,0.55); border-color: var(--sxr-accent, #00f0ff);
  color: #fff; box-shadow: 0 10px 34px rgba(0,0,0,0.55);
}

/* THE AREA — glass local-story panel over the live map */
.sxr-local-panel {
  position: absolute; top: 140px; right: 26px; z-index: 3;
  width: min(360px, 86vw); max-height: calc(100% - 300px); overflow-y: auto;
  background: rgba(6,9,14,0.82); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px; padding: 24px 26px;
  backdrop-filter: blur(18px) saturate(1.2); -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 22px 60px rgba(0,0,0,0.55);
}
.sxr-local-panel h3 {
  margin: 0 0 10px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 1.3rem; letter-spacing: 0.06em; text-transform: uppercase; color: #fff;
}
.sxr-local-panel p { margin: 0 0 12px; font-size: 0.86rem; line-height: 1.55; color: rgba(255,255,255,0.72); }
.sxr-local-panel ul { margin: 0 0 16px; padding: 0; list-style: none; }
.sxr-local-panel li {
  position: relative; padding: 7px 0 7px 20px; font-size: 0.84rem; color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sxr-local-panel li:last-child { border-bottom: 0; }
.sxr-local-panel li::before { content: '\2726'; position: absolute; left: 0; color: var(--sxr-accent, #00f0ff); font-size: 0.7rem; }
@media (max-width: 700px) { .sxr-local-panel { top: auto; bottom: 150px; right: 12px; left: 12px; width: auto; max-height: 42vh; } }
.sxr-grp-menu .sxr-mod .sxr-tier-dot { position: static; margin-left: auto; flex-shrink: 0; }

/* ══ Stage v2.3 (2026-07-22): VIDEO GALLERY + real FLOOR PLANS ══ */
.sxr-vgal-main {
  position: absolute; inset: 0 0 96px 0; width: 100%; height: calc(100% - 96px);
  object-fit: contain; background: #05080f;
}
.sxr-vgal-thumb { position: relative; background-color: #0a0e15; }
.sxr-vgal-thumb .vg-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.85rem; text-shadow: 0 2px 10px rgba(0,0,0,0.85);
}
.sxr-plan-stage {
  position: absolute; inset: 0; background-color: #eef0f2;
  background-repeat: no-repeat; background-size: contain; background-position: center;
  cursor: zoom-in; touch-action: none; user-select: none;
}
.sxr-plan-stage.zoomed { cursor: grab; }

/* ══ Stage v3 (2026-07-22 late, Michael): THREE MENU SYSTEMS ══
   bottom dock = core content · side rail = interactive layer · title = property drawer */
.sxr-stage-inner { overflow: hidden; }

/* title drawer */
.sxr-title-cv { font-style: normal; font-weight: 400; color: rgba(255,255,255,0.55); font-size: 0.8rem; margin-left: 4px; transition: transform .2s ease; }
.sxr-title-menu {
  position: fixed; top: 96px; left: 20px; z-index: 10004;
  min-width: 240px; display: flex; flex-direction: column; gap: 2px;
  background: rgba(6,9,14,0.9); border: 1px solid rgba(255,255,255,0.13);
  border-radius: 14px; padding: 7px;
  backdrop-filter: blur(20px) saturate(1.2); -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 22px 60px rgba(0,0,0,0.65);
  opacity: 0; pointer-events: none; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.sxr-title-menu.open { opacity: 1; pointer-events: auto; visibility: visible; transform: none; }
.sxr-tm-item {
  display: flex; align-items: center; gap: 12px; width: 100%;
  background: transparent; border: 0; border-radius: 9px; cursor: pointer;
  padding: 12px 14px; color: rgba(255,255,255,0.72); text-align: left;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.11em; text-transform: uppercase;
  transition: background .18s ease, color .18s ease;
}
.sxr-tm-item i, .sxr-tm-item svg { width: 17px; height: 17px; stroke-width: 1.6; flex-shrink: 0; }
.sxr-tm-item:hover { background: rgba(255,255,255,0.06); color: #fff; }
.sxr-tm-item.dim { color: rgba(255,255,255,0.32); }
.sxr-tm-item .tm-dot { margin-left: auto; width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.18); transition: background .18s ease; }
.sxr-tm-item.on .tm-dot { background: var(--sxr-accent, #00f0ff); box-shadow: 0 0 8px var(--sxr-accent, #00f0ff); }

/* side rail — the interactive layer */
.sxr-rail {
  position: fixed; right: 18px; top: 50%; transform: translateY(-50%); z-index: 9500;
  display: flex; flex-direction: column; gap: 2px;
  background: rgba(6,9,14,0.72); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 6px;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.sxr-rail-btn {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  width: 58px; padding: 11px 4px 9px; background: transparent; border: 0; border-radius: 9px;
  color: rgba(255,255,255,0.5); cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.58rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: color .18s ease, background .18s ease;
}
.sxr-rail-btn i, .sxr-rail-btn svg { width: 18px; height: 18px; stroke-width: 1.5; }
.sxr-rail-btn:hover { color: #fff; background: rgba(255,255,255,0.05); }
.sxr-rail-btn.active { color: #fff; background: rgba(255,255,255,0.08); }
.sxr-rail-btn.active::after { content: ''; width: 16px; height: 2px; border-radius: 2px; background: var(--sxr-accent, #00f0ff); }

.sxr-rail-panel {
  position: fixed; right: 88px; top: 50%; transform: translateY(-50%) translateX(8px); z-index: 9499;
  width: min(320px, 78vw); max-height: 70vh; overflow-y: auto;
  background: rgba(6,9,14,0.88); border: 1px solid rgba(255,255,255,0.13);
  border-radius: 16px; padding: 20px 20px 18px;
  backdrop-filter: blur(20px) saturate(1.2); -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 22px 60px rgba(0,0,0,0.65);
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.sxr-rail-panel.open { opacity: 1; pointer-events: auto; visibility: visible; transform: translateY(-50%); }
.sxr-rail-panel h5 { margin: 0 0 6px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.02rem; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; }
.rp-sub { margin: 0 0 12px; font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.rp-chip { display: inline-block; margin: 0 0 12px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sxr-accent, #00f0ff); border: 1px solid rgba(255,255,255,0.16); border-radius: 999px; padding: 5px 10px; }
.rp-zoom { display: flex; align-items: center; gap: 10px; }
.rp-zoom button { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.04); color: #fff; font-size: 1.1rem; cursor: pointer; }
.rp-zoom button:hover { border-color: var(--sxr-accent, #00f0ff); }
.rp-zoom .rp-reset { width: auto; padding: 0 14px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; }
.rp-zoom span { min-width: 48px; text-align: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; color: #fff; }
.rp-msgs { max-height: 200px; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.rp-msg { background: rgba(255,255,255,0.05); border-radius: 10px; padding: 9px 12px; font-size: 0.82rem; color: rgba(255,255,255,0.85); }
.rp-msg b { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 3px; }
.rp-msg.host { border-left: 2px solid var(--sxr-accent, #00f0ff); }
.rp-row { display: flex; gap: 8px; }
.rp-row input { flex: 1; min-width: 0; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); border-radius: 9px; padding: 10px 12px; color: #fff; font-size: 0.82rem; }
.rp-row input:focus { outline: none; border-color: var(--sxr-accent, #00f0ff); }
.rp-row button { border: 0; border-radius: 9px; background: #fff; color: #0a0d12; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0 16px; cursor: pointer; }
.rp-notes { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.rp-note { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.05); border-radius: 9px; padding: 9px 12px; font-size: 0.82rem; color: rgba(255,255,255,0.85); }
.rp-note span { flex: 1; }
.rp-note button { border: 0; background: transparent; color: rgba(255,255,255,0.35); cursor: pointer; font-size: 0.7rem; }
.rp-note button:hover { color: #fff; }
.rp-empty { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.rp-broker { display: flex; align-items: center; gap: 12px; margin: 6px 0 12px; }
.rp-broker .av { width: 44px; height: 44px; border-radius: 50%; background-size: cover; background-position: center; border: 1px solid rgba(255,255,255,0.2); flex-shrink: 0; }
.rp-broker b { display: block; color: #fff; font-size: 0.9rem; }
.rp-broker i { font-style: normal; font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.rp-link { display: block; color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.82rem; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.rp-link:hover { color: var(--sxr-accent, #00f0ff); }
.rp-cta { width: 100%; margin-top: 14px; }

/* keep the neighborhood panel clear of the rail */
.sxr-local-panel { right: 92px; }
body.sxr-kiosk .sxr-rail-btn { width: 68px; padding: 14px 4px 12px; font-size: 0.66rem; }
@media (max-width: 700px) {
  .sxr-rail { right: 8px; }
  .sxr-rail-panel { right: 8px; top: auto; bottom: 150px; transform: translateY(8px); max-height: 46vh; }
  .sxr-rail-panel.open { transform: none; }
  .sxr-local-panel { right: 12px; }
}
.sxr-mod[hidden] { display: none !important; }

/* ══ v3.1 SHARE panel (2026-07-23): one link, embed code, native share ══ */
.rp-lbl { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.62rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin: 14px 0 6px; }
.rp-row-col { flex-direction: column; align-items: stretch; }
.rp-row textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 9px; padding: 10px 12px; color: rgba(255,255,255,0.8); font-size: 0.72rem;
  font-family: ui-monospace, Menlo, monospace; resize: none; line-height: 1.5; }
.rp-row textarea:focus, .rp-row input:focus { outline: none; border-color: var(--sxr-accent, #00f0ff); }
.rp-row button.ok { background: var(--sxr-accent, #00f0ff); color: #04252a; }
.rp-row-col button { padding: 10px 16px; }
/* GO LIVE panel — the premium/live layer (2026-07-23) */
.rp-feats { list-style: none; margin: 0 0 6px; padding: 0; }
.rp-feats li { position: relative; padding: 6px 0 6px 20px; font-size: 0.82rem; color: rgba(255,255,255,0.78); }
.rp-feats li::before { content: '\2726'; position: absolute; left: 2px; color: var(--sxr-accent, #00f0ff); font-size: 0.68rem; }
