/* ============================================================
   ManCave 409 — Tactical Auction & Education Platform
   Prototype design system
   ============================================================ */

:root {
  /* Core palette — ManCave 409 brand: gold on near-black */
  --bg-900: #070707;
  --bg-850: #0b0b0c;
  --bg-800: #101012;
  --bg-700: #16161a;
  --bg-600: #1d1d22;
  --line: #2a2722;
  --line-soft: #1a1a1c;

  /* Text — all white per brand request (no grey body text) */
  --text-hi: #ffffff;
  --text: #ffffff;
  --text-dim: #ffffff;
  --text-faint: #ffffff;

  /* Accents — brand gold / bronze / green / red */
  --amber: #ffc82f;        /* primary brand gold */
  --amber-soft: #ffdc6b;
  --amber-deep: #c8951a;
  --ember: #ff5a3c;        /* live / urgent */
  --steel: #c8a951;        /* bronze — missions & member standing */
  --steel-soft: #e3c873;
  --green: #2fd16a;        /* success / leading */
  --red: #e8453a;          /* outbid / danger */
  --gold: #e0c46a;         /* review notes */

  /* Glows */
  --glow-amber: 0 0 0 1px rgba(255,200,47,.4), 0 0 24px -6px rgba(255,200,47,.55);
  --glow-steel: 0 0 0 1px rgba(200,169,81,.4), 0 0 24px -6px rgba(200,169,81,.5);

  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 20px;

  --maxw: 1240px;
  --ff: "Orbitron", "Rajdhani", sans-serif;
  --fmono: "Orbitron", "Rajdhani", sans-serif;
  --fcond: "Orbitron", "Rajdhani", sans-serif;

  --shadow: 0 24px 60px -28px rgba(0,0,0,.9);
  --ease: cubic-bezier(.16,.84,.44,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff);
  background: var(--bg-900);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(900px 500px at 80% -10%, rgba(255,200,47,.12), transparent 60%),
    radial-gradient(800px 600px at -12% 8%, rgba(200,169,81,.07), transparent 55%),
    linear-gradient(transparent 0 0);
}

/* HUD tech overlay — faint gold node-dot matrix + diagonal circuit hairlines */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(rgba(255,200,47,.05) 1px, transparent 1.6px),
    repeating-linear-gradient(125deg, rgba(255,200,47,.022) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(55deg, rgba(255,255,255,.012) 0 1px, transparent 1px 46px);
  background-size: 30px 30px, auto, auto;
  mask-image: radial-gradient(1400px 900px at 50% -5%, #000 0%, transparent 92%);
  -webkit-mask-image: radial-gradient(1400px 900px at 50% -5%, #000 0%, transparent 92%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wrap { width: 100%; max-width: none; margin: 0; padding: 0 24px; position: relative; z-index: 1; }

/* Typography helpers */
.eyebrow {
  font-family: var(--fmono);
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--amber);
  display: inline-block;
}
.eyebrow.steel { color: var(--steel-soft); }
.eyebrow.steel::before { background: var(--steel-soft); }

h1, h2, h3 { color: var(--text-hi); font-weight: 700; letter-spacing: -.01em; line-height: 1.08; }
.display {
  font-family: var(--fcond);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.02;
}
.section-title { font-size: clamp(23px, 3.3vw, 34px); }
.muted { color: var(--text-dim); }
.faint { color: var(--text-faint); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .02em;
  transition: transform .18s var(--ease), box-shadow .25s, background .2s;
  position: relative;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--amber), var(--amber-deep));
  color: #1a0f02;
  box-shadow: 0 10px 30px -12px rgba(255,200,47,.7), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(255,200,47,.85), inset 0 1px 0 rgba(255,255,255,.3); }
.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  color: var(--text-hi);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber-soft); }
.btn-steel {
  background: linear-gradient(180deg, var(--green), #1f9e4f);
  color: #04120a;
  box-shadow: 0 10px 30px -12px rgba(47,209,106,.55), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-bronze {
  background: linear-gradient(180deg, var(--steel-soft), #a8862f);
  color: #1a1304;
  box-shadow: 0 10px 30px -12px rgba(200,169,81,.6), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-bronze:hover { transform: translateY(-2px); }
.btn-steel:hover { transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-sm { padding: 9px 14px; font-size: 13px; }

/* ---------------- Nav ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,12,14,.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 9px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--bg-600), var(--bg-800));
  border: 1px solid var(--line);
  font-family: var(--fcond);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: -.02em;
  white-space: nowrap;
  color: var(--amber);
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,200,47,.25) 50%, transparent 60%);
}
.brand-name { font-family: var(--fcond); font-weight: 800; letter-spacing: .01em; font-size: 15.5px; color: var(--text-hi); text-transform: uppercase; }
.brand-name b { color: var(--amber); }
.brand-sub { font-family: var(--fmono); font-size: 9.5px; letter-spacing: .3em; color: var(--text-faint); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14px; color: var(--text-dim); transition: color .18s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--text-hi); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -24px; height: 2px;
  background: var(--amber);
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; font-size: 24px; color: var(--text-hi); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  padding: 22px 0 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-family: var(--fcond);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -.01em;
  margin: 10px 0 14px;
}
.hero h1 .stroke { color: transparent; -webkit-text-stroke: 1.4px var(--amber); }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero .tagline { font-size: clamp(16px, 2vw, 19px); color: var(--text); max-width: 560px; }
.hero-ctas { display: flex; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 42px; flex-wrap: wrap; }
.hero-stat .n { font-family: var(--fcond); font-size: 30px; color: var(--text-hi); line-height: 1; }
.hero-stat .l { font-family: var(--fmono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-faint); margin-top: 6px; }

/* Hero visual card */
.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(29,36,45,.5), rgba(13,16,20,.9));
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-card-media {
  aspect-ratio: 16/10;
  background:
    radial-gradient(120% 90% at 70% 10%, rgba(255,200,47,.22), transparent 55%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.02) 0 2px, transparent 2px 9px),
    linear-gradient(160deg, #17140e, #090806);
  position: relative;
  display: grid;
  place-items: center;
}
.hero-card-media .silhouette {
  font-family: var(--fcond);
  font-size: 13vw;
  color: rgba(255,255,255,.04);
  letter-spacing: .04em;
  text-transform: uppercase;
  user-select: none;
}
.hero-card-media .corner {
  position: absolute; width: 26px; height: 26px; border: 2px solid rgba(255,200,47,.5);
}
.corner.tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.corner.tr { top: 16px; right: 16px; border-left: 0; border-bottom: 0; }
.corner.bl { bottom: 16px; left: 16px; border-right: 0; border-top: 0; }
.corner.br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }
.hero-card-tag {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  font-family: var(--fmono); font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ember); display: flex; align-items: center; gap: 7px;
}
.hero-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-top: 1px solid var(--line);
}
.hero-card-foot .lbl { font-family: var(--fmono); font-size: 10px; letter-spacing: .18em; color: var(--text-faint); text-transform: uppercase; }
.hero-card-foot .val { font-family: var(--fcond); font-size: 22px; color: var(--text-hi); }
.hero-card-foot .val.amber { color: var(--amber); }
.hero-card-cta { padding: 0 20px 20px; }

/* --- pulsing play button on every webinar cover --- */
.card-media, .feat-media, .hero-card-media, .webinar-card .card-media { position: relative; }
.cover-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 4;
  width: 62px; height: 62px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #100b02; cursor: pointer; padding-left: 3px;
  background: linear-gradient(180deg, var(--amber-soft), var(--amber));
  box-shadow: 0 0 0 0 rgba(255,200,47,.55), 0 8px 22px -6px rgba(0,0,0,.6);
  animation: coverPulse 1.9s ease-in-out infinite; transition: transform .15s;
}
.cover-play:hover { transform: translate(-50%, -50%) scale(1.09); }
.cover-play:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
@keyframes coverPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,200,47,.5), 0 8px 22px -6px rgba(0,0,0,.6); }
  70%  { box-shadow: 0 0 0 20px rgba(255,200,47,0), 0 8px 22px -6px rgba(0,0,0,.6); }
  100% { box-shadow: 0 0 0 0 rgba(255,200,47,0), 0 8px 22px -6px rgba(0,0,0,.6); }
}
@media (prefers-reduced-motion: reduce) { .cover-play { animation: none; } }

/* --- hero tile: animated tech-lines bg + left→right black fade + amber stroke --- */
.hero-tile {
  position: relative; isolation: isolate; overflow: hidden;
  border: 1px solid rgba(255,200,47,.55); border-radius: 26px;
  padding: clamp(22px, 3vw, 40px) clamp(26px, 4vw, 52px);
  background: radial-gradient(120% 140% at 50% 0%, rgba(255,200,47,.05), transparent 55%), #08080a;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,.9), inset 0 0 0 1px rgba(255,200,47,.06);
}
.hero-tile > .fx-techlines { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-tile .fx-techlines canvas { display: block; width: 100%; height: 100%; }
.hero-tile-fade { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 100%); }
.hero-tile > .hero-grid { position: relative; z-index: 2; margin: 0; }
@media (max-width: 560px) { .hero-tile { border-radius: 18px; } }

/* --- process tile: tech-lines bg + lion crest graphic + amber stroke, left-justified --- */
.process-tile {
  position: relative; isolation: isolate; overflow: hidden;
  border: 1px solid rgba(255,200,47,.55); border-radius: 26px;
  padding: clamp(54px, 8vw, 120px) clamp(26px, 4vw, 52px);
  background-color: #08080a;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,.9), inset 0 0 0 1px rgba(255,200,47,.06);
}
.process-tile::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); }
.process-inner { position: relative; z-index: 2; }
/* title spans full width; body copy sits at ~the width of the middle 3 step tiles */
.process-inner .sec-head { max-width: none; }
.process-inner .sec-head .section-title, .process-inner .sec-head p { text-shadow: 0 2px 14px rgba(0,0,0,.9); }
.process-inner .sec-head p { max-width: 60%; margin-left: auto; margin-right: auto; }
@media (max-width: 760px) { .process-inner .sec-head p { max-width: 100%; } }
/* center content inside the process step tiles */
.process-inner .step { text-align: center; }
.process-inner .step .num { margin-left: auto; margin-right: auto; }
.sec-head.sec-head-left { text-align: left; margin: 0 0 26px; max-width: 640px; }
.sec-head.sec-head-left .eyebrow { justify-content: flex-start; }
.process-tile .proc-note { text-align: left; margin-top: 26px; }
@media (max-width: 560px) { .process-tile { border-radius: 18px; } .proc-lion { opacity: .08; } }

/* --- join + reviews tiles (share the hero-tile look: amber stroke, tech-lines bg) --- */
.join-tile, .reviews-tile {
  position: relative; isolation: isolate; overflow: hidden;
  border: 1px solid rgba(255,200,47,.55); border-radius: 26px;
  padding: clamp(26px, 4vw, 52px);
  background: radial-gradient(120% 140% at 50% 0%, rgba(255,200,47,.05), transparent 55%), #08080a;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,.9), inset 0 0 0 1px rgba(255,200,47,.06);
}
/* join tile matches the featured card's solid dark background (no animation / amber stroke) */
.join-tile { background: var(--bg-800); border-color: var(--line); box-shadow: none; }
/* reviews tile: gold stroke kept; process-style top→bottom black overlay + full-width title */
.reviews-tile::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); }
.reviews-inner .sec-head { max-width: none; }
/* reviews header: title left, trust-row right, on one line */
.reviews-head { display: flex; align-items: center; justify-content: space-between; gap: 12px 24px; flex-wrap: wrap; margin-bottom: 26px; }
.reviews-head .sec-head { margin: 0; text-align: left; }
.reviews-head .section-title { font-size: clamp(21px, 2.3vw, 29px); }
.reviews-head .trust-row { margin: 0; white-space: nowrap; }
.join-tile > .fx-techlines, .reviews-tile > .fx-techlines { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.join-tile .fx-techlines canvas, .reviews-tile .fx-techlines canvas { display: block; width: 100%; height: 100%; }
.join-inner, .reviews-inner { position: relative; z-index: 2; }
/* how-to-join: copy lives in the right column, left-justified */
.join-right { text-align: left; }
.join-right .eyebrow { justify-content: flex-start; }
.join-right .section-title { margin-bottom: 8px; }
.join-sub { color: var(--text-dim); font-size: 15px; margin-bottom: 20px; }

/* active webinars: heading left, "view all" button right, same line */
.sec-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }

/* free-membership callout: static tech-lion graphic bg (no animation) */
.member-cta {
  position: relative; overflow: hidden; display: flex; align-items: center;
  min-height: 460px; padding: clamp(32px, 5vw, 68px);
  border: 1px solid rgba(255,200,47,.55); border-radius: 26px;
  background-size: cover; background-position: right center; background-repeat: no-repeat;
}
.member-cta::before { content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(90deg, rgba(6,6,7,.97) 0%, rgba(6,6,7,.9) 32%, rgba(6,6,7,.45) 64%, rgba(6,6,7,0) 92%); }
.member-cta-inner { position: relative; z-index: 1; max-width: 580px; text-align: left; }
.member-cta-inner .eyebrow { justify-content: flex-start; }
.member-cta-inner .section-title { margin: 10px 0; }
.member-cta-inner > p { color: var(--text-dim); font-size: 15.5px; max-width: 500px; margin-bottom: 24px; }
@media (max-width: 560px) { .join-tile, .reviews-tile, .member-cta { border-radius: 18px; } .member-cta::before { background: linear-gradient(180deg, rgba(6,6,7,.7) 0%, rgba(6,6,7,.92) 60%); } }
/* status + price pills overlaid on the featured & hero covers (match the browse cards) */
.feat-media, .hero-card-media { position: relative; }
.feat-media .badge-row, .hero-card-media .badge-row { position: absolute; top: 14px; left: 14px; right: 14px; display: flex; align-items: flex-start; justify-content: space-between; z-index: 3; }

/* Live pulse dot */
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 0 rgba(255,90,44,.7);
  animation: pulse 1.8s infinite;
  display: inline-block;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,90,44,.7); }
  70% { box-shadow: 0 0 0 9px rgba(255,90,44,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,90,44,0); }
}

/* ---------------- Sections ---------------- */
section { padding: 74px 0; position: relative; }
.section-head { margin-bottom: 40px; max-width: 720px; }
.section-head h2 { margin: 14px 0 12px; }
.section-head p { color: var(--text-dim); font-size: 16px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

/* ---------------- How It Works ---------------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.step {
  position: relative;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-800), var(--bg-850));
  transition: transform .25s var(--ease), border-color .25s;
}
.step:hover { transform: translateY(-4px); border-color: rgba(255,200,47,.4); }
.step .num {
  font-family: var(--fcond); font-size: 13px; color: var(--amber);
  border: 1px solid rgba(255,200,47,.4); border-radius: 7px;
  width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 18px;
  background: rgba(255,200,47,.06);
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-dim); }
.step .line {
  position: absolute; top: 44px; right: -10px; width: 20px; height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}

/* ---------------- Card grid generic ---------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }

/* Drop / auction card */
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-800), var(--bg-850));
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(255,200,47,.45); box-shadow: var(--shadow); }
.card-media {
  aspect-ratio: 16/10;
  position: relative;
  background:
    radial-gradient(110% 80% at 75% 15%, rgba(255,200,47,.16), transparent 55%),
    repeating-linear-gradient(120deg, rgba(255,255,255,.015) 0 2px, transparent 2px 10px),
    linear-gradient(160deg, #17140d, #090806);
  display: grid; place-items: center;
  border-bottom: 1px solid var(--line);
}
.card-media .ghost {
  font-family: var(--fcond); font-size: 46px; color: rgba(255,255,255,.05);
  text-transform: uppercase; letter-spacing: .05em;
}
.card-media .badge-row { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; }
.card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card-cat { font-family: var(--fmono); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-faint); }
.card h3 { font-size: 18.5px; }
.card .desc { font-size: 13.5px; color: var(--text-dim); }
.card-meta { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; padding-top: 6px; border-top: 1px solid var(--line-soft); }
.card-meta .lbl { font-family: var(--fmono); font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-faint); }
.card-meta .big { font-family: var(--fcond); font-size: 22px; color: var(--amber); line-height: 1.1; }

/* chips / badges */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--fmono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 9px; border-radius: 6px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.35);
  color: var(--text-dim);
  backdrop-filter: blur(4px);
}
.chip.live { color: var(--ember); border-color: rgba(255,90,44,.4); background: rgba(255,90,44,.08); }
.chip.soon { color: var(--steel-soft); border-color: rgba(61,126,255,.35); }
.chip.closed { color: var(--text-faint); }
.chip.amber { color: var(--amber); border-color: rgba(255,200,47,.4); background: rgba(255,200,47,.07); }
.chip.green { color: var(--green); border-color: rgba(63,221,142,.35); background: rgba(63,221,142,.07); }

/* Countdown */
.countdown { display: flex; gap: 8px; }
.cd-unit {
  background: rgba(0,0,0,.5);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  text-align: center;
  min-width: 52px;
}
.cd-unit .v { font-family: var(--fcond); font-size: 21px; color: var(--text-hi); line-height: 1; font-weight: 700; font-variant-numeric: tabular-nums; }
.cd-unit .u { font-family: var(--fmono); font-size: 8.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-faint); margin-top: 5px; }
.cd-sm .cd-unit { min-width: 40px; padding: 6px 7px; }
.cd-sm .cd-unit .v { font-size: 16px; }

/* ---------------- Mission cards ---------------- */
.mission {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-800), var(--bg-850));
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s;
}
.mission:hover { transform: translateY(-4px); border-color: rgba(61,126,255,.4); }
.mission.locked { opacity: .62; }
.mission .mission-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.mission-icon {
  width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(61,126,255,.08); border: 1px solid rgba(61,126,255,.25); font-size: 21px;
}
.mission.locked .mission-icon { background: rgba(255,255,255,.03); border-color: var(--line); }
.mission h3 { font-size: 16.5px; margin-bottom: 6px; }
.mission p { font-size: 13.5px; color: var(--text-dim); margin-bottom: 16px; }
.mission-foot { display: flex; align-items: center; justify-content: space-between; }
.xp { font-family: var(--fmono); font-size: 12px; color: var(--steel-soft); letter-spacing: .08em; }
.lock-state { font-family: var(--fmono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); display: flex; align-items: center; gap: 6px; }

/* progress bar */
.bar { height: 7px; border-radius: 99px; background: rgba(255,255,255,.06); overflow: hidden; }
.bar > i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--amber), var(--ember)); }
.bar.steel > i { background: linear-gradient(90deg, var(--steel), var(--steel-soft)); }
.bar.green > i { background: linear-gradient(90deg, #2faa68, var(--green)); }

/* ---------------- Product briefings ---------------- */
.briefing {
  display: flex; gap: 16px; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-800), var(--bg-850));
  padding: 16px; transition: border-color .25s, transform .25s var(--ease);
}
.briefing:hover { border-color: rgba(255,200,47,.4); transform: translateX(4px); }
.briefing-thumb {
  width: 96px; height: 72px; flex-shrink: 0; border-radius: 9px;
  background: radial-gradient(80% 80% at 70% 20%, rgba(255,200,47,.18), transparent), linear-gradient(160deg,#17140d,#090806);
  border: 1px solid var(--line); display: grid; place-items: center; position: relative;
}
.briefing-thumb .play { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,200,47,.9); display: grid; place-items: center; color: #1a0f02; }
.briefing-info { flex: 1; min-width: 0; }
.briefing-info .k { font-family: var(--fmono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-faint); }
.briefing-info h3 { font-size: 15.5px; margin: 4px 0 4px; }
.briefing-info p { font-size: 13px; color: var(--text-dim); }

/* ---------------- FFL education ---------------- */
.ffl {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(61,126,255,.1), transparent 50%),
    linear-gradient(180deg, var(--bg-800), var(--bg-850));
  padding: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.ffl-steps { display: flex; flex-direction: column; gap: 14px; }
.ffl-step { display: flex; gap: 14px; }
.ffl-step .dot { width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0; display: grid; place-items: center; background: rgba(61,126,255,.1); border: 1px solid rgba(61,126,255,.3); font-family: var(--fmono); font-size: 13px; color: var(--steel-soft); }
.ffl-step h4 { font-size: 15px; color: var(--text-hi); margin-bottom: 3px; }
.ffl-step p { font-size: 13px; color: var(--text-dim); }

/* ---------------- Notice / compliance ---------------- */
.ic { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.notice .ico .ic, .ci-ico .ic { display: block; }
.notice {
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius-sm);
  background: rgba(255,200,47,.04);
  padding: 16px 18px;
  font-size: 13px;
  color: var(--text-dim);
  display: flex; gap: 12px;
}
.notice .ico { color: var(--amber); flex-shrink: 0; font-size: 16px; }
.notice.steel { border-left-color: var(--steel); background: rgba(61,126,255,.04); }
.notice.steel .ico { color: var(--steel-soft); }
.notice.review { border-left-color: var(--gold); background: rgba(233,196,106,.05); }
.notice.review .ico { color: var(--gold); }
.notice b { color: var(--text-hi); }

/* placeholder review note */
.review-note {
  font-family: var(--fmono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--gold);
  background: rgba(233,196,106,.07);
  border: 1px dashed rgba(233,196,106,.35);
  border-radius: 6px;
  padding: 4px 9px;
  display: inline-flex; align-items: center; gap: 7px;
}

/* ---------------- Footer ---------------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-850);
  padding: 54px 0 0;
  margin-top: 30px;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
.footer h5 { font-family: var(--fmono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: var(--text-dim); transition: color .18s; }
.footer ul a:hover { color: var(--amber-soft); }
.footer-brand p { font-size: 13.5px; color: var(--text-dim); max-width: 320px; margin-top: 14px; }
.compliance {
  border-top: 1px solid var(--line);
  padding: 26px 0 40px;
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.7;
}
.compliance .row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; margin-bottom: 18px; }
.compliance p { margin-bottom: 12px; max-width: 980px; }
.age-gate {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 7px; padding: 7px 12px;
  font-family: var(--fmono); font-size: 11px; letter-spacing: .12em; color: var(--text-dim);
}

/* ---------------- Live Drop Detail ---------------- */
.detail-grid { display: grid; grid-template-columns: minmax(0,1.5fr) 1fr; gap: 32px; align-items: start; }
.video-area {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(100% 100% at 50% 0%, rgba(255,200,47,.14), transparent 60%),
    repeating-linear-gradient(120deg, rgba(255,255,255,.015) 0 2px, transparent 2px 11px),
    linear-gradient(160deg, #17140d, #070605);
  display: grid; place-items: center;
}
.video-area .play-btn {
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255,200,47,.92); display: grid; place-items: center; color: #1a0f02;
  box-shadow: 0 0 0 10px rgba(255,200,47,.12), 0 20px 50px -10px rgba(255,200,47,.6);
  transition: transform .2s;
}
.video-area:hover .play-btn { transform: scale(1.06); }
.video-meta { position: absolute; left: 18px; bottom: 16px; }
.video-meta .who { font-family: var(--fcond); font-size: 18px; color: var(--text-hi); text-transform: uppercase; letter-spacing: .03em; }
.video-meta .role { font-family: var(--fmono); font-size: 10px; letter-spacing: .2em; color: var(--amber); text-transform: uppercase; }
.video-badge { position: absolute; top: 16px; left: 16px; }
.video-time { position: absolute; bottom: 16px; right: 18px; font-family: var(--fmono); font-size: 12px; color: var(--text-dim); background: rgba(0,0,0,.5); padding: 4px 9px; border-radius: 6px; }

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-800), var(--bg-850));
  padding: 22px;
}
.panel + .panel { margin-top: 20px; }
.panel-title { font-family: var(--fmono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; }

/* bid box */
.bid-box { position: sticky; top: 88px; }
.bid-current { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 4px; }
.bid-current .amt { font-family: var(--fcond); font-size: 42px; color: var(--amber); line-height: 1; }
.bid-current .since { font-family: var(--fmono); font-size: 11px; color: var(--text-faint); }
.bid-sub { font-size: 12.5px; color: var(--text-dim); margin-bottom: 18px; }
.bid-input-row { display: flex; gap: 10px; margin-bottom: 8px; }
.bid-input {
  flex: 1; background: rgba(0,0,0,.4); border: 1px solid var(--line); border-radius: 9px;
  padding: 13px 14px; color: var(--text-hi); font-family: var(--fmono); font-size: 16px;
}
.bid-input:focus { outline: none; border-color: var(--amber); }
.bid-quick { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.bid-quick button {
  flex: 1; border: 1px solid var(--line); border-radius: 8px; padding: 8px;
  font-family: var(--fmono); font-size: 12px; color: var(--text-dim); transition: .18s;
}
.bid-quick button:hover { border-color: var(--amber); color: var(--amber-soft); }

/* specs table */
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.spec-row { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 13.5px; }
.spec-row .k { color: var(--text-dim); }
.spec-row .v { color: var(--text-hi); font-family: var(--fmono); font-size: 12.5px; text-align: right; }
.specs.single { grid-template-columns: 1fr; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.feature-list li { display: flex; gap: 11px; font-size: 14px; color: var(--text); }
.feature-list li .tick { color: var(--amber); flex-shrink: 0; }

/* checklist */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-item { display: flex; gap: 13px; align-items: flex-start; font-size: 14px; }
.check-box {
  width: 22px; height: 22px; border-radius: 6px; border: 1px solid var(--line);
  flex-shrink: 0; display: grid; place-items: center; font-size: 13px; margin-top: 1px;
  background: rgba(0,0,0,.3);
}
.check-item.done .check-box { background: rgba(63,221,142,.15); border-color: var(--green); color: var(--green); }
.check-item.done .ci-text { color: var(--text-dim); }
.check-item.active .check-box { border-color: var(--amber); color: var(--amber); }
.ci-text strong { color: var(--text-hi); font-weight: 600; display: block; font-size: 14px; }
.ci-text span { color: var(--text-dim); font-size: 12.5px; }

.terms-preview { display: flex; flex-direction: column; gap: 10px; }
.terms-preview .tline { display: flex; gap: 10px; font-size: 13px; color: var(--text-dim); }
.terms-preview .tline b { color: var(--text-hi); font-weight: 600; }

.detail-header { margin-bottom: 26px; }
.detail-header h1 { font-family: var(--fcond); font-weight: 800; text-transform: uppercase; font-size: clamp(24px,3.4vw,40px); letter-spacing: -.01em; margin: 14px 0 12px; line-height: 1.05; }
.detail-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }

/* breadcrumb */
.crumb { display: none; }
.crumb a:hover { color: var(--amber); }

/* ---------------- Dashboard ---------------- */
.dash-header {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 130% at 90% -20%, rgba(255,200,47,.14), transparent 55%),
    linear-gradient(180deg, var(--bg-800), var(--bg-850));
  padding: 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  flex-wrap: wrap;
}
.dash-id { display: flex; align-items: center; gap: 20px; }
.avatar {
  width: 76px; height: 76px; border-radius: 16px;
  background: linear-gradient(150deg, var(--bg-600), var(--bg-800));
  border: 1px solid var(--line); display: grid; place-items: center;
  font-family: var(--fcond); font-size: 30px; color: var(--amber); position: relative;
}
.avatar .ring { position: absolute; inset: -4px; border-radius: 19px; border: 1.5px solid rgba(255,200,47,.4); }
.dash-id h1 { font-family: var(--fcond); font-size: 30px; text-transform: uppercase; }
.dash-id .meta { display: flex; gap: 14px; margin-top: 8px; flex-wrap: wrap; }
.rank-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--fmono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.dash-tier { text-align: right; }
.dash-tier .tier-name { font-family: var(--fcond); font-size: 22px; color: var(--text-hi); text-transform: uppercase; }
.dash-tier .tier-prog { font-family: var(--fmono); font-size: 11px; color: var(--text-dim); margin: 8px 0 6px; }
.tier-bar { width: 220px; }

.stat-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin: 22px 0; }
.stat-cell {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px;
  background: linear-gradient(180deg, var(--bg-800), var(--bg-850));
}
.stat-cell .sv { font-family: var(--fcond); font-size: 30px; color: var(--text-hi); line-height: 1; }
.stat-cell .sv.amber { color: var(--amber); }
.stat-cell .sv.steel { color: var(--steel-soft); }
.stat-cell .sl { font-family: var(--fmono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-faint); margin-top: 8px; }

.dash-cols { display: grid; grid-template-columns: minmax(0,2fr) 1fr; gap: 24px; align-items: start; }
.dash-section { margin-bottom: 24px; }
.dash-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash-section-head h2 { font-size: 19px; }
.dash-section-head a { font-family: var(--fmono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); }

/* badges grid */
.badge-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.badge-item {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 12px; text-align: center;
  background: linear-gradient(180deg, var(--bg-800), var(--bg-850)); transition: transform .2s var(--ease);
}
.badge-item:hover { transform: translateY(-3px); }
.badge-item.locked { opacity: .4; }
.badge-emblem {
  width: 52px; height: 52px; margin: 0 auto 10px; border-radius: 13px;
  display: grid; place-items: center; font-size: 24px;
  background: rgba(255,200,47,.08); border: 1px solid rgba(255,200,47,.3);
}
.badge-item.locked .badge-emblem { background: rgba(255,255,255,.03); border-color: var(--line); }
.badge-item .bn { font-size: 12.5px; color: var(--text-hi); font-weight: 600; }
.badge-item .bd { font-family: var(--fmono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); margin-top: 4px; }

/* activity feed */
.feed { display: flex; flex-direction: column; }
.feed-item { display: flex; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.feed-item:last-child { border-bottom: 0; }
.feed-dot { width: 9px; height: 9px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; background: var(--amber); }
.feed-dot.steel { background: var(--steel); }
.feed-dot.green { background: var(--green); }
.feed-dot.dim { background: var(--text-faint); }
.feed-item .ft { font-size: 13.5px; color: var(--text); }
.feed-item .ft b { color: var(--text-hi); }
.feed-item .ftime { font-family: var(--fmono); font-size: 10.5px; color: var(--text-faint); margin-top: 3px; letter-spacing: .04em; }

/* bid rows */
.bidrow { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.bidrow:last-child { border-bottom: 0; }
.bidrow-thumb { width: 56px; height: 44px; border-radius: 8px; flex-shrink: 0; background: radial-gradient(80% 80% at 70% 20%, rgba(255,200,47,.18), transparent), linear-gradient(160deg,#17140d,#090806); border: 1px solid var(--line); }
.bidrow-info { flex: 1; min-width: 0; }
.bidrow-info h4 { font-size: 14.5px; color: var(--text-hi); }
.bidrow-info .sub { font-family: var(--fmono); font-size: 11px; color: var(--text-faint); margin-top: 2px; }
.bidrow-status { text-align: right; }
.bidrow-status .amt { font-family: var(--fcond); font-size: 19px; color: var(--amber); }
.bidrow-status .st { font-family: var(--fmono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; margin-top: 3px; }
.st.lead { color: var(--green); }
.st.out { color: var(--red); }
.st.watch { color: var(--steel-soft); }

/* small list cards */
.mini-card { display: flex; gap: 13px; align-items: center; padding: 13px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.015); margin-bottom: 11px; transition: border-color .2s; }
.mini-card:hover { border-color: rgba(255,200,47,.4); }
.mini-card .mt { width: 50px; height: 50px; border-radius: 9px; flex-shrink: 0; background: radial-gradient(80% 80% at 70% 20%, rgba(61,126,255,.18), transparent), linear-gradient(160deg,#17140d,#090806); border: 1px solid var(--line); display:grid; place-items:center; }
.mini-card .mi { flex: 1; }
.mini-card .mi h4 { font-size: 14px; color: var(--text-hi); }
.mini-card .mi p { font-size: 12px; color: var(--text-dim); }

.aside-panel {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 20px;
  background: linear-gradient(180deg, var(--bg-800), var(--bg-850)); margin-bottom: 20px;
}
.aside-panel h3 { font-size: 16px; margin-bottom: 16px; display: flex; align-items: center; gap: 9px; }

/* page hero (sub pages) */
.page-hero { padding: 32px 24px 10px; }

/* utility */
.mt-s { margin-top: 10px; } .mt-m { margin-top: 18px; } .mt-l { margin-top: 30px; }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.gap-w { gap: 14px; }
.divider { height: 1px; background: var(--line); margin: 22px 0; border: 0; }
.text-c { text-align: center; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: minmax(0,1fr); }
  .bid-box { position: static; }
  .dash-cols { grid-template-columns: 1fr; }
  .ffl { grid-template-columns: minmax(0,1fr); gap: 28px; padding: 24px; }
}
@media (max-width: 980px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 760px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .badge-grid { grid-template-columns: repeat(2,1fr); }
  .stat-strip { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr; }
  .specs { grid-template-columns: 1fr; }
  .dash-header { flex-direction: column; align-items: flex-start; }
  .dash-tier { text-align: left; }
  .hero-stats { gap: 22px; }
  section { padding: 54px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .badge-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 44px; }
}

/* mobile menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 68px 0 0; z-index: 49;
  background: rgba(10,12,14,.97); backdrop-filter: blur(10px);
  padding: 30px 24px; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 16px 0; font-family: var(--fcond); font-size: 19px; letter-spacing: .02em; text-transform: uppercase; color: var(--text-hi); border-bottom: 1px solid var(--line-soft); }
.mobile-menu .btn { margin-top: 20px; }

/* ============================================================
   v2 — ACADEMY · XP · REWARDS · COURSE · COMPLIANCE
   ============================================================ */

/* ---------- Layer ribbon (platform pillars) ---------- */
.layer-ribbon { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
@media (max-width:980px){ .layer-ribbon { grid-template-columns: repeat(3,1fr); } }
.layer-pill {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--bg-800), var(--bg-850));
  padding: 14px 14px; text-align: center;
}
.layer-pill .lp-ico { font-size: 19px; }
.layer-pill .lp-k { font-family: var(--fcond); font-weight: 700; font-size: 13px; text-transform: uppercase; color: var(--text-hi); margin: 7px 0 3px; letter-spacing: .02em; }
.layer-pill .lp-d { font-size: 11px; color: var(--text-faint); font-family: var(--fmono); letter-spacing: .04em; }
.layer-pill.is-edu { border-color: rgba(255,200,47,.4); }
@media (max-width:760px){ .layer-ribbon { grid-template-columns: repeat(2,1fr); } }

/* ---------- Course cards (Academy) ---------- */
.course-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-800), var(--bg-850));
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.course-card:hover { transform: translateY(-5px); border-color: rgba(255,200,47,.45); box-shadow: var(--shadow); }
.course-thumb {
  aspect-ratio: 16/9; position: relative; display: grid; place-items: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(110% 80% at 75% 12%, rgba(255,200,47,.16), transparent 55%),
    repeating-linear-gradient(120deg, rgba(255,255,255,.015) 0 2px, transparent 2px 10px),
    linear-gradient(160deg,#17140d,#090806);
}
.course-thumb .c-play { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,200,47,.92); display:grid; place-items:center; color:#1a0f02; font-size:16px; box-shadow: 0 0 0 8px rgba(255,200,47,.1); }
.course-thumb .c-ghost { position:absolute; font-family:var(--fcond); font-size:40px; color:rgba(255,255,255,.05); text-transform:uppercase; }
.course-thumb .c-top { position:absolute; top:12px; left:12px; right:12px; display:flex; justify-content:space-between; }
.course-body { padding:18px; display:flex; flex-direction:column; gap:11px; flex:1; }
.course-body .c-cat { font-family:var(--fmono); font-size:10.5px; letter-spacing:.18em; text-transform:uppercase; color:var(--text-faint); }
.course-body h3 { font-size:17px; }
.course-body p { font-size:13px; color:var(--text-dim); }
.course-modline { display:flex; gap:14px; font-family:var(--fmono); font-size:11px; color:var(--text-dim); letter-spacing:.04em; }
.course-modline span { display:flex; align-items:center; gap:5px; }
.course-foot { margin-top:auto; padding-top:12px; border-top:1px solid var(--line-soft); display:flex; align-items:center; justify-content:space-between; }
.course-foot .xp { color: var(--steel-soft); }

/* level tag */
.level-tag { font-family:var(--fmono); font-size:9.5px; letter-spacing:.14em; text-transform:uppercase; padding:4px 8px; border-radius:5px; border:1px solid var(--line); color:var(--text-dim); background:rgba(0,0,0,.35); }
.level-tag.beg { color:var(--green); border-color:rgba(47,209,106,.35); }
.level-tag.int { color:var(--steel-soft); border-color:rgba(200,169,81,.4); }
.level-tag.adv { color:var(--ember); border-color:rgba(255,90,60,.4); }

/* ---------- XP / Level ring ---------- */
.level-ring { position: relative; width: 96px; height: 96px; flex-shrink: 0; }
.level-ring svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.level-ring .lr-track { fill:none; stroke: rgba(255,255,255,.08); stroke-width: 8; }
.level-ring .lr-fill { fill:none; stroke: url(#xpgrad); stroke-width: 8; stroke-linecap: round; }
.level-ring .lr-center { position:absolute; inset:0; display:grid; place-items:center; text-align:center; }
.level-ring .lr-lvl { font-family:var(--fcond); font-weight:800; font-size:26px; color:var(--amber); line-height:1; }
.level-ring .lr-lbl { font-family:var(--fmono); font-size:8px; letter-spacing:.18em; text-transform:uppercase; color:var(--text-faint); margin-top:3px; }

/* XP bar w/ label */
.xp-block { width:100%; }
.xp-row { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:8px; }
.xp-row .xp-cur { font-family:var(--fcond); font-weight:700; font-size:15px; color:var(--text-hi); }
.xp-row .xp-cur b { color:var(--amber); }
.xp-row .xp-next { font-family:var(--fmono); font-size:11px; color:var(--text-faint); letter-spacing:.04em; }
.xp-bar { height:9px; border-radius:99px; background:rgba(255,255,255,.06); overflow:hidden; position:relative; }
.xp-bar > i { display:block; height:100%; border-radius:99px; background:linear-gradient(90deg, var(--amber-deep), var(--amber) 70%, var(--amber-soft)); box-shadow: 0 0 16px -2px rgba(255,200,47,.5); }

/* ---------- Streak ---------- */
.streak {
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid rgba(255,90,60,.35); border-radius:10px; padding:9px 14px;
  background: linear-gradient(180deg, rgba(255,90,60,.08), rgba(255,90,60,.02));
}
.streak .s-flame { font-size:20px; }
.streak .s-n { font-family:var(--fcond); font-weight:800; font-size:20px; color:var(--ember); line-height:1; }
.streak .s-l { font-family:var(--fmono); font-size:9px; letter-spacing:.14em; text-transform:uppercase; color:var(--text-faint); }
.streak-dots { display:flex; gap:5px; margin-top:2px; }
.streak-dots i { width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,.1); }
.streak-dots i.on { background:var(--ember); }

/* ---------- Course module list ---------- */
.modlist { display:flex; flex-direction:column; }
.modrow { display:flex; align-items:center; gap:14px; padding:14px 0; border-bottom:1px solid var(--line-soft); }
.modrow:last-child { border-bottom:0; }
.mod-state { width:30px; height:30px; border-radius:8px; flex-shrink:0; display:grid; place-items:center; font-size:13px; border:1px solid var(--line); background:rgba(0,0,0,.3); color:var(--text-faint); }
.modrow.done .mod-state { background:rgba(47,209,106,.15); border-color:var(--green); color:var(--green); }
.modrow.active .mod-state { background:rgba(255,200,47,.12); border-color:var(--amber); color:var(--amber); }
.modrow.locked { opacity:.5; }
.mod-info { flex:1; min-width:0; }
.mod-info h4 { font-size:14.5px; color:var(--text-hi); }
.mod-info .mmeta { font-family:var(--fmono); font-size:10.5px; color:var(--text-faint); letter-spacing:.04em; margin-top:2px; }
.mod-cta { font-family:var(--fmono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--amber); }
.modrow.done .mod-cta { color:var(--green); }
.modrow.locked .mod-cta { color:var(--text-faint); }

/* ---------- Quiz ---------- */
.quiz { }
.quiz-q { font-size:15.5px; color:var(--text-hi); font-weight:600; margin-bottom:6px; }
.quiz-meta { font-family:var(--fmono); font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--text-faint); margin-bottom:16px; }
.quiz-opts { display:flex; flex-direction:column; gap:10px; }
.quiz-opt {
  display:flex; align-items:center; gap:12px; text-align:left; width:100%;
  border:1px solid var(--line); border-radius:10px; padding:14px 16px;
  background:rgba(255,255,255,.015); color:var(--text); font-size:14px; transition:.18s;
}
.quiz-opt:hover { border-color:var(--amber); }
.quiz-opt .qmark { width:24px; height:24px; border-radius:6px; border:1px solid var(--line); display:grid; place-items:center; font-family:var(--fmono); font-size:12px; flex-shrink:0; color:var(--text-dim); }
.quiz-opt.correct { border-color:var(--green); background:rgba(47,209,106,.08); color:var(--text-hi); }
.quiz-opt.correct .qmark { background:var(--green); border-color:var(--green); color:#04120a; }
.quiz-opt.wrong { border-color:var(--red); background:rgba(232,69,58,.07); }
.quiz-opt.wrong .qmark { background:var(--red); border-color:var(--red); color:#fff; }
.quiz-result { display:none; margin-top:16px; }
.quiz-result.show { display:flex; }

/* ---------- Completion badge (big) ---------- */
.completion {
  text-align:center; padding:28px 22px;
  border:1px solid rgba(255,200,47,.3); border-radius:var(--radius);
  background: radial-gradient(120% 120% at 50% 0%, rgba(255,200,47,.12), transparent 60%), linear-gradient(180deg,var(--bg-800),var(--bg-850));
}
.completion .cbadge {
  width:96px; height:96px; margin:0 auto 16px; border-radius:50%;
  display:grid; place-items:center; font-size:42px;
  background: radial-gradient(circle at 50% 35%, rgba(255,200,47,.25), rgba(255,200,47,.05));
  border:2px solid rgba(255,200,47,.5);
  box-shadow: 0 0 0 8px rgba(255,200,47,.05), 0 16px 40px -12px rgba(255,200,47,.5);
  position:relative;
}
.completion.locked .cbadge { filter:grayscale(1); opacity:.5; border-color:var(--line); box-shadow:none; }
.completion h3 { font-family:var(--fcond); font-weight:800; text-transform:uppercase; font-size:18px; margin-bottom:6px; }
.completion p { font-size:13px; color:var(--text-dim); }

/* ---------- Downloadable guide ---------- */
.dl-row { display:flex; align-items:center; gap:14px; border:1px solid var(--line); border-radius:var(--radius-sm); padding:14px 16px; background:rgba(255,255,255,.015); transition:border-color .2s; }
.dl-row:hover { border-color:rgba(255,200,47,.4); }
.dl-ico { width:42px; height:42px; border-radius:9px; display:grid; place-items:center; font-size:18px; background:rgba(255,200,47,.08); border:1px solid rgba(255,200,47,.3); flex-shrink:0; }
.dl-info { flex:1; }
.dl-info h4 { font-size:14px; color:var(--text-hi); }
.dl-info p { font-family:var(--fmono); font-size:10.5px; color:var(--text-faint); letter-spacing:.04em; margin-top:2px; }

/* ---------- Reward shop ---------- */
.reward-tabs { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:26px; }
.reward-tab { font-family:var(--fmono); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; padding:9px 15px; border-radius:8px; border:1px solid var(--line); color:var(--text-dim); background:rgba(255,255,255,.015); transition:.18s; }
.reward-tab:hover { border-color:var(--amber); color:var(--amber-soft); }
.reward-tab.active { background:linear-gradient(180deg,var(--amber),var(--amber-deep)); color:#1a0f02; border-color:transparent; font-weight:600; }

.reward-card {
  border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;
  background:linear-gradient(180deg,var(--bg-800),var(--bg-850));
  display:flex; flex-direction:column; transition:transform .25s var(--ease), border-color .25s, box-shadow .25s;
  position:relative;
}
.reward-card:hover { transform:translateY(-4px); border-color:rgba(255,200,47,.4); box-shadow:var(--shadow); }
.reward-top { padding:20px 18px 0; display:flex; justify-content:space-between; align-items:flex-start; }
.reward-emblem { width:50px; height:50px; border-radius:12px; display:grid; place-items:center; font-size:24px; background:rgba(255,200,47,.08); border:1px solid rgba(255,200,47,.3); }
.reward-card.locked .reward-emblem { background:rgba(255,255,255,.03); border-color:var(--line); filter:grayscale(.6); }
.reward-body { padding:14px 18px 18px; flex:1; display:flex; flex-direction:column; gap:8px; }
.reward-body .r-cat { font-family:var(--fmono); font-size:10px; letter-spacing:.16em; text-transform:uppercase; color:var(--text-faint); }
.reward-body h3 { font-size:16px; }
.reward-body p { font-size:13px; color:var(--text-dim); flex:1; }
.reward-foot { display:flex; align-items:center; justify-content:space-between; padding-top:12px; border-top:1px solid var(--line-soft); }
.reward-cost { font-family:var(--fcond); font-weight:700; font-size:18px; color:var(--amber); display:flex; align-items:center; gap:6px; }
.reward-cost small { font-family:var(--fmono); font-size:10px; color:var(--text-faint); letter-spacing:.1em; font-weight:400; }
.lock-pill { font-family:var(--fmono); font-size:10px; letter-spacing:.12em; text-transform:uppercase; color:var(--text-faint); display:flex; align-items:center; gap:6px; }

/* daily missions */
.daily { display:flex; align-items:center; gap:14px; padding:14px 0; border-bottom:1px solid var(--line-soft); }
.daily:last-child { border-bottom:0; }
.daily-check { width:24px; height:24px; border-radius:7px; flex-shrink:0; border:1px solid var(--line); display:grid; place-items:center; font-size:13px; background:rgba(0,0,0,.3); color:var(--text-faint); }
.daily.done .daily-check { background:rgba(47,209,106,.15); border-color:var(--green); color:var(--green); }
.daily-info { flex:1; }
.daily-info h4 { font-size:14px; color:var(--text-hi); }
.daily.done .daily-info h4 { color:var(--text-dim); text-decoration:line-through; text-decoration-color:var(--text-faint); }
.daily-info p { font-family:var(--fmono); font-size:10.5px; color:var(--text-faint); letter-spacing:.04em; margin-top:2px; }
.daily-xp { font-family:var(--fcond); font-weight:700; font-size:14px; color:var(--steel-soft); }

/* welcome header */
.welcome-head {
  border:1px solid var(--line); border-radius:var(--radius-lg);
  background: radial-gradient(130% 140% at 92% -25%, rgba(255,200,47,.14), transparent 55%), linear-gradient(180deg,var(--bg-800),var(--bg-850));
  padding:28px 30px; display:flex; align-items:center; gap:28px; flex-wrap:wrap;
}
.welcome-head .wh-text { flex:1; min-width:240px; }
.welcome-head .wh-hello { font-family:var(--fmono); font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--amber); }
.welcome-head h1 { font-family:var(--fcond); font-weight:800; font-size:clamp(24px,3vw,34px); text-transform:uppercase; margin:8px 0 12px; letter-spacing:0; }
.welcome-head .wh-meta { display:flex; gap:12px; flex-wrap:wrap; align-items:center; }

/* section anchor offset for sticky nav */
section[id], div[id].anchor { scroll-margin-top: 84px; }

/* compliance accordion */
.accordion { border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.acc-item { border-bottom:1px solid var(--line-soft); }
.acc-item:last-child { border-bottom:0; }
.acc-head { width:100%; display:flex; align-items:center; justify-content:space-between; gap:14px; padding:18px 20px; text-align:left; transition:background .18s; }
.acc-head:hover { background:rgba(255,255,255,.02); }
.acc-head .ah-l { display:flex; align-items:center; gap:14px; }
.acc-head .ah-num { font-family:var(--fmono); font-size:12px; color:var(--amber); border:1px solid rgba(255,200,47,.4); border-radius:6px; width:30px; height:30px; display:grid; place-items:center; flex-shrink:0; }
.acc-head h3 { font-size:15.5px; }
.acc-head .ah-tog { font-size:18px; color:var(--text-faint); transition:transform .2s; }
.acc-item.open .ah-tog { transform:rotate(45deg); color:var(--amber); }
.acc-body { max-height:0; overflow:hidden; transition:max-height .3s var(--ease); }
.acc-item.open .acc-body { max-height:480px; }
.acc-body-inner { padding:0 20px 20px 64px; font-size:13.5px; color:var(--text-dim); }
.acc-body-inner p { margin-bottom:10px; }

/* perks list */
.perk-list { list-style:none; display:flex; flex-direction:column; gap:13px; }
.perk-list li { display:flex; gap:12px; font-size:14px; color:var(--text); }
.perk-list li .pk { width:26px; height:26px; border-radius:7px; flex-shrink:0; display:grid; place-items:center; font-size:13px; background:rgba(255,200,47,.08); border:1px solid rgba(255,200,47,.3); }

/* tier ladder */
.ladder { display:grid; grid-template-columns:repeat(5,1fr); gap:12px; }
.ladder-step { border:1px solid var(--line); border-radius:var(--radius-sm); padding:16px 12px; text-align:center; background:linear-gradient(180deg,var(--bg-800),var(--bg-850)); position:relative; }
.ladder-step.current { border-color:var(--amber); box-shadow:0 0 0 1px rgba(255,200,47,.3), 0 12px 30px -16px rgba(255,200,47,.5); }
.ladder-step.locked { opacity:.5; }
.ladder-step .ls-ico { font-size:22px; }
.ladder-step .ls-name { font-family:var(--fcond); font-weight:700; font-size:13px; text-transform:uppercase; color:var(--text-hi); margin:7px 0 3px; }
.ladder-step .ls-xp { font-family:var(--fmono); font-size:10px; letter-spacing:.06em; color:var(--text-faint); }
.ladder-step .ls-tag { position:absolute; top:-9px; left:50%; transform:translateX(-50%); font-family:var(--fmono); font-size:8.5px; letter-spacing:.14em; text-transform:uppercase; color:#1a0f02; background:var(--amber); padding:3px 8px; border-radius:5px; }
@media (max-width:760px){ .ladder { grid-template-columns:repeat(2,1fr); } .reward-tabs{ overflow-x:auto; } }


/* ============================================================
   v3 — COMMUNITY / SOCIAL LAYER
   ============================================================ */

/* ---------- Nav dropdown + profile avatar ---------- */
.nav-drop { position: relative; }
.nav-drop > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-drop-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  margin-top: 14px; min-width: 210px; padding: 8px;
  background: rgba(13,13,15,.97); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transition: opacity .18s, transform .18s; z-index: 60;
}
.nav-drop::after { content:""; position:absolute; top:100%; left:0; right:0; height:18px; }
.nav-drop:hover .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: 13.5px; color: var(--text-dim); }
.nav-drop-menu a:hover { background: rgba(255,255,255,.04); color: var(--text-hi); }
.nav-drop-menu a .di { width: 18px; text-align: center; }
.nav-profile {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center; font-family: var(--fcond); font-weight: 700; font-size: 13px;
  background: linear-gradient(150deg, var(--steel-soft), var(--amber-deep)); color: #1a1304;
  border: 1px solid rgba(255,200,47,.4); position: relative;
}
.nav-profile .np-dot { position:absolute; bottom:-2px; right:-2px; width:11px; height:11px; border-radius:50%; background:var(--green); border:2px solid var(--bg-900); }

/* ---------- Avatars ---------- */
.av { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; display: grid; place-items: center; font-family: var(--fcond); font-weight: 700; font-size: 14px; color: #0a0a0a; }
.av-sm { width: 30px; height: 30px; font-size: 11px; border-radius: 8px; }
.av-lg { width: 84px; height: 84px; font-size: 30px; border-radius: 18px; }
.av.c1 { background: linear-gradient(150deg,#ffc82f,#c8951a); }
.av.c2 { background: linear-gradient(150deg,#e3c873,#a8862f); }
.av.c3 { background: linear-gradient(150deg,#2fd16a,#1f9e4f); color:#04120a; }
.av.c4 { background: linear-gradient(150deg,#ff8a5c,#c2410c); }
.av.c5 { background: linear-gradient(150deg,#9aa0a8,#5a6068); color:#fff; }
.av.c6 { background: linear-gradient(150deg,#ffdc6b,#d98a14); }
.av-stack { display: flex; }
.av-stack .av-sm { border: 2px solid var(--bg-850); margin-left: -10px; }
.av-stack .av-sm:first-child { margin-left: 0; }

/* mod / admin / level badges */
.mod-badge { display:inline-flex; align-items:center; gap:5px; font-family:var(--fmono); font-size:9px; letter-spacing:.12em; text-transform:uppercase; padding:3px 7px; border-radius:5px; }
.mod-badge.admin { color:#1a0f02; background:var(--amber); }
.mod-badge.mod { color:var(--steel-soft); border:1px solid rgba(200,169,81,.5); background:rgba(200,169,81,.1); }
.mod-badge.josh { color:#04120a; background:var(--green); }
.mod-badge.lvl { color:var(--amber); border:1px solid rgba(255,200,47,.4); background:rgba(255,200,47,.08); }

/* ---------- Feed posts ---------- */
.feed-col { display:flex; flex-direction:column; gap:16px; }
.post {
  border:1px solid var(--line); border-radius:var(--radius);
  background:linear-gradient(180deg,var(--bg-800),var(--bg-850));
  overflow:hidden; transition:border-color .2s;
}
.post:hover { border-color:rgba(255,200,47,.28); }
.post.pinned { border-color:rgba(255,200,47,.45); background:linear-gradient(180deg,rgba(255,200,47,.05),var(--bg-850)); }
.post-head { display:flex; align-items:center; gap:12px; padding:16px 18px 0; }
.post-head .ph-info { flex:1; min-width:0; }
.post-head .ph-name { font-weight:600; color:var(--text-hi); font-size:14.5px; display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.post-head .ph-meta { font-family:var(--fmono); font-size:10.5px; color:var(--text-faint); letter-spacing:.04em; margin-top:2px; }
.post-pin-tag { font-family:var(--fmono); font-size:9.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--amber); display:flex; align-items:center; gap:6px; }
.post-type { font-family:var(--fmono); font-size:9.5px; letter-spacing:.14em; text-transform:uppercase; padding:4px 8px; border-radius:5px; border:1px solid var(--line); color:var(--text-dim); white-space:nowrap; }
.post-type.drop { color:var(--ember); border-color:rgba(255,90,60,.4); }
.post-type.academy { color:var(--steel-soft); border-color:rgba(200,169,81,.4); }
.post-type.badge { color:var(--green); border-color:rgba(47,209,106,.4); }
.post-type.system { color:var(--amber); border-color:rgba(255,200,47,.4); }
.post-body { padding:14px 18px 0; }
.post-body h3 { font-size:16.5px; margin-bottom:6px; }
.post-body p { font-size:14px; color:var(--text-dim); }
.post-media { margin:14px 18px 0; border-radius:10px; overflow:hidden; border:1px solid var(--line); aspect-ratio:16/7; position:relative;
  background:radial-gradient(100% 100% at 75% 12%, rgba(255,200,47,.16), transparent 55%), repeating-linear-gradient(120deg, rgba(255,255,255,.015) 0 2px, transparent 2px 10px), linear-gradient(160deg,#17140d,#090806);
  display:grid; place-items:center; }
.post-media .pm-ghost { font-family:var(--fcond); font-size:34px; color:rgba(255,255,255,.06); text-transform:uppercase; }
.post-foot { display:flex; align-items:center; gap:10px; padding:14px 18px; margin-top:14px; border-top:1px solid var(--line-soft); flex-wrap:wrap; }

/* reaction chips */
.react-chip { display:inline-flex; align-items:center; gap:6px; font-family:var(--fmono); font-size:12px; padding:6px 11px; border-radius:99px; border:1px solid var(--line); background:rgba(255,255,255,.015); color:var(--text-dim); transition:.15s; cursor:pointer; }
.react-chip:hover { border-color:var(--amber); color:var(--amber-soft); }
.react-chip.on { border-color:var(--amber); background:rgba(255,200,47,.1); color:var(--amber); }
.react-chip .rc-n { font-size:11px; }
.post-foot .spacer { flex:1; }
.icon-btn { display:inline-flex; align-items:center; gap:7px; font-family:var(--fmono); font-size:11px; letter-spacing:.06em; text-transform:uppercase; color:var(--text-faint); padding:6px 9px; border-radius:7px; transition:.15s; }
.icon-btn:hover { color:var(--amber); background:rgba(255,255,255,.03); }
.icon-btn.saved { color:var(--amber); }

/* comment previews */
.comments { padding:0 18px 16px; display:flex; flex-direction:column; gap:12px; }
.comment { display:flex; gap:10px; }
.comment .cm-body { flex:1; background:rgba(255,255,255,.02); border:1px solid var(--line-soft); border-radius:10px; padding:9px 12px; }
.comment .cm-name { font-size:12.5px; color:var(--text-hi); font-weight:600; display:flex; align-items:center; gap:7px; }
.comment .cm-text { font-size:13px; color:var(--text-dim); margin-top:2px; }
.comment-add { display:flex; gap:10px; align-items:center; padding:12px 18px 16px; border-top:1px solid var(--line-soft); }
.comment-add input { flex:1; background:rgba(0,0,0,.35); border:1px solid var(--line); border-radius:99px; padding:10px 15px; color:var(--text-hi); font-family:var(--ff); font-size:13px; }
.comment-add input:focus { outline:none; border-color:var(--amber); }

/* ---------- Room cards ---------- */
.room-card { position:relative; overflow:hidden; display:flex; flex-direction:column; min-height:320px; border:1px solid var(--line); border-radius:var(--radius); background:linear-gradient(180deg,var(--bg-800),var(--bg-850)); padding:0; transition:transform .25s var(--ease), border-color .25s, box-shadow .25s; }
.room-card:hover { transform:translateY(-4px); border-color:rgba(255,200,47,.45); box-shadow:0 16px 40px -22px rgba(255,200,47,.5); }
.room-card:hover .rc-banner { transform:scale(1.06); }
/* image banner — uses each room's hero graphic via --rcimg */
.rc-banner { position:relative; height:215px; flex-shrink:0; background-image:linear-gradient(180deg, rgba(7,7,8,.12) 0%, rgba(7,7,8,.55) 70%, var(--bg-850) 100%), var(--rcimg, linear-gradient(135deg,#1a1710,#0c0b08)); background-size:cover, cover; background-position:center; transition:transform .45s var(--ease); }
.rc-body { position:relative; display:flex; flex-direction:column; gap:9px; padding:16px 18px; flex:1; }
.room-ico { width:46px; height:46px; border-radius:12px; display:grid; place-items:center; font-size:22px; background:rgba(20,18,11,.92); border:1px solid rgba(255,200,47,.4); flex-shrink:0; }
.rc-title { display:block; font-family:var(--fcond); font-weight:800; text-transform:uppercase; letter-spacing:.02em; font-size:18px; line-height:1.05; color:var(--text-hi); }
.rc-stat { display:block; font-family:var(--fmono); font-size:10.5px; color:var(--text-faint); letter-spacing:.04em; margin-top:4px; }
.rc-desc { font-size:13px; color:var(--text-dim); }
.room-foot { display:flex; align-items:center; justify-content:space-between; margin-top:auto; padding-top:12px; border-top:1px solid var(--line-soft); }
/* per-room banner graphics */
.room-card.rc-handguns    { --rcimg: url("../img/gear-room-handguns.png"); }
.room-card.rc-rifles      { --rcimg: url("../img/gear-room-hero.png"); }
.room-card.rc-shotguns    { --rcimg: url("../img/gear-room-shotguns.png"); }
.room-card.rc-optics      { --rcimg: url("../img/gear-room-optics.png"); }
.room-card.rc-edc         { --rcimg: url("../img/gear-room-edc.png"); }
.room-card.rc-maintenance { --rcimg: url("../img/gear-room-maintenance.png"); }
.room-card.rc-newmembers  { --rcimg: url("../img/gear-room-newmembers.png"); }
.room-card.rc-ffl         { --rcimg: url("../img/gear-room-ffl.png"); }
.room-card.rc-auctions    { --rcimg: url("../img/gear-room-auctions.png"); }
/* rooms shown inside the feed tab — two per row */
.rooms-tab .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 620px) { .rooms-tab .grid-3 { grid-template-columns: 1fr; } }
/* leaderboards inside the feed tab — full width, one per row */
.lb-tab .grid-3 { grid-template-columns: 1fr; gap: 16px; }
/* ---------- Composer (member post box) ---------- */
.composer { border:1px solid var(--line); border-radius:var(--radius); background:linear-gradient(180deg,var(--bg-800),var(--bg-850)); padding:14px 16px; }
.composer-top { display:flex; gap:12px; align-items:flex-start; }
.composer-input { flex:1; background:transparent; border:0; resize:none; color:var(--text-hi); font-family:var(--ff); font-size:14px; line-height:1.5; padding:8px 0; min-height:26px; max-height:160px; outline:none; overflow-y:auto; }
.composer-input::placeholder { color:var(--text-faint); }
.composer-row { margin-top:10px; }
.composer-types { display:flex; gap:8px; flex-wrap:wrap; }
.ptype-chip { font-family:var(--fmono); font-size:11px; letter-spacing:.03em; padding:6px 11px; border-radius:20px; border:1px solid var(--line); color:var(--text-dim); background:rgba(255,255,255,.02); transition:border-color .18s, color .18s, background .18s; }
.ptype-chip:hover { border-color:rgba(255,200,47,.4); color:var(--text); }
.ptype-chip.active { background:rgba(255,200,47,.14); border-color:var(--amber); color:var(--amber); }
.composer-foot { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:12px; flex-wrap:wrap; }
.composer-left { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.composer-room { display:flex; align-items:center; gap:7px; font-family:var(--fmono); font-size:11px; color:var(--text-faint); letter-spacing:.04em; }
.composer-room select { background:var(--bg-900); border:1px solid var(--line); color:var(--text); border-radius:7px; padding:5px 8px; font-family:var(--fmono); font-size:11px; }
.composer-note { margin-top:11px; padding-top:10px; border-top:1px solid var(--line-soft); font-family:var(--fmono); font-size:10.5px; color:var(--text-faint); letter-spacing:.02em; }
.icon-btn.on { color:var(--amber); }
.btn:disabled { opacity:.45; cursor:not-allowed; }
/* follow / rsvp / report active states */
.icon-btn.following, .btn.following { color:var(--green); border-color:rgba(47,209,106,.45); }
.chip.going { background:rgba(47,209,106,.16); border-color:rgba(47,209,106,.5); color:var(--green); }
.icon-btn.reported { color:var(--ember); opacity:.8; }
.tab-count { display:inline-flex; align-items:center; justify-content:center; min-width:17px; height:17px; padding:0 5px; margin-left:5px; border-radius:9px; background:rgba(255,200,47,.16); border:1px solid rgba(255,200,47,.4); color:var(--amber); font-family:var(--fmono); font-size:10px; line-height:1; }
/* profile saved-post items */
.saved-item { border:1px solid var(--line); border-radius:10px; background:rgba(255,255,255,.015); padding:12px 14px; margin-bottom:10px; }
.saved-item:last-child { margin-bottom:0; }
.saved-item .saved-meta { font-family:var(--fmono); font-size:10px; letter-spacing:.06em; text-transform:uppercase; color:var(--text-faint); margin-bottom:4px; }
.saved-item h4 { font-size:14px; color:var(--text-hi); }
.saved-item p { font-size:12.5px; color:var(--text-dim); margin-top:4px; }
/* announcements — up to four recent, on one row */
.ann-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
@media (max-width: 900px) { .ann-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ann-grid { grid-template-columns: 1fr; } }
.ann-grid .post { margin: 0; height: 100%; display: flex; flex-direction: column; }
.ann-grid .post.pinned .post-head, .ann-grid .post .post-head { padding: 16px 16px 0; }
.ann-grid .post.pinned .post-body, .ann-grid .post .post-body { padding: 12px 16px 16px; }
.ann-grid .post.pinned .post-foot, .ann-grid .post .post-foot { padding: 12px 16px; margin-top: auto; }
.online { display:inline-flex; align-items:center; gap:6px; font-family:var(--fmono); font-size:10.5px; color:var(--green); letter-spacing:.06em; }
.online i { width:7px; height:7px; border-radius:50%; background:var(--green); box-shadow:0 0 0 0 rgba(47,209,106,.6); animation:pulse 1.8s infinite; }

/* ---------- Polls ---------- */
.poll { border:1px solid var(--line); border-radius:var(--radius); background:linear-gradient(180deg,var(--bg-800),var(--bg-850)); padding:20px; }
.poll-q { font-size:15.5px; color:var(--text-hi); font-weight:600; margin-bottom:4px; }
.poll-meta { font-family:var(--fmono); font-size:10.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--text-faint); margin-bottom:16px; }
.poll-opts { display:flex; flex-direction:column; gap:10px; }
.poll-opt { position:relative; width:100%; text-align:left; border:1px solid var(--line); border-radius:10px; padding:12px 14px; overflow:hidden; background:rgba(255,255,255,.012); color:var(--text); font-size:13.5px; cursor:pointer; transition:border-color .15s; }
.poll-opt:hover { border-color:var(--amber); }
.poll-opt .po-fill { position:absolute; inset:0; width:0; background:rgba(255,200,47,.12); border-right:2px solid rgba(255,200,47,.4); transition:width .5s var(--ease); z-index:0; }
.poll-opt .po-row { position:relative; z-index:1; display:flex; justify-content:space-between; align-items:center; }
.poll-opt .po-pct { font-family:var(--fmono); font-size:12px; color:var(--amber); opacity:0; transition:opacity .3s; }
.poll.voted .po-pct { opacity:1; }
.poll.voted .poll-opt { cursor:default; }

/* ---------- Leaderboards ---------- */
.lb { border:1px solid var(--line); border-radius:var(--radius); background:linear-gradient(180deg,var(--bg-800),var(--bg-850)); overflow:hidden; }
.lb-head { padding:16px 18px; border-bottom:1px solid var(--line-soft); display:flex; align-items:center; justify-content:space-between; }
.lb-head h3 { font-size:15px; }
.lb-head .lb-cat { font-family:var(--fmono); font-size:9.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--steel-soft); }
.lb-row { display:flex; align-items:center; gap:12px; padding:11px 18px; border-bottom:1px solid var(--line-soft); }
.lb-row:last-child { border-bottom:0; }
.lb-row.me { background:rgba(255,200,47,.05); }
.lb-rank { font-family:var(--fcond); font-weight:800; font-size:16px; color:var(--text-faint); width:26px; text-align:center; flex-shrink:0; }
.lb-row.top1 .lb-rank { color:var(--amber); }
.lb-row.top2 .lb-rank { color:var(--steel-soft); }
.lb-row.top3 .lb-rank { color:var(--ember); }
.lb-info { flex:1; min-width:0; }
.lb-info h4 { font-size:13.5px; color:var(--text-hi); }
.lb-info .lb-sub { font-family:var(--fmono); font-size:10px; color:var(--text-faint); margin-top:1px; }
.lb-metric { font-family:var(--fcond); font-weight:700; font-size:16px; color:var(--amber); }
.lb-metric small { font-family:var(--fmono); font-size:9px; color:var(--text-faint); font-weight:400; letter-spacing:.08em; }

/* ---------- Live chat panel ---------- */
.chat { border:1px solid var(--line); border-radius:var(--radius); background:linear-gradient(180deg,var(--bg-800),var(--bg-850)); display:flex; flex-direction:column; overflow:hidden; }
.chat-head { padding:14px 18px; border-bottom:1px solid var(--line-soft); display:flex; align-items:center; justify-content:space-between; }
.chat-head .ch-l { display:flex; align-items:center; gap:9px; }
.chat-head h3 { font-size:14.5px; }
.chat-body { padding:16px 18px; display:flex; flex-direction:column; gap:14px; max-height:420px; overflow-y:auto; }
.chat-msg { display:flex; gap:10px; }
.chat-msg .cmsg { flex:1; min-width:0; }
.chat-msg .cmsg-name { font-size:12.5px; font-weight:600; color:var(--text-hi); display:flex; align-items:center; gap:7px; }
.chat-msg .cmsg-name .t { font-family:var(--fmono); font-size:9.5px; color:var(--text-faint); font-weight:400; }
.chat-msg .cmsg-text { font-size:13px; color:var(--text-dim); margin-top:2px; }
.chat-msg.pinned .cmsg { background:rgba(255,200,47,.06); border:1px solid rgba(255,200,47,.3); border-radius:10px; padding:9px 12px; }
.chat-foot { padding:12px 14px; border-top:1px solid var(--line-soft); display:flex; gap:9px; align-items:center; }
.chat-foot input { flex:1; min-width:0; background:rgba(0,0,0,.35); border:1px solid var(--line); border-radius:99px; padding:10px 15px; color:var(--text-hi); font-family:var(--ff); font-size:13px; }
.chat-foot input:focus { outline:none; border-color:var(--amber); }
.chat-react { display:flex; gap:7px; padding:10px 14px; border-top:1px solid var(--line-soft); }
.chat-react button { font-size:18px; padding:3px 7px; border-radius:7px; transition:.15s; }
.chat-react button:hover { background:rgba(255,255,255,.05); transform:scale(1.15); }

/* ---------- Tabs (live drop / course sub-nav) ---------- */
.tabs { display:flex; gap:4px; overflow-x:auto; border-bottom:1px solid var(--line); margin-bottom:26px; -ms-overflow-style:none; scrollbar-width:none; }
.tabs::-webkit-scrollbar { display:none; }
.tab { padding:13px 16px; font-family:var(--fmono); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--text-dim); border-bottom:2px solid transparent; white-space:nowrap; transition:.15s; display:inline-flex; align-items:center; gap:7px; }
.tab:hover { color:var(--text-hi); }
.tab.active { color:var(--amber); border-bottom-color:var(--amber); }
.tab .tcount { font-size:9.5px; color:var(--text-faint); }

/* ---------- Profile header ---------- */
.profile-head { border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; background:linear-gradient(180deg,var(--bg-800),var(--bg-850)); }
.profile-cover { height:120px; position:relative; background:radial-gradient(120% 160% at 80% -40%, rgba(255,200,47,.22), transparent 55%), repeating-linear-gradient(120deg, rgba(255,255,255,.015) 0 2px, transparent 2px 12px), linear-gradient(160deg,#17140d,#090806); border-bottom:1px solid var(--line); }
.profile-cover .pc-grid { position:absolute; inset:0; opacity:.5; }
.profile-main { padding:0 28px 26px; display:flex; gap:22px; align-items:flex-end; margin-top:-42px; position:relative; flex-wrap:wrap; }
.profile-main .av-lg { border:3px solid var(--bg-850); }
.profile-id { flex:1; min-width:200px; padding-bottom:4px; }
.profile-id h1 { font-family:var(--fcond); font-weight:800; font-size:26px; text-transform:uppercase; letter-spacing:0; }
.profile-id .pi-handle { font-family:var(--fmono); font-size:12px; color:var(--text-faint); letter-spacing:.06em; margin-top:3px; }
.profile-id .pi-meta { display:flex; gap:10px; margin-top:12px; flex-wrap:wrap; align-items:center; }
.profile-actions { display:flex; gap:10px; padding-bottom:6px; }
.profile-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border-top:1px solid var(--line); }
.profile-stats .ps { background:var(--bg-850); padding:18px; text-align:center; }
.profile-stats .ps .v { font-family:var(--fcond); font-weight:700; font-size:24px; color:var(--text-hi); }
.profile-stats .ps .v.amber { color:var(--amber); }
.profile-stats .ps .l { font-family:var(--fmono); font-size:9.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--text-faint); margin-top:6px; }
.cat-chip { display:inline-flex; align-items:center; gap:6px; font-size:12.5px; padding:7px 12px; border-radius:8px; border:1px solid var(--line); background:rgba(255,255,255,.015); color:var(--text-dim); }

/* ---------- Community rules / safety ---------- */
.rules-card { border:1px solid var(--line); border-left:3px solid var(--steel); border-radius:var(--radius-sm); background:linear-gradient(180deg,var(--bg-800),var(--bg-850)); padding:20px; }
.rules-card h3 { font-size:15px; margin-bottom:14px; display:flex; align-items:center; gap:9px; }
.rule-list { list-style:none; display:flex; flex-direction:column; gap:10px; }
.rule-list li { display:flex; gap:10px; font-size:13px; color:var(--text-dim); }
.rule-list li .rx { color:var(--red); flex-shrink:0; }
.rule-list li .rok { color:var(--green); flex-shrink:0; }
.restricted-notice { display:flex; gap:11px; font-size:12.5px; color:var(--text-dim); border:1px dashed rgba(232,69,58,.4); background:rgba(232,69,58,.05); border-radius:9px; padding:13px 15px; }
.restricted-notice .ico { color:var(--red); flex-shrink:0; }

/* compose box */
.compose { display:flex; gap:12px; align-items:center; border:1px solid var(--line); border-radius:var(--radius); background:linear-gradient(180deg,var(--bg-800),var(--bg-850)); padding:14px 16px; }
.compose input { flex:1; background:rgba(0,0,0,.35); border:1px solid var(--line); border-radius:99px; padding:12px 16px; color:var(--text-hi); font-family:var(--ff); font-size:13.5px; }
.compose input:focus { outline:none; border-color:var(--amber); }

/* community sub-grid layout */
.comm-cols { display:grid; grid-template-columns: minmax(0,1fr) 340px; gap:24px; align-items:start; }
.comm-aside { display:flex; flex-direction:column; gap:20px; position:sticky; top:84px; }
@media (max-width:1040px){ .comm-cols { grid-template-columns:minmax(0,1fr); } .comm-aside { position:static; } }
@media (max-width:760px){ .profile-stats { grid-template-columns:repeat(2,1fr); } }

/* ============================================================
   v4 — MEMBERSHIP PRICING
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; max-width: none; margin: 0; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--bg-800), var(--bg-850));
  padding: 26px 22px 24px; transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-5px); border-color: rgba(255,200,47,.35); box-shadow: var(--shadow); }
.price-card.featured {
  border-color: rgba(255,200,47,.55);
  background: radial-gradient(120% 90% at 50% -10%, rgba(255,200,47,.12), transparent 60%), linear-gradient(180deg, var(--bg-800), var(--bg-850));
  box-shadow: 0 0 0 1px rgba(255,200,47,.25), 0 24px 60px -28px rgba(255,200,47,.4);
}
.price-card.founding { border-color: rgba(200,169,81,.5); background: radial-gradient(120% 90% at 50% -10%, rgba(200,169,81,.12), transparent 60%), linear-gradient(180deg, var(--bg-800), var(--bg-850)); }
.price-tag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  font-family: var(--fmono); font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 99px; white-space: nowrap;
}
.price-tag.popular { background: linear-gradient(180deg, var(--amber), var(--amber-deep)); color: #1a0f02; box-shadow: 0 6px 18px -6px rgba(255,200,47,.6); }
.price-tag.launch { background: linear-gradient(180deg, var(--steel-soft), #a8862f); color: #1a1304; }
.price-tag.hot { background: linear-gradient(180deg, var(--ember), #c2410c); color: #fff; box-shadow: 0 6px 18px -6px rgba(255,90,60,.7); }
.price-card.hot { border-color: rgba(255,90,60,.5); background: radial-gradient(120% 90% at 50% -10%, rgba(255,90,60,.12), transparent 60%), linear-gradient(180deg, var(--bg-800), var(--bg-850)); box-shadow: 0 0 0 1px rgba(255,90,60,.22), 0 24px 60px -28px rgba(255,90,60,.4); }
.price-card.hot .pa-num { color: var(--ember); }
.price-name { font-family: var(--fcond); font-weight: 700; font-size: 17px; text-transform: uppercase; letter-spacing: .02em; color: var(--text-hi); }
.price-purpose { font-size: 12.5px; color: var(--text-dim); margin-top: 6px; min-height: 34px; }
.price-amount { display: flex; align-items: baseline; gap: 5px; margin: 16px 0 2px; }
.price-amount .pa-num { font-family: var(--fcond); font-weight: 800; font-size: 40px; color: var(--text-hi); line-height: 1; }
.price-card.featured .pa-num { color: var(--amber); }
.price-amount .pa-per { font-family: var(--fmono); font-size: 12px; color: var(--text-faint); }
.price-annual { font-family: var(--fmono); font-size: 11px; color: var(--steel-soft); letter-spacing: .04em; min-height: 16px; }
.price-cta { margin: 18px 0; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 4px; flex: 1; }
.price-features li { display: flex; gap: 10px; font-size: 13px; color: var(--text); }
.price-features li .pf-tick { color: var(--amber); flex-shrink: 0; font-size: 12px; margin-top: 1px; }
.price-card.founding .price-features li .pf-tick { color: var(--steel-soft); }
.price-features li.inherit { color: var(--text-dim); font-style: italic; }
.price-features li.inherit .pf-tick { color: var(--green); }
.pricing-note {
  border: 1px solid var(--line); border-left: 3px solid var(--steel); border-radius: var(--radius-sm);
  background: rgba(200,169,81,.04); padding: 16px 18px; font-size: 12.5px; color: var(--text-dim);
  display: flex; gap: 12px; margin-top: 26px; line-height: 1.6;
}
.pricing-note .ico { color: var(--steel-soft); flex-shrink: 0; font-size: 15px; }
.pricing-toggle { display: inline-flex; align-items: center; gap: 10px; font-family: var(--fmono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); }
@media (max-width: 1040px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } .price-card.featured { transform: none; } }
@media (max-width: 560px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ============================================================
   v5 — GLOBAL BRAND TYPOGRAPHY LOCK
   Body = Roboto Mono (readable) · Titles / buttons / display
   numbers = Orbitron · titles & buttons UPPERCASE bold · no grey
   ============================================================ */
* {
  font-family: "Roboto Mono", ui-monospace, "SFMono-Regular", Menlo, monospace !important;
  text-transform: none !important;
}

/* Orbitron — titles, brand, and large display numbers */
h1, h2, h3, h4, h5,
.display, .section-title,
.hero h1, .detail-header h1, .dash-id h1, .welcome-head h1,
.profile-id h1, .brand-name, .ab-name, .at-title, .admin-page-head h1,
.price-name, .apanel-head h2, .panel-title, .dash-section-head h2,
.btn, .price-tag, .fchip, .mini-btn, .reward-tab,
.lr-lvl, .pa-num, .price-amount .pa-num, .cd-unit .v, .hero-stat .n,
.stat-cell .sv, .acard .ac-v, .card-meta .big, .bid-current .amt,
.bidrow-status .amt, .lb-metric, .lb-rank, .s-n, .daily-xp,
.dash-tier .tier-name, .brand-mark, .nav-profile, .av, .avatar, .ac-v {
  font-family: "Orbitron", "Rajdhani", sans-serif !important;
}

/* Titles / headings — bold ALL CAPS */
h1, h2, h3, h4, h5,
.display, .section-title,
.hero h1, .detail-header h1, .dash-id h1, .welcome-head h1,
.profile-id h1, .brand-name, .ab-name, .at-title, .admin-page-head h1,
.price-name, .apanel-head h2, .panel-title, .dash-section-head h2, .lr-lvl {
  text-transform: uppercase !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

/* Buttons — bold ALL CAPS */
.btn, .price-tag, .fchip, .mini-btn, .reward-tab {
  text-transform: uppercase !important;
  font-weight: 700 !important;
  letter-spacing: .04em !important;
}

/* Roboto Mono runs a touch wide — keep body copy tight & readable */
body { letter-spacing: 0; }
p, li, td, th, .desc, .muted, .tagline, .field-hint, .cm-text, .al-t,
.input, .textarea, input, textarea, select { letter-spacing: 0 !important; }

/* ============================================================
   v6 — EYEBROW ICON TILES (homepage section kickers)
   ============================================================ */
.eyebrow, .eyebrow.steel { color: var(--amber) !important; font-weight: 700 !important; }
.eyebrow:has(.eb-ico)::before { display: none !important; }
.eyebrow .eb-ico {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 17px;
  background: linear-gradient(150deg, var(--bg-600), var(--bg-800));
  border: 1px solid rgba(255,200,47,.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 4px 12px -6px rgba(0,0,0,.6);
}
.eyebrow .eb-ico::before { content: none; }

/* Hero headline — force entire title (incl. <em> / .stroke children) to Orbitron ALL CAPS */
.hero h1, .hero h1 em, .hero h1 .stroke {
  font-family: "Orbitron", "Rajdhani", sans-serif !important;
  text-transform: uppercase !important;
  font-weight: 900 !important;
}

/* ============================================================
   v7 — PLATFORM SWITCHER · NAV · CHECKOUT · TRACKER · MAP
   ============================================================ */
/* Platform switcher (prototype/presentation tool) */
.pswitch { position: relative; z-index: 65; background: #050505; border-bottom: 1px solid var(--line); }
.pswitch-in { width: 100%; margin: 0; padding: 0 24px; display: flex; align-items: center; gap: 14px; height: 38px; }
.pswitch .ps-tag { font-family: var(--fmono); font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-faint); }
.pswitch .ps-tag b { color: var(--amber); }
.ps-drop { position: relative; }
.ps-trigger { display: inline-flex; align-items: center; gap: 8px; font-family: var(--fcond); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--text-hi); border: 1px solid var(--line); border-radius: 7px; padding: 5px 11px; background: rgba(255,255,255,.03); cursor: pointer; }
.ps-trigger:hover { border-color: var(--amber); }
.ps-trigger .psd { color: var(--amber); }
.ps-menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px; background: rgba(8,8,9,.98); backdrop-filter: blur(14px); border: 1px solid var(--line); border-radius: 11px; box-shadow: var(--shadow); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .16s; z-index: 70; }
.ps-drop.open .ps-menu { opacity: 1; visibility: visible; transform: none; }
.ps-menu a { display: flex; align-items: center; gap: 11px; padding: 11px 12px; border-radius: 8px; color: var(--text); }
.ps-menu a:hover { background: rgba(255,255,255,.04); }
.ps-menu a.on { background: rgba(255,200,47,.1); }
.ps-menu a .pm-ic { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; font-size: 15px; background: linear-gradient(150deg,var(--bg-600),var(--bg-800)); border: 1px solid var(--line); }
.ps-menu a .pm-t { font-size: 13.5px; color: var(--text-hi); }
.ps-menu a .pm-s { font-family: var(--fmono); font-size: 10px; color: var(--text-faint); }
.pswitch .ps-right { margin-left: auto; font-family: var(--fmono); font-size: 10px; color: var(--text-faint); letter-spacing: .08em; }

/* nav profile dropdown + notifications */
.nav-icon { position: relative; width: 38px; height: 38px; border-radius: 9px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--text); transition: .15s; }
.nav-icon:hover { border-color: var(--amber); color: var(--amber); }
.nav-icon .nd { position: absolute; top: -3px; right: -3px; min-width: 15px; height: 15px; padding: 0 3px; border-radius: 99px; background: var(--ember); color: #fff; font-family: var(--fmono); font-size: 8.5px; display: grid; place-items: center; border: 2px solid var(--bg-900); }
.prof-drop { position: relative; }
.prof-menu { position: absolute; top: calc(100% + 10px); right: 0; min-width: 210px; background: rgba(13,13,15,.98); backdrop-filter: blur(14px); border: 1px solid var(--line); border-radius: 11px; box-shadow: var(--shadow); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .16s; z-index: 70; }
.prof-drop.open .prof-menu { opacity: 1; visibility: visible; transform: none; }
.prof-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: 13.5px; color: var(--text-dim); }
.prof-menu a:hover { background: rgba(255,255,255,.04); color: var(--text-hi); }
.prof-menu .pm-div { height: 1px; background: var(--line); margin: 6px 4px; }
.prof-head { display: flex; align-items: center; gap: 10px; padding: 8px 10px 12px; border-bottom: 1px solid var(--line-soft); margin-bottom: 6px; }
.prof-head .ph-n { font-size: 13px; color: var(--text-hi); font-weight: 700; }
.prof-head .ph-r { font-family: var(--fmono); font-size: 9.5px; color: var(--amber); letter-spacing: .08em; }

/* mobile bottom nav (member) */
.mnav { display: none; }
@media (max-width: 980px) {
  .mnav { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 55; background: rgba(8,8,9,.97); backdrop-filter: blur(14px); border-top: 1px solid var(--line); height: 62px; }
  .mnav a { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: var(--text-faint); font-family: var(--fmono); font-size: 8.5px; letter-spacing: .08em; text-transform: uppercase; }
  .mnav a .mi { font-size: 18px; display:inline-flex; }
  .mnav a .mi svg { width: 21px; height: 21px; }
  .mnav a.on { color: var(--amber); }
  body { padding-bottom: 62px; }
}

/* breadcrumb / page title bar */
.viewbar { width: 100%; margin: 0; padding: 24px 24px 6px; }
.viewbar .vb-crumb { display: none; }
.viewbar .vb-crumb b { color: var(--amber); }
.viewbar h1 { font-family: var(--fcond); font-weight: 800; text-transform: uppercase; font-size: clamp(24px,3.2vw,34px); margin-top: 8px; }

/* ---------- Member wizard step panels ---------- */
.step-panel { display: none; }
.step-panel.active { display: block; }

/* ---------- Member step indicator (checkout/onboarding) ---------- */
.steps-ind { display: flex; align-items: center; gap: 0; margin: 0 auto 30px; max-width: 760px; }
.si-node { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; }
.si-node:not(:last-child)::after { content: ""; position: absolute; top: 16px; left: 50%; width: 100%; height: 2px; background: var(--line); z-index: 0; }
.si-node.done:not(:last-child)::after { background: var(--amber); }
.si-dot { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-family: var(--fcond); font-weight: 700; font-size: 13px; background: var(--bg-700); border: 1px solid var(--line); color: var(--text-faint); position: relative; z-index: 1; }
.si-node.active .si-dot { border-color: var(--amber); color: var(--amber); box-shadow: 0 0 0 4px rgba(255,200,47,.12); }
.si-node.done .si-dot { background: var(--amber); border-color: var(--amber); color: #1a0f02; }
.si-label { font-family: var(--fmono); font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-faint); text-align: center; }
.si-node.active .si-label, .si-node.done .si-label { color: var(--text-hi); }
@media (max-width: 560px) { .steps-ind .si-label { display: none; } .si-dot { width: 30px; height: 30px; font-size: 12px; } .si-node:not(:last-child)::after { top: 14px; } }
/* Long-label buttons wrap instead of forcing horizontal overflow on small screens */
@media (max-width: 560px) { .btn { white-space: normal; } }

/* ---------- Checkout layout ---------- */
.checkout { display: grid; grid-template-columns: minmax(0,1.6fr) .9fr; gap: 26px; align-items: start; max-width: none; margin: 0; }
.co-panel { border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg,var(--bg-800),var(--bg-850)); padding: 24px; }
.co-summary { border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg,var(--bg-800),var(--bg-850)); padding: 22px; position: sticky; top: 90px; }
.co-summary h3 { font-family: var(--fcond); font-weight: 800; text-transform: uppercase; font-size: 15px; margin-bottom: 16px; }
.co-line { display: flex; justify-content: space-between; font-size: 13.5px; padding: 9px 0; border-bottom: 1px solid var(--line-soft); }
.co-line .cl-v { color: var(--text-hi); }
.co-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 14px; margin-top: 6px; }
.co-total .ct-n { font-family: var(--fcond); font-weight: 800; font-size: 30px; color: var(--amber); }
.fld { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.fld label { font-family: var(--fmono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); }
.fld input, .fld select { background: rgba(0,0,0,.4); border: 1px solid var(--line); border-radius: 9px; padding: 12px 13px; color: var(--text-hi); font-family: var(--ff); font-size: 14px; }
.fld input:focus, .fld select:focus { outline: none; border-color: var(--amber); }
.fld-row { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 12px; }
.fld input, .fld textarea, .fld select { min-width: 0; }
@media (max-width: 480px) { .fld-row { grid-template-columns: 1fr; } }
.secure-msg { display: flex; align-items: center; gap: 8px; font-family: var(--fmono); font-size: 11px; color: var(--green); letter-spacing: .04em; margin-top: 6px; }
.bill-toggle { display: inline-flex; border: 1px solid var(--line); border-radius: 99px; padding: 4px; gap: 4px; }
.bill-toggle button { font-family: var(--fmono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; padding: 7px 16px; border-radius: 99px; color: var(--text-dim); }
.bill-toggle button.on { background: linear-gradient(180deg,var(--amber),var(--amber-deep)); color: #1a0f02; font-weight: 700; }
.check-agree { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--text-dim); margin: 14px 0; }
.check-agree input { margin-top: 3px; accent-color: var(--amber); }
@media (max-width: 880px) { .checkout { grid-template-columns: minmax(0,1fr); } .co-summary { position: static; } }

/* ---------- Transfer tracker ---------- */
.track { border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg,var(--bg-800),var(--bg-850)); padding: 8px 22px; }
.track-step { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); position: relative; }
.track-step:last-child { border-bottom: 0; }
.ts-mark { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-size: 13px; border: 2px solid var(--line); background: var(--bg-700); color: var(--text-faint); position: relative; z-index: 1; }
.track-step:not(:last-child) .ts-mark::after { content: ""; position: absolute; top: 30px; left: 50%; transform: translateX(-50%); width: 2px; height: calc(100% + 2px); background: var(--line); z-index: 0; }
.track-step.done .ts-mark { background: var(--green); border-color: var(--green); color: #04120a; }
.track-step.done:not(:last-child) .ts-mark::after { background: var(--green); }
.track-step.current .ts-mark { border-color: var(--amber); color: var(--amber); box-shadow: 0 0 0 4px rgba(255,200,47,.12); }
.track-step.failed .ts-mark { background: var(--red); border-color: var(--red); color: #fff; }
.ts-body { flex: 1; }
.ts-body h4 { font-size: 14.5px; color: var(--text-hi); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.track-step.upcoming h4 { color: var(--text-faint); }
.ts-body p { font-size: 13px; color: var(--text-dim); margin-top: 4px; }
.ts-time { font-family: var(--fmono); font-size: 10.5px; color: var(--text-faint); margin-top: 5px; letter-spacing: .04em; }

/* ---------- Notifications ---------- */
.notif { display: flex; gap: 13px; padding: 15px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.012); margin-bottom: 10px; position: relative; transition: border-color .15s; }
.notif:hover { border-color: rgba(255,200,47,.35); }
.notif.unread { background: rgba(255,200,47,.04); border-color: rgba(255,200,47,.25); }
.notif.unread::before { content: ""; position: absolute; left: -1px; top: 14px; bottom: 14px; width: 3px; border-radius: 3px; background: var(--amber); }
.notif-ic { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; display: grid; place-items: center; font-size: 17px; background: linear-gradient(150deg,var(--bg-600),var(--bg-800)); border: 1px solid var(--line); }
.notif-body { flex: 1; min-width: 0; }
.notif-body .nb-top { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.notif-body h4 { font-size: 14px; color: var(--text-hi); }
.notif-cat { font-family: var(--fmono); font-size: 8.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); border: 1px solid var(--line); border-radius: 5px; padding: 2px 6px; }
.notif-body p { font-size: 13px; color: var(--text-dim); margin: 3px 0 6px; }
.notif-time { font-family: var(--fmono); font-size: 10px; color: var(--text-faint); }
.notif-dotr { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 6px; }

/* preference toggle rows */
.pref-row { display: grid; grid-template-columns: 1.4fr repeat(4, 70px); gap: 10px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.pref-row.head { font-family: var(--fmono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); }
.pref-row .pr-name { color: var(--text-hi); font-size: 13.5px; }
.pref-cell { display: flex; justify-content: center; }
.tg { width: 38px; height: 22px; border-radius: 99px; background: rgba(255,255,255,.08); border: 1px solid var(--line); position: relative; cursor: pointer; flex-shrink: 0; transition: .2s; }
.tg::after { content: ""; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%; background: var(--text-faint); transition: .2s; }
.tg.on { background: rgba(255,200,47,.25); border-color: var(--amber); }
.tg.on::after { left: 18px; background: var(--amber); }
@media (max-width: 680px) { .pref-row { grid-template-columns: 1fr; gap: 6px; } .pref-row .pref-cell { justify-content: flex-start; } .pref-row.head { display: none; } }

/* ---------- Platform Map ---------- */
.map-hero { text-align: center; padding: 50px 0 30px; }
.map-hero h1 { font-family: var(--fcond); font-weight: 900; text-transform: uppercase; font-size: clamp(30px,5vw,56px); }
.map-section { padding: 30px 0; border-top: 1px solid var(--line-soft); }
.map-layers { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.map-layer { border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg,var(--bg-800),var(--bg-850)); padding: 20px; }
.map-layer .ml-ic { font-size: 26px; }
.map-layer h3 { font-family: var(--fcond); font-weight: 700; text-transform: uppercase; font-size: 15px; margin: 10px 0 6px; }
.map-layer .ml-eq { font-family: var(--fmono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.map-layer p { font-size: 12.5px; color: var(--text-dim); }
.map-flow { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.flow-node { border: 1px solid var(--line); border-radius: 10px; padding: 12px 16px; background: linear-gradient(180deg,var(--bg-800),var(--bg-850)); font-family: var(--fcond); font-weight: 700; text-transform: uppercase; font-size: 12.5px; color: var(--text-hi); white-space: nowrap; }
.flow-node.amber { border-color: rgba(255,200,47,.45); color: var(--amber); }
.map-flow .fl-arrow { color: var(--amber); font-size: 18px; }
@media (max-width: 880px) { .map-layers { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .map-layers { grid-template-columns: 1fr; } }

/* generic doc/help card grid reuse handled by .grid-3 + .card */
.doc-card { border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg,var(--bg-800),var(--bg-850)); padding: 20px; display: flex; flex-direction: column; gap: 10px; transition: transform .2s var(--ease), border-color .2s; }
.doc-card:hover { transform: translateY(-3px); border-color: rgba(255,200,47,.4); }
.doc-card .dc-ic { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; font-size: 19px; background: rgba(255,200,47,.08); border: 1px solid rgba(255,200,47,.3); color: var(--amber); }
.doc-card .dc-ic svg { width: 22px; height: 22px; display: block; }
.doc-card.centered { align-items: center; text-align: center; }

/* settings preference rows (label + toggle) */
.set-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.set-row:last-of-type { border-bottom: 0; }
.set-row .sr-info h4 { font-size: 14px; color: var(--text-hi); }
.set-row .sr-info p { font-size: 12.5px; color: var(--text-dim); margin-top: 2px; }
.doc-card h3 { font-size: 16px; }
.doc-card p { font-size: 13px; color: var(--text-dim); flex: 1; }
.doc-card .dc-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--line-soft); }

/* ============================================================
   v8 — LIVE SITE TRANSLATION DEMO
   ============================================================ */
.trans-index { display:flex; gap:8px; flex-wrap:wrap; position:sticky; top:0; z-index:30; background:rgba(7,7,7,.92); backdrop-filter:blur(10px); padding:12px 0; border-bottom:1px solid var(--line); margin-bottom:24px; }
.trans-index a { font-family:var(--fmono); font-size:11px; letter-spacing:.06em; padding:7px 12px; border:1px solid var(--line); border-radius:8px; color:var(--text-dim); transition:.15s; }
.trans-index a:hover { border-color:var(--amber); color:var(--amber); }
.trans-block { border:1px solid var(--line); border-radius:var(--radius-lg); background:linear-gradient(180deg,var(--bg-850),var(--bg-900)); padding:24px; margin-bottom:30px; }
.trans-block .tb-head { display:flex; align-items:center; gap:14px; margin-bottom:18px; flex-wrap:wrap; }
.trans-block .tb-emoji { width:48px; height:48px; border-radius:12px; display:grid; place-items:center; font-size:24px; background:linear-gradient(150deg,var(--bg-600),var(--bg-800)); border:1px solid rgba(255,200,47,.35); }
.trans-block .tb-id { font-family:var(--fmono); font-size:11px; color:var(--amber); letter-spacing:.1em; }
.trans-block .tb-name { font-family:var(--fcond); font-weight:800; text-transform:uppercase; font-size:22px; }
.ba { display:grid; grid-template-columns:1fr auto 1fr; gap:16px; align-items:stretch; margin-bottom:20px; }
.ba-card { border:1px solid var(--line); border-radius:var(--radius); padding:18px; }
.ba-card.before { background:rgba(232,69,58,.04); border-color:rgba(232,69,58,.25); }
.ba-card.after { background:rgba(47,209,106,.04); border-color:rgba(47,209,106,.3); }
.ba-card .ba-k { font-family:var(--fmono); font-size:9.5px; letter-spacing:.14em; text-transform:uppercase; margin-bottom:10px; }
.ba-card.before .ba-k { color:var(--red); }
.ba-card.after .ba-k { color:var(--green); }
.ba-card ul { list-style:none; display:flex; flex-direction:column; gap:8px; }
.ba-card li { font-size:13px; color:var(--text-dim); display:flex; gap:8px; }
.ba-card li b { color:var(--text-hi); font-weight:600; }
.ba-arrow { display:grid; place-items:center; font-size:24px; color:var(--amber); }
.conv-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.conv { border:1px solid var(--line); border-radius:var(--radius); background:linear-gradient(180deg,var(--bg-800),var(--bg-850)); overflow:hidden; display:flex; flex-direction:column; }
.conv-head { display:flex; align-items:center; gap:9px; padding:12px 14px; border-bottom:1px solid var(--line-soft); }
.conv-head .ch-ic { width:28px; height:28px; border-radius:7px; display:grid; place-items:center; font-size:13px; background:rgba(255,200,47,.08); border:1px solid rgba(255,200,47,.25); flex-shrink:0; }
.conv-head .ch-t { font-family:var(--fcond); font-weight:700; text-transform:uppercase; font-size:12.5px; color:var(--text-hi); }
.conv-body { padding:13px 14px; font-size:12.5px; color:var(--text-dim); flex:1; display:flex; flex-direction:column; gap:8px; }
.conv-body .cv-title { color:var(--text-hi); font-weight:600; font-size:13px; }
.conv-body .cv-row { display:flex; justify-content:space-between; gap:10px; padding:5px 0; border-bottom:1px dashed var(--line-soft); }
.conv-body .cv-row:last-child { border-bottom:0; }
.conv-body .cv-xp { color:var(--steel-soft); font-family:var(--fmono); font-size:11px; }
.needs-input { font-family:var(--fmono); font-size:10px; letter-spacing:.04em; color:var(--gold); background:rgba(233,196,106,.08); border:1px dashed rgba(233,196,106,.4); border-radius:5px; padding:2px 7px; display:inline-block; }
@media (max-width:1000px){ .conv-grid { grid-template-columns:1fr; } .ba { grid-template-columns:1fr; } .ba-arrow { transform:rotate(90deg); } }

/* ============================================================
   v9 — VIDEO PREVIEW THUMBNAILS ON LISTING CARDS
   ============================================================ */
.vid-thumb { background-size: cover !important; background-position: center center !important; background-repeat: no-repeat !important; }
.vid-thumb .ghost { display: none; }
.vid-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.5)); z-index: 1; transition: opacity .2s; }
.vid-thumb .badge-row { z-index: 3; }
.vid-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,200,47,.94); color: #1a0f02; display: grid; place-items: center; font-size: 17px; z-index: 2; box-shadow: 0 0 0 8px rgba(255,200,47,.14), 0 14px 30px -8px rgba(0,0,0,.7); transition: transform .2s; }
.vid-thumb:hover .vid-play { transform: translate(-50%,-50%) scale(1.09); }
.vid-dur { position: absolute; right: 10px; bottom: 10px; z-index: 3; font-family: var(--fmono); font-size: 10px; color: #fff; background: rgba(0,0,0,.6); padding: 3px 7px; border-radius: 5px; }
.vid-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 4; }
.vid-thumb.playing::after, .vid-thumb.playing .vid-play, .vid-thumb.playing .vid-dur { display: none; }

/* ============================================================
   v10 — REAL LOGO IN NAV
   ============================================================ */
.brand { gap: 10px; }
.brand-logo-icon { height: 36px; width: auto; display: block; flex-shrink: 0; }
.brand-logo-text { height: 19px; width: auto; display: block; }
.admin-brand .brand-logo-icon { height: 32px; }
.footer .brand-logo-icon { height: 38px; }
.footer .brand-logo-text { height: 20px; }
@media (max-width: 560px) { .brand-logo-text { display: none; } }

/* ============================================================
   v11 — GEAR ROOM HERO (background image)
   ============================================================ */
.room-hero {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  min-height: 340px; display: flex; align-items: center; padding: 36px;
  /* gradient (for legibility) over the rifle graphic; gold glow + grid as fallback */
  background-color: var(--bg-900);
  background-image:
    linear-gradient(90deg, rgba(7,7,7,.96) 0%, rgba(7,7,7,.82) 38%, rgba(7,7,7,.35) 66%, rgba(7,7,7,.6) 100%),
    radial-gradient(120% 130% at 82% 50%, rgba(255,200,47,.14), transparent 60%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.02) 0 2px, transparent 2px 10px),
    var(--rhimg, url("../img/gear-room-hero.png"));
  background-repeat: no-repeat;
  background-position: center, center right, center, center right;
  background-size: cover, cover, auto, cover;
}
.room-hero-inner { position: relative; z-index: 2; max-width: 640px; }
.room-hero .room-ico, .room-hero .wh-hello { display: none; }
/* hero with a full-width stat strip in place of CTAs */
.room-hero.hero-with-stats { flex-direction: column; align-items: stretch; justify-content: center; gap: 22px; }
.room-hero.hero-with-stats .room-hero-inner { max-width: 640px; }
.room-hero.hero-with-stats .hero-stats { position: relative; z-index: 2; width: 100%; margin: 0; }
.room-hero.hero-with-stats .hero-stats .stat-cell { background: rgba(10,10,11,.62); backdrop-filter: blur(3px); border-color: rgba(255,255,255,.12); }
.room-hero .room-ico { width: 64px; height: 64px; font-size: 30px; margin-bottom: 14px; box-shadow: 0 8px 30px -8px rgba(0,0,0,.7); }
.room-hero h1 { font-family: var(--fcond); font-weight: 900; text-transform: uppercase; font-size: clamp(34px, 5vw, 58px); line-height: 1; margin: 6px 0 12px; text-shadow: 0 2px 24px rgba(0,0,0,.7); }
.room-hero h1.wb-title { font-size: clamp(26px, 3.4vw, 40px); white-space: nowrap; }
.room-hero h1 .wb-name { color: var(--amber); text-transform: uppercase !important; }
.room-hero .rh-sub { font-size: 14.5px; color: var(--text); max-width: 500px; text-shadow: 0 1px 10px rgba(0,0,0,.8); }
.room-hero .rh-meta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 16px; }
.room-hero .rh-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
@media (max-width: 760px) {
  .room-hero { min-height: 300px; padding: 24px; background-image: linear-gradient(180deg, rgba(7,7,7,.7), rgba(7,7,7,.9)), radial-gradient(120% 130% at 82% 20%, rgba(255,200,47,.14), transparent 60%), var(--rhimg, url("../img/gear-room-hero.png")); background-size: cover, cover, cover; background-position: center; }
}

/* ============================================================
   v12 — PINNED PADDING + MOD LION AVATARS
   ============================================================ */
/* roomier pinned posts */
.post.pinned .post-head { padding: 20px 22px 0; }
.post.pinned .post-body { padding: 13px 22px 20px; }
.post.pinned .post-foot { padding: 14px 22px; margin-top: 4px; }
.post.pinned .comments, .post.pinned .comment-add { padding-left: 22px; padding-right: 22px; }

/* mod / admin avatars use the ManCave lion */
.av.lion { background-color: #15120b !important; background-image: url("../img/logo-icon.png") !important; background-size: 66% !important; background-position: center !important; background-repeat: no-repeat !important; border: 1px solid rgba(255,200,47,.35); color: transparent; font-size: 0; }
.room-hero.handguns { --rhimg: url("../img/gear-room-handguns.png"); }
.room-hero.shotguns { --rhimg: url("../img/gear-room-shotguns.png"); }
.room-hero.optics { --rhimg: url("../img/gear-room-optics.png"); }
.room-hero.edc { --rhimg: url("../img/gear-room-edc.png"); }
.room-hero.maintenance { --rhimg: url("../img/gear-room-maintenance.png"); }
.room-hero.newmembers { --rhimg: url("../img/gear-room-newmembers.png"); }
.room-hero.ffl { --rhimg: url("../img/gear-room-ffl.png"); }
.room-hero.auctions { --rhimg: url("../img/gear-room-auctions.png"); }
.room-hero.community { --rhimg: url("../img/community-hero.png"); }
/* image-less hero: keeps the dark + gold-glow + grid treatment, no photo */
.room-hero.flat { --rhimg: none; min-height: 220px; }
/* content-hub hero artwork (pairs with .right — image anchors left) */
.room-hero.contenthub { --rhimg: url("../img/lever-action-week.png"); min-height: 300px; }
/* content on the right; left side left clear for a left-justified bg image */
.room-hero.right {
  justify-content: flex-end;
  background-image:
    linear-gradient(270deg, rgba(7,7,7,.96) 0%, rgba(7,7,7,.82) 38%, rgba(7,7,7,.35) 66%, rgba(7,7,7,.6) 100%),
    radial-gradient(120% 130% at 18% 50%, rgba(255,200,47,.14), transparent 60%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.02) 0 2px, transparent 2px 10px),
    var(--rhimg, none);
  background-position: center, center left, center, center left;
}
/* block sits in the right column; text stays left-justified within it */
.room-hero.right .room-hero-inner { margin-left: auto; text-align: left; }

/* ===== FX: animated tech-lines background (v13) ===== */
.fx-section {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  padding: 22px;
  background: radial-gradient(120% 140% at 50% 0%, rgba(255,200,47,.04), transparent 55%), #070708;
}
.fx-section > .fx-techlines { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.fx-techlines canvas { display: block; width: 100%; height: 100%; }
.fx-section > *:not(.fx-techlines) { position: relative; z-index: 1; }

/* ===== static tech-gold background (replaces the retired tech-lines animation) ===== */
.fx-techlines { overflow: hidden;
  background-image: url("../img/tech-gold-hero.png");
  background-size: cover; background-position: right center; background-repeat: no-repeat; }
/* darken the left/center so overlaid copy stays legible; lion reads on the right */
.fx-techlines::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(7,7,7,.92) 0%, rgba(7,7,7,.66) 48%, rgba(7,7,7,.32) 100%); }
/* keep functional inner UIs clean — no lion behind the recorder or the walkthrough mock */
.rec-stage .fx-techlines, .mock-screen .fx-techlines { background-image: none; }
.rec-stage .fx-techlines::after, .mock-screen .fx-techlines::after { display: none; }
/* a soft vignette keeps text legible over the busier line areas */
.fx-section::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(120% 120% at 50% 50%, transparent 55%, rgba(7,7,8,.55) 100%);
}
/* let the moving lines read faintly through the cards in this section */
.fx-section .poll { background: linear-gradient(180deg, rgba(18,16,11,.62), rgba(10,9,7,.62)); backdrop-filter: blur(2px); }
.fx-section .aside-panel { background: rgba(12,11,8,.58); backdrop-filter: blur(2px); }
.fx-section .mini-card { background: rgba(18,16,11,.5); }
/* poll hero rifle — sits above the question with a slow pulsing gold glow */
.poll-hero {
  display: block; width: 86%; max-width: 440px; height: auto;
  margin: 2px auto 16px;
  animation: pollHeroGlow 3.6s ease-in-out infinite;
  will-change: filter;
}
@keyframes pollHeroGlow {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(255,200,47,.28)); }
  50%      { filter: drop-shadow(0 0 18px rgba(255,200,47,.7)); }
}
@media (prefers-reduced-motion: reduce) {
  .poll-hero { animation: none; filter: drop-shadow(0 0 8px rgba(255,200,47,.4)); }
}

/* =================================================================
   XP / Level / Badge / Streak / Rewards system (v14)
   ================================================================= */
.xp-panel { border:1px solid var(--line); border-radius:var(--radius-lg); background:radial-gradient(120% 130% at 90% -20%, rgba(255,200,47,.05), transparent 55%), linear-gradient(180deg,var(--bg-800),var(--bg-850)); padding:22px; margin-bottom:18px; }
.xp-h { font-family:var(--fcond); font-weight:800; text-transform:uppercase; letter-spacing:.02em; font-size:18px; color:var(--text-hi); margin:6px 0 12px; }
.xp-sub { font-family:var(--fmono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--text-faint); margin-bottom:8px; }

/* flow chips */
.xp-flow { display:flex; flex-wrap:wrap; align-items:center; gap:8px; margin-top:16px; }
.xp-flow-step { font-family:var(--fmono); font-size:11px; letter-spacing:.04em; padding:7px 12px; border-radius:8px; border:1px solid rgba(255,200,47,.3); background:rgba(255,200,47,.07); color:var(--amber); white-space:nowrap; }
.xp-flow-arrow { color:var(--text-faint); font-size:13px; }

/* tier chips */
.tier-chip { display:inline-flex; align-items:center; font-family:var(--fmono); font-size:10px; letter-spacing:.08em; text-transform:uppercase; padding:4px 9px; border-radius:20px; color:var(--tc,#fff); border:1px solid color-mix(in srgb, var(--tc,#fff) 45%, transparent); background:color-mix(in srgb, var(--tc,#fff) 14%, transparent); }
.tier-chip.sm { font-size:9px; padding:3px 7px; }

/* level card */
.xp-levelcard { display:flex; gap:18px; align-items:center; border:1px solid var(--line); border-radius:var(--radius-lg); background:radial-gradient(120% 140% at 85% -20%, rgba(255,200,47,.08), transparent 55%), linear-gradient(180deg,var(--bg-800),var(--bg-850)); padding:20px; }
.xp-lc-badge { width:88px; flex-shrink:0; }
.xp-lc-badge .xp-badge-svg { width:88px; height:auto; }
.xp-lc-main { flex:1; min-width:0; }
.xp-lc-top { display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap; margin-bottom:10px; }
.xp-lc-lvl { font-family:var(--fcond); font-weight:800; text-transform:uppercase; font-size:18px; color:var(--text-hi); }
.xp-lc-sub { display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap; font-family:var(--fmono); font-size:11px; color:var(--text); margin-top:7px; }
.xp-bar.sm { height:6px; }
.xp-recent { margin-top:12px; display:flex; flex-direction:column; gap:5px; border-top:1px solid var(--line-soft); padding-top:10px; }
.xp-recent-row { font-family:var(--fmono); font-size:11px; color:var(--text-dim); }
.xp-recent-row b { color:var(--amber); }

/* categories */
.xp-cat-total { font-family:var(--fmono); font-size:12px; color:var(--text-faint); margin-bottom:12px; }
.xp-cat-total b { color:var(--text-hi); font-size:15px; }
.xp-cat { margin-bottom:11px; }
.xp-cat-top { display:flex; justify-content:space-between; font-size:13px; color:var(--text); margin-bottom:4px; }
.xp-cat-top b { color:var(--text-hi); font-family:var(--fcond); }

/* level table */
.xp-table-wrap { overflow-x:auto; }
.xp-table { width:100%; border-collapse:collapse; font-size:13px; }
.xp-table th { text-align:left; font-family:var(--fmono); font-size:10px; letter-spacing:.08em; text-transform:uppercase; color:var(--text-faint); padding:8px 10px; border-bottom:1px solid var(--line); }
.xp-table td { padding:9px 10px; border-bottom:1px solid var(--line-soft); color:var(--text); }
.xp-table .xp-lt-n { font-family:var(--fcond); font-weight:800; color:var(--amber); width:36px; }
.xp-table .xp-lt-xp { font-family:var(--fmono); font-size:12px; color:var(--text-dim); }

/* tiers */
.tier-row { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:12px; }
.tier-card { border:1px solid color-mix(in srgb, var(--tc) 35%, var(--line)); border-radius:12px; padding:14px; background:color-mix(in srgb, var(--tc) 7%, transparent); text-align:center; }
@media (max-width:680px){ .tier-row { grid-template-columns:repeat(2,1fr);} }

/* badge grid */
.xp-badge-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:14px; }
@media (max-width:760px){ .xp-badge-grid { grid-template-columns:repeat(3,1fr);} }
@media (max-width:460px){ .xp-badge-grid { grid-template-columns:repeat(2,1fr);} }
.xp-badge { position:relative; border:1px solid var(--line); border-radius:12px; background:rgba(255,255,255,.015); padding:14px 10px 12px; text-align:center; transition:border-color .2s, transform .2s; cursor:default; }
.xp-badge.on:hover, .xp-badge:focus { border-color:rgba(255,200,47,.45); transform:translateY(-3px); outline:none; }
.xp-badge-svg { width:66px; height:auto; margin:0 auto 6px; display:block; }
.xp-badge-name { font-family:var(--fcond); font-weight:700; text-transform:uppercase; font-size:12px; color:var(--text-hi); line-height:1.1; }
.xp-badge.off .xp-badge-name { color:var(--text-faint); }
.xp-badge-tier { font-family:var(--fmono); font-size:9px; letter-spacing:.08em; text-transform:uppercase; margin-top:3px; }
.xp-badge-detail { position:absolute; inset:auto 8px 8px; bottom:calc(100% + 8px); left:50%; transform:translateX(-50%) translateY(6px); width:200px; background:var(--bg-700,#16161a); border:1px solid rgba(255,200,47,.35); border-radius:10px; padding:11px 12px; opacity:0; pointer-events:none; transition:opacity .18s, transform .18s; z-index:30; box-shadow:0 18px 40px -16px rgba(0,0,0,.8); text-align:left; }
.xp-badge-detail b { display:block; font-size:12px; color:var(--text-hi); margin-bottom:4px; }
.xp-badge-detail span { display:block; font-size:11.5px; color:var(--text-dim); line-height:1.4; }
.xp-badge-detail .xp-badge-req { margin-top:6px; font-family:var(--fmono); font-size:10px; color:var(--amber); }
.xp-badge.on:hover .xp-badge-detail, .xp-badge:focus .xp-badge-detail { opacity:1; transform:translateX(-50%) translateY(0); }

/* rules + cap */
.xp-cap { display:inline-flex; flex-direction:column; align-items:center; border:1px solid rgba(255,200,47,.4); border-radius:12px; background:rgba(255,200,47,.08); padding:12px 22px; margin-bottom:16px; }
.xp-cap-n { font-family:var(--fcond); font-weight:900; font-size:30px; color:var(--amber); line-height:1; }
.xp-cap-l { font-family:var(--fmono); font-size:10px; letter-spacing:.06em; text-transform:uppercase; color:var(--text-faint); margin-top:4px; }
.xp-rules-cols { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
@media (max-width:680px){ .xp-rules-cols { grid-template-columns:1fr;} }
.xp-list { list-style:none; display:flex; flex-direction:column; gap:7px; }
.xp-list li { position:relative; padding-left:20px; font-size:13px; color:var(--text-dim); }
.xp-list li::before { content:"›"; position:absolute; left:4px; color:var(--text-faint); }
.xp-list.ok li::before { content:"✓"; color:var(--green); }
.xp-list.bad li::before { content:"✕"; color:var(--ember); }
.xp-list.inline { flex-flow:row wrap; gap:6px 16px; }

/* economy */
.xp-econ { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media (max-width:780px){ .xp-econ { grid-template-columns:1fr;} }
.xp-econ-row { display:flex; justify-content:space-between; align-items:center; gap:10px; padding:8px 0; border-bottom:1px solid var(--line-soft); font-size:13px; color:var(--text); }
.xp-pill { font-family:var(--fmono); font-size:11px; font-weight:600; color:var(--amber); background:rgba(255,200,47,.1); border:1px solid rgba(255,200,47,.3); border-radius:20px; padding:3px 9px; white-space:nowrap; }
.xp-droppkg { display:grid; grid-template-columns:1fr 1fr; gap:0 20px; }
@media (max-width:560px){ .xp-droppkg { grid-template-columns:1fr;} }

/* missions */
.mission-card { display:flex; align-items:center; gap:13px; border:1px solid var(--line); border-radius:12px; background:rgba(255,255,255,.015); padding:12px 14px; margin-bottom:10px; }
.mission-card:last-child { margin-bottom:0; }
.mission-ic { width:40px; height:40px; flex-shrink:0; border-radius:10px; display:grid; place-items:center; font-size:18px; background:rgba(255,200,47,.08); border:1px solid rgba(255,200,47,.25); }
.mission-info { flex:1; min-width:0; }
.mission-info h4 { font-size:14px; color:var(--text-hi); }
.mission-meta { font-family:var(--fmono); font-size:10.5px; letter-spacing:.03em; color:var(--text-faint); margin-top:2px; }

/* streak */
.streak-track { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-top:14px; }
.streak-step { border:1px solid var(--line); border-radius:10px; padding:12px; text-align:center; background:rgba(255,255,255,.012); }
.streak-step.hit { border-color:rgba(255,90,60,.4); background:rgba(255,90,60,.08); }
.streak-step .streak-d { font-family:var(--fcond); font-weight:800; font-size:20px; color:var(--text-hi); }
.streak-step.hit .streak-d { color:var(--ember); }
.streak-step .streak-r { font-family:var(--fmono); font-size:10.5px; color:var(--text-dim); margin-top:4px; }
@media (max-width:560px){ .streak-track { grid-template-columns:repeat(2,1fr);} }

/* rewards */
.reward-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:6px; }
@media (max-width:780px){ .reward-grid { grid-template-columns:repeat(2,1fr);} }
@media (max-width:460px){ .reward-grid { grid-template-columns:1fr;} }
.reward-card { display:flex; align-items:center; gap:10px; border:1px solid var(--line); border-radius:10px; background:rgba(255,255,255,.015); padding:11px 13px; font-size:13px; color:var(--text); }
.reward-ic { font-size:15px; }

/* membership */
.ms-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
@media (max-width:880px){ .ms-grid { grid-template-columns:repeat(2,1fr);} }
@media (max-width:480px){ .ms-grid { grid-template-columns:1fr;} }
.ms-card { border:1px solid var(--line); border-radius:12px; background:rgba(255,255,255,.012); padding:16px; }
.ms-card h4 { font-family:var(--fcond); font-weight:800; text-transform:uppercase; font-size:14px; color:var(--amber); margin-bottom:10px; }

/* game loop compare */
.loop-compare { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:18px; }
@media (max-width:680px){ .loop-compare { grid-template-columns:1fr;} }
.loop-old, .loop-new { border:1px solid var(--line); border-radius:12px; padding:14px; background:rgba(255,255,255,.012); }
.loop-tag { font-family:var(--fmono); font-size:10px; letter-spacing:.08em; text-transform:uppercase; color:var(--text-faint); margin-bottom:8px; }
.loop-tag.amber { color:var(--amber); }
.loop-old .xp-flow-step { border-color:var(--line); background:rgba(255,255,255,.02); color:var(--text-faint); }

/* admin warning */
.xp-adminwarn { border-color:rgba(255,90,60,.45); }

/* toast */
.xp-toast { position:fixed; left:50%; bottom:26px; transform:translateX(-50%) translateY(20px); background:linear-gradient(180deg,#15140f,#0c0b08); border:1px solid rgba(255,200,47,.5); color:var(--amber); font-family:var(--fmono); font-size:13px; font-weight:600; padding:11px 18px; border-radius:10px; box-shadow:0 18px 50px -18px rgba(0,0,0,.85); opacity:0; pointer-events:none; transition:opacity .25s, transform .25s; z-index:9999; }
.xp-toast.show { opacity:1; transform:translateX(-50%) translateY(0); }
.xp-toast.warn { border-color:rgba(255,90,60,.6); color:var(--ember); }

/* =================================================================
   Maneframe — animated tech-lion member identity (v15)
   ================================================================= */
.mf-cover { position:relative; overflow:hidden; border:1px solid var(--line); border-radius:var(--radius-lg); min-height:200px; background:#08090b; margin-bottom:18px; }
.mf-cover .mf-hud { position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image:
    radial-gradient(120% 140% at 88% 30%, color-mix(in srgb, var(--mfc) 22%, transparent), transparent 60%),
    repeating-linear-gradient(125deg, rgba(255,255,255,.03) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(55deg, color-mix(in srgb, var(--mfc) 10%, transparent) 0 1px, transparent 1px 40px);
  background-size: cover, 260px 260px, 320px 320px;
  animation: mfHud 18s linear infinite; }
.mf-cover-inner { position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:24px 26px; }
.mf-cover-meta { flex:1; min-width:0; text-align:left; }
.mf-tag { font-family:var(--fmono); font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--text-faint); }
.mf-lvl { font-family:var(--fcond); font-weight:900; text-transform:uppercase; font-size:clamp(22px,3vw,32px); line-height:1.05; color:var(--text-hi); margin-top:6px; }
.mf-xp { font-family:var(--fmono); font-size:11px; color:var(--text-dim); }
.mf-next { margin-top:12px; display:flex; flex-direction:column; gap:2px; }
.mf-next-lbl { font-family:var(--fmono); font-size:9.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--text-faint); }
.mf-next-v { font-size:13px; color:var(--text); }
.mf-cover-lion { flex:1; display:flex; justify-content:flex-end; align-items:center; }
/* tier accent var */
.mf-t0 { --mfc:#9aa3ad; } .mf-t1 { --mfc:#4ea863; } .mf-t2 { --mfc:#ffc82f; } .mf-t3 { --mfc:#d8584b; } .mf-t4 { --mfc:#f4cf5e; }
.mf-cover-lion .mf-hero-lion { width:390px; max-width:58vw; height:auto; display:block; animation: mfLionGlow 3.6s ease-in-out infinite; will-change:filter; }
@keyframes mfLionGlow { 0%,100% { filter: drop-shadow(0 0 8px rgba(255,200,47,.30)); } 50% { filter: drop-shadow(0 0 28px rgba(255,200,47,.78)); } }
@media (prefers-reduced-motion: reduce){ .mf-cover-lion .mf-hero-lion { animation:none; filter:drop-shadow(0 0 14px rgba(255,200,47,.5)); } }
@media (max-width:620px){ .mf-cover-inner { flex-direction:column; align-items:flex-start; } .mf-cover-lion { justify-content:flex-start; } .mf-cover-lion .mf-hero-lion { width:273px; } }

/* lion animations */
.mf-eye { animation: mfEye 2.6s ease-in-out infinite; transform-origin:center; }
.mf-aura { transform-origin:center; animation: mfAura 4s ease-in-out infinite; }
@keyframes mfEye { 0%,100% { opacity:.55; } 50% { opacity:1; } }
@keyframes mfAura { 0%,100% { opacity:.2; transform:scale(1); } 50% { opacity:.5; transform:scale(1.06); } }
@keyframes mfHud { 0% { background-position:0 0, 0 0, 0 0; } 100% { background-position:0 0, 260px 130px, -320px 160px; } }
.mf-lion:hover .mf-mane line { animation: mfShimmer 1.2s ease-in-out; }
@keyframes mfShimmer { 0%,100% { opacity:.6; } 50% { opacity:1; } }
@media (prefers-reduced-motion: reduce){ .mf-eye, .mf-aura, .mf-cover .mf-hud { animation:none; } }

/* progression strip */
.mf-strip { display:flex; align-items:stretch; gap:6px; overflow-x:auto; padding-bottom:6px; }
.mf-node { flex:1; min-width:120px; border:1px solid var(--line); border-radius:12px; background:rgba(255,255,255,.012); padding:12px 8px; text-align:center; }
.mf-node.cur { border-color:rgba(255,200,47,.5); box-shadow:0 0 0 1px rgba(255,200,47,.25) inset; }
.mf-node.off { opacity:.5; }
.mf-node-lion { height:118px; display:flex; align-items:flex-end; justify-content:center; }
.mf-node-lion img, .mf-node-lion svg { width:104px; height:auto; }
.mf-node { min-width:128px; }
.mf-node-name { font-family:var(--fcond); font-weight:800; text-transform:uppercase; font-size:13px; margin-top:4px; }
.mf-node-lvl { font-family:var(--fmono); font-size:10px; color:var(--text-faint); }
.mf-node-state { font-family:var(--fmono); font-size:10px; color:var(--text-dim); margin-top:4px; }
.mf-arrow { align-self:center; color:var(--text-faint); flex-shrink:0; }
@media (max-width:760px){ .mf-arrow { display:none; } }

/* seasonal grid */
.mf-season-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
@media (max-width:820px){ .mf-season-grid { grid-template-columns:repeat(2,1fr);} }
@media (max-width:520px){ .mf-season-grid { grid-template-columns:1fr;} }
.mf-season { border:1px solid var(--line); border-radius:12px; background:rgba(255,255,255,.012); padding:14px; }
.mf-season-h { display:flex; align-items:center; gap:9px; margin-bottom:10px; }
.mf-season-h b { font-family:var(--fcond); font-weight:800; text-transform:uppercase; font-size:13px; color:var(--text-hi); }
.mf-season-ic { font-size:17px; }

/* inline crest (community / leaderboards) */
.mf-crest { display:inline-flex; vertical-align:middle; line-height:0; }
.mf-crest svg { display:block; }

/* admin tiers */
.mf-admin-tiers { display:flex; gap:14px; flex-wrap:wrap; }
.mf-admin-tier { text-align:center; }

/* level badges now use the recolored lion crest + level number */
.xp-badge-art { position:relative; display:block; width:74px; margin:0 auto 6px; line-height:0; }
.xp-badge-art img { width:100%; height:auto; display:block; }
.xp-badge-num { position:absolute; left:50%; bottom:6px; transform:translateX(-50%); font-family:var(--fcond); font-weight:800; font-size:13px; line-height:1; padding:1px 7px; border-radius:7px; background:rgba(8,9,11,.72); border:1px solid rgba(255,255,255,.12); }
.xp-badge-lock { position:absolute; top:6px; right:6px; font-size:12px; }
.xp-lc-badge .xp-badge-art { width:100%; margin:0; }

/* Maneframe cover uses the animated gold tech-lines behind the lion */
.mf-cover .fx-techlines { position:absolute; inset:0; z-index:0; pointer-events:none; overflow:hidden; }
.mf-cover .fx-techlines canvas { display:block; width:100%; height:100%; }
.mf-cover .mf-cover-inner { position:relative; z-index:1; }

/* Maneframe cover: dark-left → transparent-right overlay so left-side text stays readable */
.mf-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(270deg, rgba(8,9,11,.94) 0%, rgba(8,9,11,.80) 34%, rgba(8,9,11,.35) 58%, rgba(8,9,11,0) 76%);
}

/* badge above the copy in the Maneframe hero */
.mf-hero-badge { display:inline-block; width:78px; margin:0 0 12px; }
.mf-hero-badge img { width:100%; }

/* Maneframe lion "born from tech" load animation */
.mf-lion-stage { display:inline-block; position:relative; animation: mfLionBorn 1.25s cubic-bezier(.2,.85,.25,1) both; }
.mf-lion-stage::after {
  content:""; position:absolute; left:-6%; right:-6%; top:100%; height:3px; pointer-events:none; opacity:0;
  background: linear-gradient(90deg, transparent, #ffc82f 35%, #fff 50%, #ffc82f 65%, transparent);
  box-shadow: 0 0 18px 5px rgba(255,200,47,.75);
  animation: mfScan 1.25s ease-out .05s 1 both;
}
@keyframes mfLionBorn {
  0%   { opacity:0; transform: translateY(22px) scale(.8);  filter: brightness(3.6) saturate(1.7); }
  45%  { opacity:1; transform: translateY(0) scale(1.03);   filter: brightness(1.8) saturate(1.3); }
  100% { opacity:1; transform: translateY(0) scale(1);      filter: none; }
}
@keyframes mfScan {
  0%   { opacity:0; top:100%; }
  12%  { opacity:1; }
  88%  { opacity:1; }
  100% { opacity:0; top:-6%; }
}
@media (prefers-reduced-motion: reduce) {
  .mf-lion-stage { animation:none; }
  .mf-lion-stage::after { display:none; }
}

/* clickable Maneframe progression nodes + preview chip */
.mf-node { cursor:pointer; transition:border-color .18s, transform .18s; }
.mf-node:hover, .mf-node:focus-visible { border-color:rgba(255,200,47,.5); transform:translateY(-3px); outline:none; }
.mf-preview-chip { font-family:var(--fmono); font-size:9px; letter-spacing:.08em; text-transform:uppercase; padding:2px 7px; border-radius:20px; background:rgba(255,200,47,.16); border:1px solid rgba(255,200,47,.45); color:var(--amber); margin-left:6px; vertical-align:middle; }

/* Seat claim quick buttons — allow shrinking + stack on narrow screens to avoid horizontal overflow */
.seat-quick { flex-wrap:wrap; }
.seat-quick .btn { min-width:0; white-space:normal; }
@media (max-width:560px){
  .seat-quick { flex-direction:column; }
  .seat-quick .btn { width:100%; flex:1 1 auto; white-space:nowrap; }
}

/* Membership pricing — single column on phones to avoid horizontal overflow */
@media (max-width:600px){ .pricing-grid { grid-template-columns:1fr; } }

/* ===================== Member left rail (logged-in dashboard shell) ===================== */
:root{ --mc-rail-w:252px; }
body.mc-has-rail{ padding-left:var(--mc-rail-w); transition:padding-left .22s ease; }

.mc-rail{
  position:fixed; top:0; left:0; z-index:60;
  width:var(--mc-rail-w); height:100vh;
  display:flex; flex-direction:column; gap:2px;
  padding:16px 12px 14px;
  background:linear-gradient(180deg, var(--bg-800), var(--bg-850));
  border-right:1px solid var(--line);
  overflow-y:auto; overflow-x:hidden;
}
.mc-rail::-webkit-scrollbar{ width:0; }
.mc-rail-head{ display:flex; align-items:center; gap:8px; padding:6px 8px 14px; }
.mc-rail-brand{ display:flex; align-items:center; gap:9px; min-width:0; }
.mc-rail-brand .brand-logo-icon{ height:30px; }
.mc-rail-brand .brand-logo-text{ height:15px; }
.mc-rail-toggle{ margin-left:auto; flex:none; width:26px; height:26px; border-radius:7px; display:grid; place-items:center; background:none; border:1px solid transparent; color:var(--text-faint); cursor:pointer; font-size:16px; line-height:1; transition:.15s; }
.mc-rail-toggle:hover{ border-color:var(--line); color:var(--amber); background:rgba(255,255,255,.03); }

.mc-rail-profile{ display:flex; align-items:center; gap:10px; padding:9px 10px; margin-bottom:4px; border:1px solid var(--line-soft); border-radius:11px; background:rgba(255,255,255,.02); transition:border-color .15s; }
.mc-rail-profile:hover{ border-color:rgba(255,200,47,.35); }
.mc-rail-profile .mrp-t{ display:flex; flex-direction:column; min-width:0; }
.mc-rail-profile .mrp-name{ font-size:13px; font-weight:700; color:var(--text-hi); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.mc-rail-profile .mrp-role{ font-family:var(--fmono); font-size:9px; letter-spacing:.06em; color:var(--amber); text-transform:uppercase; }

.mc-rail-nav{ display:flex; flex-direction:column; gap:2px; }
.mc-nav-label{ font-family:var(--fmono); font-size:9px; letter-spacing:.18em; text-transform:uppercase; color:var(--text-faint); padding:14px 12px 6px; }
.mc-nav-item{ position:relative; display:flex; align-items:center; gap:12px; padding:9px 12px; border-radius:9px; color:var(--text-dim); font-size:13.5px; font-weight:500; transition:background .16s, color .16s; }
.mc-nav-item .mni-ic{ width:20px; height:20px; flex:none; display:grid; place-items:center; opacity:.85; }
.mc-rail .mni-svg{ width:19px; height:19px; }
.mc-toggle-ic{ width:16px; height:16px; transition:transform .2s ease; }
.mc-mini-ic{ width:14px; height:14px; flex:none; }
.mc-nav-item .mni-t{ white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.mc-nav-item:hover{ background:rgba(255,255,255,.04); color:var(--text-hi); }
.mc-nav-item.active{ background:linear-gradient(100deg, rgba(255,200,47,.16), rgba(255,200,47,.03)); color:var(--text-hi); box-shadow:inset 0 0 0 1px rgba(255,200,47,.3); }
.mc-nav-item.active::before{ content:""; position:absolute; left:0; top:50%; transform:translateY(-50%); width:3px; height:18px; border-radius:0 3px 3px 0; background:var(--amber); }
.mc-nav-item.active .mni-ic{ opacity:1; }
.mc-nav-item.has-tint .mni-ic{ opacity:1; }
.mc-nav-item .mni-badge{ margin-left:auto; min-width:17px; height:17px; padding:0 4px; border-radius:99px; background:var(--ember); color:#fff; font-family:var(--fmono); font-size:9px; display:grid; place-items:center; }

.mc-rail-foot{ margin-top:auto; padding-top:12px; display:flex; flex-direction:column; gap:10px; }
.mc-rail-xp{ padding:10px 12px; border:1px solid var(--line-soft); border-radius:10px; background:rgba(255,255,255,.02); }
.mc-rail-xp .mrx-row{ display:flex; justify-content:space-between; font-family:var(--fmono); font-size:9.5px; letter-spacing:.06em; text-transform:uppercase; color:var(--text-dim); margin-bottom:7px; }
.mc-rail-xp .mrx-pct{ color:var(--amber); }
.mc-rail-xp .mrx-bar{ height:5px; border-radius:99px; background:rgba(255,255,255,.08); overflow:hidden; }
.mc-rail-xp .mrx-bar i{ display:block; height:100%; border-radius:99px; background:linear-gradient(90deg, var(--amber), #ffd873); }
.mc-rail-cta{ display:flex; align-items:center; justify-content:center; gap:8px; }
.mc-rail-mini{ display:flex; gap:8px; }
.mc-rail-mini a{ flex:1; display:flex; align-items:center; justify-content:center; gap:6px; padding:8px; border:1px solid var(--line-soft); border-radius:9px; font-family:var(--fmono); font-size:10px; letter-spacing:.08em; text-transform:uppercase; color:var(--text-faint); transition:.15s; }
.mc-rail-mini a:hover{ border-color:var(--line); color:var(--text-hi); }

/* collapsed rail (icon-only) */
html.mc-rail-collapsed{ --mc-rail-w:72px; }
html.mc-rail-collapsed .mc-rail{ padding:16px 8px 14px; }
html.mc-rail-collapsed .mc-rail-brand .brand-logo-text,
html.mc-rail-collapsed .mrp-t,
html.mc-rail-collapsed .mc-nav-label,
html.mc-rail-collapsed .mc-nav-item .mni-t,
html.mc-rail-collapsed .mc-rail-xp,
html.mc-rail-collapsed .mc-rail-cta .mni-t,
html.mc-rail-collapsed .mc-rail-mini a span{ display:none; }
html.mc-rail-collapsed .mc-rail-head{ flex-direction:column; gap:10px; justify-content:center; padding:6px 0 14px; }
html.mc-rail-collapsed .mc-rail-brand{ justify-content:center; }
html.mc-rail-collapsed .mc-rail-toggle{ margin:0; }
html.mc-rail-collapsed .mc-toggle-ic{ transform:rotate(180deg); }
html.mc-rail-collapsed .mc-rail-brand .brand-logo-icon{ height:32px; }
html.mc-rail-collapsed .mc-rail-profile{ justify-content:center; padding:8px; }
html.mc-rail-collapsed .mc-nav-item{ justify-content:center; gap:0; padding:11px 0; }
html.mc-rail-collapsed .mc-nav-item .mni-badge{ position:absolute; top:3px; right:12px; margin:0; }
html.mc-rail-collapsed .mc-nav-item.active::before{ display:none; }
html.mc-rail-collapsed .mc-rail-cta{ padding:0; height:42px; }
html.mc-rail-collapsed .mc-rail-mini{ flex-direction:column; }

/* mobile: hide rail, restore normal flow, keep bottom nav */
@media (max-width:980px){
  body.mc-has-rail{ padding-left:0; }
  .mc-rail{ display:none; }
}

/* ===================== Dashboard: focused, engagement-first layout ===================== */
.dash-greet{ display:flex; align-items:flex-end; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-bottom:18px; }
.dash-greet .wh-hello{ margin:0; }
.dash-greet .dg-sub{ margin:5px 0 0; font-size:13.5px; color:var(--text-dim); }
.dash-greet .dg-sub b{ color:var(--amber); font-weight:600; }
.dash-greet-chips{ display:flex; gap:9px; flex-wrap:wrap; }
.dg-chip{ display:inline-flex; align-items:center; gap:7px; padding:8px 13px; border:1px solid var(--line-soft); border-radius:99px; font-family:var(--fmono); font-size:11px; letter-spacing:.06em; text-transform:uppercase; color:var(--text-dim); transition:.15s; }
.dg-chip.amber{ color:var(--amber); border-color:rgba(255,200,47,.4); }
a.dg-chip:hover{ border-color:var(--amber); color:var(--amber); }

.focus-card{ position:relative; overflow:hidden; border:1px solid rgba(255,200,47,.42); border-radius:var(--radius-lg); background:radial-gradient(130% 160% at 92% -30%, rgba(255,200,47,.16), transparent 55%), linear-gradient(180deg,var(--bg-800),var(--bg-850)); padding:22px 26px; margin-bottom:24px; box-shadow:0 20px 50px -30px rgba(255,200,47,.4); }
.focus-card .fc-head{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:14px; }
.focus-card h2{ font-family:var(--fcond); font-weight:800; text-transform:uppercase; font-size:clamp(20px,2.4vw,27px); line-height:1.06; margin:0 0 7px; }
.focus-card .fc-desc{ font-size:14px; color:var(--text-dim); max-width:560px; }
.focus-grid{ display:grid; grid-template-columns:1fr auto; gap:22px; align-items:center; }
.fc-count{ text-align:right; flex:none; }
.fc-count .card-cat{ display:block; margin-bottom:6px; }
.fc-prog{ display:flex; align-items:center; gap:12px; margin:16px 0 18px; }
.fc-prog .bar{ flex:1; height:7px; }
.fc-prog .fc-steps{ font-family:var(--fmono); font-size:11px; color:var(--text-dim); white-space:nowrap; }
@media (max-width:640px){ .focus-grid{ grid-template-columns:1fr; } .fc-count{ text-align:left; } }

/* Top-right notification bell (member shell, lives in the top prototype bar) */
.ps-notif{ position:relative; display:grid; place-items:center; width:32px; height:32px; border-radius:8px; border:1px solid var(--line); color:var(--text-dim); flex:none; transition:.15s; }
.ps-notif:hover,
.ps-notif.active{ border-color:var(--amber); color:var(--amber); }
.ps-notif-ic{ width:17px; height:17px; }
.ps-nd{ position:absolute; top:-5px; right:-5px; min-width:15px; height:15px; padding:0 3px; border-radius:99px; background:var(--ember); color:#fff; font-family:var(--fmono); font-size:8.5px; display:grid; place-items:center; border:2px solid #050505; }
@media (max-width:600px){ .pswitch .ps-right{ display:none; } .pswitch .ps-menu{ left:auto; right:0; } }

/* ===== Visual seat picker + 5-min hold ===== */
.seat-legend{ display:flex; gap:12px; flex-wrap:wrap; font-family:var(--fmono); font-size:9px; letter-spacing:.05em; text-transform:uppercase; color:var(--text-faint); margin-bottom:12px; }
.seat-legend span{ display:inline-flex; align-items:center; gap:5px; }
.seat-legend i{ width:11px; height:11px; border-radius:3px; display:inline-block; border:1px solid var(--line); }
.seat-legend .slg-avail i{ background:rgba(255,255,255,.05); }
.seat-legend .slg-sel i{ background:var(--amber); border-color:var(--amber); }
.seat-legend .slg-mine i{ background:rgba(61,126,255,.35); border-color:var(--steel-soft); }
.seat-legend .slg-taken i{ background:rgba(255,255,255,.04); opacity:.5; }

.seat-grid{ display:grid; grid-template-columns:repeat(10,1fr); gap:4px; margin-bottom:14px; }
.seat-cell{ aspect-ratio:1; min-width:0; padding:0; border-radius:6px; border:1px solid var(--line); background:rgba(255,255,255,.03); color:var(--text-dim); font-family:var(--fmono); font-size:9px; line-height:1; cursor:pointer; display:grid; place-items:center; transition:background .12s, border-color .12s, color .12s, transform .1s; }
.seat-cell:hover:not(:disabled){ border-color:var(--amber); color:var(--amber); transform:translateY(-1px); }
.seat-cell.sel{ background:var(--amber); border-color:var(--amber); color:#111; font-weight:700; box-shadow:0 0 0 2px rgba(255,200,47,.28); }
.seat-cell.taken{ background:rgba(255,255,255,.02); border-color:transparent; color:var(--text-faint); opacity:.35; cursor:not-allowed; }
.seat-cell.mine{ background:rgba(61,126,255,.22); border-color:var(--steel-soft); color:#cfe0ff; cursor:default; }
.seat-grid.locked .seat-cell:not(.mine){ opacity:.5; pointer-events:none; }

.seat-select-sum{ min-height:24px; margin-bottom:12px; }
.seat-select-sum .ssum-label{ font-family:var(--fmono); font-size:11px; letter-spacing:.05em; text-transform:uppercase; color:var(--text-dim); }
.seat-select-sum .ssum-label.warn{ color:var(--ember); }
.seat-select-sum .ssum-pills, .seat-hold-list, [data-checkout-seats], [data-success-seats]{ display:flex; flex-wrap:wrap; gap:7px; margin-top:9px; }
.seat-pill{ display:inline-flex; align-items:center; padding:5px 11px; border-radius:8px; background:linear-gradient(150deg,rgba(255,200,47,.18),rgba(255,200,47,.05)); border:1px solid rgba(255,200,47,.35); font-family:var(--fmono); font-size:11.5px; font-weight:700; color:var(--amber); letter-spacing:.03em; }

.seat-hold{ border:1px solid rgba(255,200,47,.4); border-radius:var(--radius); background:radial-gradient(120% 140% at 90% -20%, rgba(255,200,47,.12), transparent 55%), linear-gradient(180deg,var(--bg-800),var(--bg-850)); padding:16px; }
.seat-hold-top{ display:flex; align-items:center; gap:12px; }
.seat-hold-top .sh-ico{ font-size:20px; flex:none; }
.seat-hold-top .sh-title{ font-family:var(--fcond); font-weight:800; text-transform:uppercase; font-size:14px; color:var(--text-hi); }
.seat-hold-top .sh-sub{ font-size:11.5px; color:var(--text-dim); margin-top:2px; }
.hold-timer{ margin-left:auto; flex:none; font-family:var(--fmono); font-weight:700; font-size:20px; color:var(--amber); letter-spacing:.04em; }
.hold-timer.warn{ color:var(--ember); animation:holdpulse 1s infinite; }
@keyframes holdpulse{ 50%{ opacity:.55; } }

/* checkout hold banner */
.seat-hold-banner{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; border:1px solid rgba(255,200,47,.42); border-radius:var(--radius); background:linear-gradient(90deg, rgba(255,200,47,.12), transparent); padding:14px 18px; margin-bottom:22px; font-size:14px; color:var(--text-dim); }
.seat-hold-banner .hb-ico{ font-size:18px; }
.seat-hold-banner .hold-timer{ margin-left:0; font-size:22px; }
.seat-hold-banner b{ color:var(--text-hi); }

/* Seat roster (drop detail) — access-pass style rows */
.seat-roster{ display:flex; flex-direction:column; }
.roster-row{ display:flex; align-items:center; gap:14px; padding:12px 2px; border-bottom:1px solid var(--line-soft); }
.roster-row:last-child{ border-bottom:0; }
.roster-seat{ flex:none; width:50px; height:50px; border-radius:12px; display:grid; place-items:center; align-content:center; text-align:center; background:radial-gradient(120% 120% at 50% 0%, rgba(255,200,47,.2), rgba(255,200,47,.05)); border:1px solid rgba(255,200,47,.35); }
.roster-seat small{ display:block; font-family:var(--fmono); font-size:7.5px; letter-spacing:.12em; color:var(--text-faint); }
.roster-seat b{ display:block; font-family:var(--fcond); font-weight:800; font-size:18px; color:var(--amber); line-height:1; margin-top:1px; }
.roster-info{ flex:1; min-width:0; }
.roster-info h4{ font-size:14px; color:var(--text-hi); font-weight:600; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.roster-info .sub{ font-family:var(--fmono); font-size:10.5px; letter-spacing:.04em; color:var(--text-faint); margin-top:4px; }
.roster-row .chip{ flex:none; }
.roster-row{ padding-left:8px; padding-right:8px; border-radius:9px; transition:background .14s; }
.roster-row:hover{ background:rgba(255,255,255,.025); }
.roster-row .av{ flex:none; font-family:var(--fmono); font-size:10.5px; }
.roster-info .sub .rdot{ width:6px; height:6px; border-radius:50%; background:var(--green); display:inline-block; margin-right:6px; vertical-align:middle; box-shadow:0 0 0 3px rgba(76,175,80,.12); }
.roster-more{ display:flex; align-items:center; gap:9px; padding:14px 8px 2px; font-family:var(--fmono); font-size:11px; letter-spacing:.03em; color:var(--text-faint); }
.roster-more .rm-count{ padding:3px 10px; border-radius:20px; background:rgba(255,200,47,.12); border:1px solid rgba(255,200,47,.28); color:var(--amber); font-weight:700; }
.roster-grid{ display:grid; grid-template-columns:minmax(0,1.35fr) minmax(0,1fr); gap:20px; align-items:start; }
@media (max-width:900px){ .roster-grid{ grid-template-columns:minmax(0,1fr); } }

/* Drops page featured spotlight */
.drop-spotlight{ display:grid; grid-template-columns:1.05fr 1fr; align-items:stretch; border:1px solid rgba(255,200,47,.42); border-radius:var(--radius-lg); overflow:hidden; background:linear-gradient(180deg,var(--bg-800),var(--bg-850)); margin-bottom:22px; box-shadow:0 20px 50px -30px rgba(255,200,47,.4); }
.drop-spotlight-media{ position:relative; min-height:300px; background-size:cover; background-position:center; display:block; }
.drop-spotlight-media .badge-row{ position:absolute; top:14px; left:14px; }
.drop-spotlight-body{ padding:26px 28px; display:flex; flex-direction:column; justify-content:center; gap:12px; min-width:0; }
@media (max-width:760px){ .drop-spotlight{ grid-template-columns:1fr; } .drop-spotlight-media{ min-height:190px; } }

/* ---------- Saved / selectable payment cards ---------- */
.pay-list { display: flex; flex-direction: column; gap: 10px; }
.pay-card, .saved-card { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 11px; background: rgba(0,0,0,.25); }
.pay-card { cursor: pointer; transition: border-color .15s, background .15s; }
.pay-card:hover { border-color: rgba(255,255,255,.2); }
.pay-card input[type=radio] { accent-color: var(--amber); width: 16px; height: 16px; flex: none; margin: 0; }
.pay-card:has(input:checked) { border-color: var(--amber); background: rgba(255,200,47,.07); }
.pc-ic { font-size: 20px; flex: none; }
.pc-info { display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
.pc-info b { color: var(--text-hi); font-size: 14px; }
.pc-info small { color: var(--text-dim); font-size: 11.5px; }
.pay-card .pc-check { margin-left: auto; color: var(--amber); opacity: 0; font-weight: 800; }
.pay-card:has(input:checked) .pc-check { opacity: 1; }
.pay-card.add { justify-content: center; color: var(--amber); border-style: dashed; font-family: var(--fcond); font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: .03em; text-decoration: none; }
.pay-card.add:hover { background: rgba(255,200,47,.06); }
.saved-card.is-default { border-color: rgba(74,222,128,.4); background: rgba(74,222,128,.05); }
[data-card-actions] { margin-left: auto; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }

/* ===================== Community: Slack channels meet Facebook group ===================== */
.comm-shell { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 20px; align-items: start; }
/* left channel rail */
.chan-rail { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.chan-search { display: flex; align-items: center; gap: 8px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 9px; background: rgba(0,0,0,.28); color: var(--text-faint); }
.chan-search input { flex: 1; min-width: 0; background: none; border: 0; color: var(--text-hi); font-family: var(--ff); font-size: 13px; outline: none; }
.chan-list { display: flex; flex-direction: column; gap: 2px; border-bottom: 0; margin: 0; overflow: visible; }
.chan-list::-webkit-scrollbar { display: none; }
.chan-sec-label { font-family: var(--fmono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); padding: 10px 8px 5px; }
.chan-item { display: flex; align-items: center; gap: 8px; width: 100%; text-align: left; justify-content: flex-start; padding: 8px 11px; border-radius: 8px; border-bottom: 0; white-space: nowrap; font-family: var(--ff); font-size: 13.5px; letter-spacing: 0; text-transform: none; color: var(--text-dim); transition: background .14s, color .14s; cursor: pointer; }
.chan-item:hover { background: rgba(255,255,255,.04); color: var(--text-hi); }
.chan-item.active { background: rgba(255,200,47,.12); color: var(--text-hi); box-shadow: inset 2px 0 0 var(--amber); }
.chan-item .ci-hash { color: var(--text-faint); font-weight: 700; }
.chan-item.active .ci-hash { color: var(--amber); }
.chan-item .ci-name { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.chan-item .ci-badge { margin-left: auto; font-family: var(--fmono); font-size: 10px; font-weight: 700; background: var(--amber); color: #1a0f02; border-radius: 99px; padding: 1px 7px; line-height: 1.5; }
.chan-item.active .ci-badge { background: rgba(255,200,47,.25); color: var(--amber); }
/* center channel header */
.chan-main { min-width: 0; }
.chan-header { border: 1px solid var(--line); border-radius: 14px; padding: 15px 18px; margin-bottom: 16px; background: linear-gradient(180deg, var(--bg-800), var(--bg-850)); }
.chh-title { font-family: var(--fcond); font-weight: 800; font-size: 19px; color: var(--text-hi); display: flex; align-items: center; gap: 9px; text-transform: uppercase; letter-spacing: .01em; }
.chh-desc { color: var(--text-dim); font-size: 13px; margin-top: 4px; }
.chh-meta { font-family: var(--fmono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-faint); margin-top: 9px; }
/* gear-room cards as in-place buttons (open inline, no navigation) */
button.room-card { width: 100%; text-align: left; font: inherit; cursor: pointer; -webkit-appearance: none; appearance: none; }
[data-room-view] { min-width: 0; }

/* ===================== Guidance / "dumb-proofing" toolkit ===================== */
/* 3-step "how claiming works" stepper */
.claimflow { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin: 0 0 18px; }
.cf-step { display: flex; gap: 10px; align-items: flex-start; padding: 12px 13px; border: 1px solid var(--line); border-radius: 12px; background: rgba(0,0,0,.22); position: relative; }
.cf-step.done { border-color: rgba(74,222,128,.4); background: rgba(74,222,128,.05); }
.cf-step.active { border-color: var(--amber); background: rgba(255,200,47,.07); box-shadow: 0 0 0 3px rgba(255,200,47,.08); }
.cf-num { flex: none; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-family: var(--fmono); font-size: 12px; font-weight: 700; background: var(--bg-700); border: 1px solid var(--line); color: var(--text-faint); }
.cf-step.done .cf-num { background: var(--green); border-color: var(--green); color: #06210f; }
.cf-step.active .cf-num { border-color: var(--amber); color: var(--amber); }
.cf-t { font-weight: 700; color: var(--text-hi); font-size: 13px; line-height: 1.25; }
.cf-d { font-size: 11.5px; color: var(--text-dim); margin-top: 2px; line-height: 1.35; }
@media (max-width: 560px) { .claimflow { grid-template-columns: 1fr; } }

/* personalized status banner: "you're ready" / "you're not ready yet, here's why" */
.status-banner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 13px 15px; border-radius: 12px; border: 1px solid var(--line); margin-bottom: 16px; font-size: 13.5px; }
.status-banner .sb-ico { font-size: 18px; flex: none; }
.status-banner .sb-txt { flex: 1; min-width: 160px; color: var(--text-dim); }
.status-banner .sb-txt b { color: var(--text-hi); }
.status-banner .btn { flex: none; }
.status-banner.ok { border-color: rgba(74,222,128,.45); background: rgba(74,222,128,.07); }
.status-banner.warn { border-color: rgba(255,200,47,.5); background: rgba(255,200,47,.07); }

/* plain-language inline hint: term with a tap/hover explanation (dumb-proof, keyboard reachable) */
.hint { position: relative; border-bottom: 1px dotted var(--text-faint); cursor: help; color: inherit; }
.hint::after { content: "ⓘ"; font-size: .78em; color: var(--amber); margin-left: 2px; vertical-align: super; }
.hint > .hint-tip { display: none; position: absolute; left: 50%; bottom: 100%; margin-bottom: 8px; transform: translateX(-50%); width: max-content; max-width: min(240px, 70vw); background: var(--bg-700); border: 1px solid var(--line); border-radius: 10px; padding: 9px 12px; font-size: 12px; line-height: 1.45; color: var(--text-dim); text-transform: none; letter-spacing: 0; font-weight: 400; box-shadow: 0 14px 34px -18px #000; z-index: 40; white-space: normal; }
.hint:hover > .hint-tip, .hint:focus > .hint-tip, .hint:focus-within > .hint-tip { display: block; }
@media (max-width: 980px) {
  .comm-shell { grid-template-columns: 1fr; }
  .chan-rail { position: static; }
  .chan-search { display: none; }
  .chan-sec-label { display: none; }
  .chan-list { flex-direction: row; overflow-x: auto; gap: 6px; -ms-overflow-style: none; scrollbar-width: none; padding-bottom: 2px; }
  .chan-item { width: auto; flex: 0 0 auto; }
  .chan-item.active { box-shadow: inset 0 -2px 0 var(--amber); }
  .chan-item .ci-badge { display: none; }
}

/* ===== Icon reactions (posts + comments) + comment report ===== */
.react-chip .rc-ic { width: 15px; height: 15px; display: block; flex: none; }
.react-chip.on .rc-ic { color: var(--amber); }
.comment .cm-foot { display: flex; align-items: center; gap: 5px; margin-top: 10px; flex-wrap: wrap; }
.comment .cm-foot .react-chip { padding: 3px 8px; font-size: 11px; gap: 4px; }
.comment .cm-foot .react-chip .rc-ic { width: 13px; height: 13px; }
.comment .cm-foot .cm-foot-sp { flex: 1; min-width: 6px; }
.cm-report { display: inline-flex; align-items: center; gap: 5px; font-family: var(--fmono); font-size: 10px; letter-spacing: .05em; color: var(--text-faint); padding: 4px 8px; border-radius: 6px; border: 0; background: none; cursor: pointer; transition: .15s; }
.cm-report:hover { color: var(--ember); background: rgba(255,255,255,.03); }
.cm-report.reported { color: var(--ember); opacity: .85; cursor: default; }

/* ===== FFL dealer locator (transfer page) ===== */
.ffl-locator .ffl-search { display: flex; gap: 10px; align-items: center; margin-bottom: 16px; }
.ffl-search-ic { font-size: 16px; flex: none; }
.ffl-search input { flex: 1; min-width: 0; background: rgba(0,0,0,.35); border: 1px solid var(--line); border-radius: 99px; padding: 11px 16px; color: var(--text-hi); font-family: var(--ff); font-size: 14px; }
.ffl-search input:focus { outline: none; border-color: var(--amber); }
.ffl-loc-grid { display: grid; grid-template-columns: 260px minmax(0,1fr); gap: 16px; align-items: stretch; }
.ffl-map { border: 1px solid var(--line); border-radius: 12px; min-height: 210px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; color: var(--text-faint);
  background: radial-gradient(circle at 42% 38%, rgba(255,200,47,.12), transparent 58%), repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 1px, transparent 1px 26px), repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0 1px, transparent 1px 26px), #0c0c0d; }
.ffl-map-pin { font-size: 26px; }
.ffl-map-note { font-family: var(--fmono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.ffl-results { display: flex; flex-direction: column; gap: 10px; }
.ffl-dealer { display: flex; align-items: center; gap: 12px; justify-content: space-between; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; transition: .15s; }
.ffl-dealer:hover { border-color: rgba(255,200,47,.4); }
.ffl-dealer.is-selected { border-color: var(--amber); background: rgba(255,200,47,.06); }
.ffl-dealer .btn { flex: none; }
.ffl-d-main h4 { font-size: 14.5px; color: var(--text-hi); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ffl-d-main p { font-size: 12.5px; color: var(--text-dim); margin-top: 3px; }
.ffl-d-main .ffl-d-meta { font-family: var(--fmono); font-size: 11px; color: var(--text-faint); }
@media (max-width: 760px) { .ffl-loc-grid { grid-template-columns: 1fr; } .ffl-map { min-height: 140px; } }

/* ============================================================
   V3 — Webinar seat model additions (appended)
   ============================================================ */

/* --- brand + nav chrome --- */
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav .brand-logo-icon { height: 40px; width: auto; border-radius: 0; }
.nav .brand-logo-text { height: 18px; width: auto; }
.brand-txt { font-family: var(--fcond); font-weight: 800; letter-spacing: .04em; font-size: 19px; color: var(--text-hi); }
.brand-txt em { font-style: normal; color: var(--amber); }
.nav-mini { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 10px; color: var(--text-hi); transition: border-color .18s, color .18s; }
.nav-mini:hover { border-color: var(--amber); color: var(--amber); }
.ext-ico { font-size: 10px; opacity: .7; }
.claim-cta { white-space: nowrap; }
.nav-drawer { display: none; }
.nav-drawer.open { display: flex; flex-direction: column; gap: 0; padding: 8px 20px 18px; border-top: 1px solid var(--line); background: var(--bg-850); }
.nav-drawer > a { display: flex; align-items: center; gap: 13px; padding: 12px 2px; color: var(--text-hi); border-bottom: 1px solid var(--line-soft); font-size: 15px; }
.nav-drawer > a:last-of-type { border-bottom: 0; }
/* line-item icons: shown in the mobile drawer, hidden on the desktop top bar */
.nav-ico { display: none; }
.nav-drawer > a .nav-ico { display: inline-grid; place-items: center; width: 24px; flex: none; color: currentColor; }
/* auth + CTA grouped as full-width buttons, set apart from the nav links */
.nav-drawer-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.nav-drawer-cta .btn { width: 100%; margin-top: 0 !important; gap: 8px; }

/* --- age gate --- */
html.ag-locked, html.ag-locked body { overflow: hidden; }
.agegate { position: fixed; inset: 0; z-index: 4000; display: flex; overflow-y: auto; padding: 24px;
  background: radial-gradient(120% 120% at 50% 0%, rgba(20,17,8,.82), rgba(3,3,3,.97)); backdrop-filter: blur(8px); animation: agIn .3s var(--ease); }
.agegate.ag-out { opacity: 0; transition: opacity .3s; }
@keyframes agIn { from { opacity: 0; } to { opacity: 1; } }
.agegate-card { width: 100%; max-width: 600px; margin: auto; text-align: center; background: linear-gradient(180deg, var(--bg-800), var(--bg-850));
  border: 1px solid rgba(255,200,47,.28); border-radius: var(--radius-lg); padding: 38px 30px 30px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; align-items: center; }
/* approved-logo lockup: lion crest + MANCAVE wordmark + 409 tag */
.ag-logo-lockup { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 22px; }
.ag-crest { width: 101px; height: auto; display: block; }
.ag-wordmark { width: 230px; max-width: 62%; height: auto; display: block; }
.agegate-card h2 { font-size: 21px; line-height: 1.25; margin-bottom: 8px; }
.agegate-card > p { font-size: 14px; color: var(--text-dim); margin-bottom: 20px; }
.agegate-card form { width: 100%; }
.agegate-card label { display: block; text-align: center; font-family: var(--fmono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 7px; }
.agegate-card input { width: 100%; padding: 14px 16px; font-family: var(--fmono); font-size: 18px; letter-spacing: .12em; text-align: center;
  background: var(--bg-900); border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--text-hi); margin-bottom: 6px; }
.agegate-card input:focus { outline: none; border-color: var(--amber); }
.ag-err { min-height: 18px; color: var(--red); font-size: 12.5px; margin-bottom: 12px; text-align: center; }
.ag-fine { font-size: 11px; color: var(--text-faint); margin-top: 16px; line-height: 1.5; }
.ag-fine a { color: var(--amber); }

/* --- prototype view switcher (demo-only chrome) --- */
.view-switch { position: fixed; left: 50%; transform: translateX(-50%); bottom: 16px; z-index: 60;
  display: flex; align-items: center; gap: 3px; padding: 5px; border-radius: 999px;
  background: rgba(11,11,13,.94); border: 1px solid var(--line); box-shadow: 0 12px 34px -12px rgba(0,0,0,.85);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.view-switch .vs-lbl { font-family: var(--fmono); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-faint); padding: 0 8px 0 10px; }
.view-switch a { font-family: var(--fmono); font-size: 11px; letter-spacing: .04em; color: var(--text-dim); padding: 8px 15px; border-radius: 999px; text-decoration: none; white-space: nowrap; transition: color .15s, background .15s; }
.view-switch a:hover { color: var(--text-hi); background: rgba(255,255,255,.05); }
.view-switch a.on { color: #100b02; background: linear-gradient(180deg, var(--amber-soft), var(--amber)); font-weight: 600; }
@media (max-width: 560px) { .view-switch { bottom: 10px; } .view-switch .vs-lbl { display: none; } .view-switch a { padding: 8px 12px; } }

/* --- seat progress meter (cards + featured) --- */
.wb-meter { margin-top: 2px; }
.wb-meter-bar { height: 7px; border-radius: 6px; background: var(--bg-700); overflow: hidden; border: 1px solid var(--line-soft); }
.wb-meter-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--amber-deep), var(--amber)); border-radius: 6px; }
.wb-meter-lbl { display: flex; justify-content: space-between; font-family: var(--fmono); font-size: 10.5px; letter-spacing: .04em; color: var(--text-faint); margin-top: 6px; }

.live-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--ember); margin-right: 5px; box-shadow: 0 0 0 0 rgba(255,90,44,.6); animation: livepulse 1.4s infinite; vertical-align: middle; }
@keyframes livepulse { 0% { box-shadow: 0 0 0 0 rgba(255,90,44,.55);} 70% { box-shadow: 0 0 0 7px rgba(255,90,44,0);} 100% { box-shadow: 0 0 0 0 rgba(255,90,44,0);} }

/* --- featured webinar (home) --- */
.feat { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-800); }
.feat-media { position: relative; min-height: 408px; background-size: cover; background-position: center; }
.chip.chip-solid { background: var(--amber); color: #100b02; border-color: var(--amber); font-weight: 700; }
.chip .fstar { font-size: 15px; line-height: 1; display: inline-flex; align-items: center; }
/* chips on the featured cover flow inside .badge-row (which is the positioned layer) */
.feat-media .badge-row .chip { position: static; }
.feat-body { padding: 30px clamp(22px,3vw,38px); display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.feat-body h3 { font-size: clamp(24px,3vw,32px); }
.feat-body > p { font-size: 14.5px; color: var(--text-dim); }
.feat-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 6px; flex-wrap: wrap; }
.feat-price .lbl { font-family: var(--fmono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-faint); }
.feat-price .big { font-family: var(--fcond); font-size: 34px; color: var(--amber); line-height: 1; }

/* --- webinar cards --- */
.webinar-card { text-decoration: none; }
.webinar-card .card-media { min-height: 190px; background-size: cover; background-position: center; }

/* --- subpage hero tile (on-brand with the homepage hero) --- */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  border: 1px solid rgba(255,200,47,.55); border-radius: 26px;
  padding: clamp(34px, 6vw, 72px) clamp(26px, 4vw, 56px);
  background: radial-gradient(120% 140% at 50% 0%, rgba(255,200,47,.05), transparent 55%), #08080a;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,.9), inset 0 0 0 1px rgba(255,200,47,.06);
}
.page-hero > .fx-techlines { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.page-hero .fx-techlines canvas { display: block; width: 100%; height: 100%; }
.page-hero-fade { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(110% 130% at 50% 50%, rgba(0,0,0,.72) 0%, rgba(0,0,0,.4) 65%, rgba(0,0,0,.2) 100%); }
.page-hero-inner { position: relative; z-index: 2; text-align: center; }
.page-hero-inner h1 { font-size: clamp(30px, 4.6vw, 48px); line-height: 1.08; }
.page-hero-inner p { font-size: 15.5px; color: var(--text-dim); max-width: 680px; margin: 14px auto 0; }
@media (max-width: 560px) { .page-hero { border-radius: 18px; } }

/* --- section scaffolding for interior pages --- */
.page-head { padding: 46px 0 8px; }
.page-head .eyebrow { margin-bottom: 12px; }
.page-head h1 { font-size: clamp(28px,4vw,44px); line-height: 1.08; }
.page-head p { font-size: 15px; color: var(--text-dim); max-width: 640px; margin-top: 12px; }
.sec { padding: 22px 0 0; }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 30px; }
.sec-head .eyebrow { justify-content: center; }
.sec-head p { color: var(--text-dim); font-size: 15px; margin-top: 10px; }

/* --- process note under steps --- */
.proc-note { text-align: center; margin-top: 26px; font-size: 13px; color: var(--text-faint); }
.proc-note b { color: var(--amber); font-weight: 600; }

/* --- "How to join" video block --- */
.join-video { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(0,1fr); gap: 30px; align-items: center; }
.join-frame { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--bg-700) center/cover; }
.join-frame .wv-play { position: absolute; inset: 0; margin: auto; }
.join-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.join-list li { display: flex; gap: 12px; align-items: center; font-size: 14.5px; color: var(--text-dim); }
.join-list b { color: var(--amber); }
/* number badges match the process step tiles (.step .num) */
.join-list .jl-ico { flex: none; font-family: var(--fcond); font-size: 13px; color: var(--amber);
  border: 1px solid rgba(255,200,47,.4); border-radius: 7px; width: 38px; height: 38px;
  display: grid; place-items: center; background: rgba(255,200,47,.06); }

/* --- play button + video states (detail + join) --- */
.wv-play { width: 62px; height: 62px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #100b02;
  background: linear-gradient(180deg, var(--amber-soft), var(--amber)); box-shadow: 0 10px 30px -8px rgba(255,200,47,.7); }

/* --- webinar detail --- */
.wdetail { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(0,1fr); gap: 30px; align-items: start; }
.wv-video { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.wv-player { position: relative; aspect-ratio: 16/9; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.wv-player::after { content: ""; position: absolute; inset: 0; background: rgba(3,3,3,.35); }
.wv-player .wv-play, .wv-player .wv-badge { position: relative; z-index: 2; }
.wv-badge { position: absolute; top: 12px; left: 12px; font-family: var(--fmono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,.5); padding: 5px 10px; border-radius: 20px; }
.wv-note { font-size: 12.5px; color: var(--green); padding: 12px 14px; }
.wv-lock { position: relative; width: 100%; min-height: 300px; background-size: cover; background-position: center; }
.wv-lock::after { content: ""; position: absolute; inset: 0; background: rgba(4,4,5,.82); backdrop-filter: blur(3px); }
.wv-lock-inner { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px; gap: 8px; }
.wv-lock-ico { font-size: 34px; }
.wv-lock-inner h4 { font-size: 19px; }
.wv-lock-inner p { font-size: 13.5px; color: var(--text-dim); max-width: 380px; }
.wv-lock-inner .btn { margin-top: 8px; }

.wmeta { display: flex; gap: 22px; flex-wrap: wrap; margin: 14px 0 4px; }
.wmeta .wm { }
.wmeta .wm .lbl { font-family: var(--fmono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); }
.wmeta .wm .val { font-family: var(--fcond); font-size: 22px; color: var(--text-hi); }
.wmeta .wm .val.amber { color: var(--amber); }

/* --- roster (usernames only) --- */
.roster { display: flex; flex-wrap: wrap; gap: 8px; }
.roster-user { font-family: var(--fmono); font-size: 12px; color: var(--text-dim); background: var(--bg-700); border: 1px solid var(--line-soft); padding: 6px 11px; border-radius: 20px; }
.roster-user.winner { color: #100b02; background: linear-gradient(180deg, var(--amber-soft), var(--amber)); border-color: var(--amber); font-weight: 600; }
.roster-user.winner b { font-weight: 700; }
.roster-more { font-family: var(--fmono); font-size: 12px; color: var(--text-faint); padding: 6px 4px; align-self: center; }

/* --- winner banner --- */
.winner-banner { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: var(--radius); border: 1px solid rgba(255,200,47,.4); background: rgba(255,200,47,.07); margin-bottom: 22px; }
.winner-banner .wb-ico { font-size: 26px; }
.winner-banner b { color: var(--amber); }

/* --- testimonials --- */
.tcard { background: var(--bg-800); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.tstars { color: var(--amber); letter-spacing: 2px; font-size: 15px; }
.tcard p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }
.tcard .tname { font-family: var(--fmono); font-size: 12px; letter-spacing: .06em; color: var(--text-hi); }
.trust-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 26px; flex-wrap: wrap; text-align: center; }
.trust-row .tstars { font-size: 20px; }
.trust-row .trust-n { font-family: var(--fcond); font-size: 20px; color: var(--text-hi); }

/* --- reviews slider --- */
.reviews-slider { position: relative; padding: 0 56px; }
.rev-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 4px 0; scrollbar-width: none; -ms-overflow-style: none; }
.rev-track::-webkit-scrollbar { display: none; }
.rev-track .tcard { flex: 0 0 calc((100% - 44px) / 3); scroll-snap-align: start; }
.rev-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; cursor: pointer;
  font-size: 24px; line-height: 1; color: #100b02; border: none;
  background: linear-gradient(180deg, var(--amber-soft), var(--amber));
  box-shadow: 0 8px 22px -8px rgba(0,0,0,.7); transition: transform .15s; }
.rev-nav:hover { transform: translateY(-50%) scale(1.08); }
.rev-prev { left: 4px; } .rev-next { right: 4px; }
.rev-note { text-align: center; font-size: 12px; color: var(--text-faint); margin-top: 16px; }
@media (max-width: 900px) { .reviews-slider { padding: 0 46px; } .rev-track .tcard { flex-basis: calc((100% - 22px) / 2); } .rev-prev { left: 2px; } .rev-next { right: 2px; } }
@media (max-width: 600px) {
  /* swipe-only on phones: hide arrows, let cards peek so it reads as scrollable */
  .rev-nav { display: none; }
  .reviews-slider { padding: 0; }
  .rev-track { gap: 14px; padding-bottom: 2px; }
  .rev-track .tcard { flex-basis: 87%; }
}

/* --- contact --- */
.contact-grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(0,1fr); gap: 30px; align-items: start; }
.contact-info .ci-row { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.contact-info .ci-ico { color: var(--amber); font-size: 18px; }
.contact-info h4 { font-size: 14px; margin-bottom: 2px; }
.contact-info p, .contact-info a { font-size: 13.5px; color: var(--text-dim); }
.contact-map { margin-top: 16px; aspect-ratio: 16/10; border-radius: var(--radius); border: 1px solid var(--line);
  background: repeating-linear-gradient(45deg, var(--bg-700), var(--bg-700) 12px, var(--bg-800) 12px, var(--bg-800) 24px);
  display: flex; align-items: center; justify-content: center; color: var(--text-faint); font-family: var(--fmono); font-size: 12px; }

/* --- simple auth / account cards --- */
.auth-wrap { max-width: 440px; margin: 40px auto; }
.auth-card { background: var(--bg-800); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; }
.auth-card h1 { font-size: 24px; margin-bottom: 6px; }
.auth-card .auth-sub { font-size: 13.5px; color: var(--text-dim); margin-bottom: 22px; }
.auth-alt { text-align: center; font-size: 13px; color: var(--text-faint); margin-top: 16px; }
.auth-alt a { color: var(--amber); }

/* --- signup page: full-page tech animation bg + centered logo/title + tightened form --- */
.auth-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.auth-bg canvas { display: block; width: 100%; height: 100%; }
.auth-section { position: relative; z-index: 1; padding-top: 10px; }
header.nav { position: relative; z-index: 2; }
.auth-wrap { max-width: 468px; margin: 16px auto; }
.auth-card-tight { padding: 24px 26px 22px; text-align: center; }
.auth-logo { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 12px; }
.auth-crest { height: 56px; width: auto; }
.auth-wordmark { height: 20px; width: auto; }
.auth-card-tight h1 { font-size: 26px; margin-bottom: 4px; }
.auth-card-tight .auth-sub { margin-bottom: 14px; }
.auth-card-tight form { text-align: left; }
.auth-card-tight .fld { margin-bottom: 9px; }
.auth-card-tight .fld label { margin-bottom: 4px; }
.auth-card-tight .fld input { padding: 9px 12px; }
.auth-card-tight .fld-hint { color: var(--text-faint); text-transform: none; letter-spacing: 0; }
.auth-card-tight .check-agree { font-size: 11.5px; margin-top: 8px; align-items: flex-start; }
.auth-card-tight .auth-alt { margin-top: 12px; }
.auth-tabs { display: flex; gap: 4px; background: var(--bg-900); border: 1px solid var(--line); border-radius: 999px; padding: 4px; margin-bottom: 16px; }
.auth-tabs button { flex: 1; padding: 9px 12px; border: none; background: transparent; color: var(--text-dim); font-family: var(--fmono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; border-radius: 999px; cursor: pointer; transition: color .15s, background .15s; }
.auth-tabs button.on { background: linear-gradient(180deg, var(--amber-soft), var(--amber)); color: #100b02; font-weight: 700; }
.auth-err { display: none; color: var(--red); font-size: 13px; margin-top: 10px; }
[data-auth-panel] form { text-align: left; }

/* footer "made with ♥ by EE" */
.footer-ee { display: inline-flex; align-items: center; gap: 5px; color: var(--text-faint); text-transform: uppercase !important; font-weight: 700; letter-spacing: .04em; }
.footer-ee:hover { color: var(--amber); }
.footer-ee .ic { color: var(--amber); }

/* --- footer --- */
.footer { border-top: 1px solid var(--line); margin-top: 60px; padding: 46px 0 26px; background: var(--bg-850); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 34px; }
.footer-brand .brand { margin-bottom: 12px; }
.footer-blurb { font-size: 13px; color: var(--text-dim); line-height: 1.6; max-width: 340px; margin-bottom: 14px; }
.footer-col h4 { font-family: var(--fmono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 14px; }
.footer-col a, .footer-contact p, .footer-contact a { display: block; font-size: 13.5px; color: var(--text-dim); margin-bottom: 9px; }
.footer-col a:hover, .footer-contact a:hover { color: var(--amber); }
.footer-hours { font-size: 12px !important; color: var(--text-faint) !important; }
.age-gate { display: inline-block; font-size: 12px; color: var(--text-hi); border: 1px solid var(--line); border-radius: 20px; padding: 5px 12px; }
.footer-legal { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line-soft); font-size: 11.5px; color: var(--text-faint); }

/* --- responsive --- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-block; }
  .claim-cta { display: none; }
  .feat, .wdetail, .join-video, .contact-grid { grid-template-columns: minmax(0,1fr); }
  .feat-media { min-height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: minmax(0,1fr); }
  /* footer: brand full-width, Explore + Support as a tidy 2-up, contact full-width */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-legal { flex-direction: column; align-items: flex-start; gap: 10px; text-align: left; }
  .btn { white-space: normal; }
  .wv-lock-inner { padding: 20px 16px; }
}

/* Yellow eyebrow labels removed site-wide per brand direction */
.eyebrow { display: none !important; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-lead { max-width: 760px; }
.about-lead p { font-size: 15.5px; color: var(--text-dim); line-height: 1.75; margin-top: 14px; }
.about-lead p b { color: var(--text-hi); }

.about-split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 30px; align-items: stretch; }
.about-split .about-media {
  border-radius: 16px; border: 1px solid var(--line); overflow: hidden;
  background-size: cover; background-position: center; min-height: 320px;
  position: relative;
}
.about-split .about-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,10,11,.55), rgba(10,10,11,0) 60%);
}
@media (max-width: 820px) { .about-split { grid-template-columns: 1fr; } .about-split .about-media { min-height: 220px; order: -1; } }

.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
@media (max-width: 820px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--bg-800); border: 1px solid var(--line); border-radius: 16px;
  padding: 26px 22px; text-align: center; transition: border-color .2s, transform .2s;
}
.team-card:hover { border-color: rgba(255,200,47,.45); transform: translateY(-4px); }
.team-avatar {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--amber-deep), var(--amber));
  color: #100b02; font-family: var(--fcond); font-weight: 800; font-size: 26px;
  letter-spacing: .04em; box-shadow: 0 8px 24px rgba(255,200,47,.18);
}
.team-card h3 { font-size: 18px; color: var(--text-hi); }
.team-card .team-role {
  font-family: var(--fmono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--amber); margin: 6px 0 12px;
}
.team-card p { font-size: 13.5px; color: var(--text-dim); line-height: 1.7; }

.value-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
@media (max-width: 720px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--bg-800); border: 1px solid var(--line); border-radius: 16px; padding: 24px 22px;
  display: flex; gap: 16px; align-items: flex-start;
}
.value-card .v-ico {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; color: var(--amber);
  background: rgba(255,200,47,.08); border: 1px solid rgba(255,200,47,.2);
}
.value-card h3 { font-size: 16.5px; color: var(--text-hi); margin-bottom: 6px; }
.value-card p { font-size: 13.5px; color: var(--text-dim); line-height: 1.68; }

/* ============================================================
   INTERACTIVE WALKTHROUGH (auto-playing desktop mockup)
   ============================================================ */
/* section wrapped like the heros — amber stroke, rounded, fx-techlines */
.walk-tile, .section-tile {
  position: relative; isolation: isolate; overflow: hidden;
  border: 1px solid rgba(255,200,47,.55); border-radius: 26px;
  padding: clamp(22px, 3vw, 44px);
  background: radial-gradient(120% 140% at 50% 0%, rgba(255,200,47,.05), transparent 55%), #08080a;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,.9), inset 0 0 0 1px rgba(255,200,47,.06);
}
@media (max-width: 560px) { .walk-tile, .section-tile { border-radius: 18px; } }
.walk-tile > .fx-techlines { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.walk-tile .fx-techlines canvas { display: block; width: 100%; height: 100%; }
.walk-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(26px,3.2vw,44px); align-items: center; }

.walk-copy { align-self: center; }
.walk-copy h2 { margin-bottom: 4px; }
.walk-copy > p { color: var(--text-dim); font-size: 15px; line-height: 1.7; margin-top: 14px; }
.walk-list { list-style: none; margin: 22px 0 0; display: flex; flex-direction: column; gap: 13px; }
.walk-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; line-height: 1.5; color: var(--text); }
.walk-list li svg { color: var(--amber); flex: none; margin-top: 1px; }
.walk-list li b { color: var(--text-hi); }
.walk-copy .walk-cta { margin-top: 26px; }
.walk-copy .walk-note { text-align: left; margin-top: 18px; }

.mock { position: relative; border-radius: 14px; overflow: hidden; border: 1px solid #33302a;
  background: #0d0d0f; box-shadow: 0 40px 90px -38px rgba(0,0,0,.9), 0 0 0 1px rgba(255,200,47,.08); }
.mock-bar { display: flex; align-items: center; gap: 14px; height: 46px; padding: 0 16px;
  background: linear-gradient(180deg,#1a1916,#141311); border-bottom: 1px solid #2a2722; }
.mock-dots { display: flex; gap: 8px; }
.mock-dots i { width: 12px; height: 12px; border-radius: 50%; display: block; }
.mock-dots i:nth-child(1){ background:#ff5f57; } .mock-dots i:nth-child(2){ background:#febc2e; } .mock-dots i:nth-child(3){ background:#28c840; }
.mock-url { flex: 1; max-width: 420px; margin: 0 auto; height: 26px; display: flex; align-items: center; gap: 8px;
  padding: 0 14px; border-radius: 999px; background: #0b0b0c; border: 1px solid #2a2722;
  font-family: var(--fmono); font-size: 11.5px; color: #8f8a80; letter-spacing: .02em; }
.mock-url svg { color: var(--amber); flex: none; }
.mock-tools { display: flex; gap: 14px; color: #5f5b52; }

.mock-screen { position: relative; overflow: hidden; min-height: 452px;
  background: radial-gradient(120% 90% at 84% 12%, rgba(255,200,47,.10), transparent 55%), linear-gradient(165deg,#0c0c0e,#0a0a0b 60%,#08080a); }
.mock-screen .fx-techlines { position: absolute; inset: 0; opacity: .5; }
.app { position: relative; z-index: 2; display: grid; grid-template-columns: 196px minmax(0,1fr); min-height: 452px; }

.rail { padding: 20px 15px; border-right: 1px solid rgba(255,200,47,.12); overflow: hidden;
  background: linear-gradient(180deg, rgba(16,16,18,.7), rgba(10,10,11,.4)); backdrop-filter: blur(4px); }
.rail-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.rail-brand img { height: 20px; width: auto; max-width: 100%; object-fit: contain; }
.rail-brand .live-dot { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; font-family: var(--fmono);
  font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: #ff5a3c; flex: none; }
.rail-brand .live-dot i { width: 6px; height: 6px; border-radius: 50%; background: #ff5a3c; box-shadow: 0 0 9px #ff5a3c; animation: pulseDot 1.4s infinite; }
@keyframes pulseDot { 0%,100%{opacity:1} 50%{opacity:.35} }
.rail h3 { font-family: var(--fmono); font-size: 9px; letter-spacing: .18em; color: var(--text-dim); margin: 16px 0 14px; text-transform: uppercase; }

.rstep { position: relative; display: grid; grid-template-columns: 30px 1fr; gap: 11px; padding: 9px 0; cursor: pointer; opacity: .5; transition: opacity .35s var(--ease); }
.rstep.on { opacity: 1; }
.rstep .rnum { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center;
  font-family: var(--fcond); font-weight: 800; font-size: 14px; color: var(--text-dim);
  background: rgba(255,255,255,.04); border: 1px solid var(--line); transition: all .35s var(--ease); }
.rstep.on .rnum { background: linear-gradient(135deg,var(--amber-deep),var(--amber)); color: #100b02; border-color: transparent; box-shadow: 0 6px 16px rgba(255,200,47,.28); }
.rstep.done .rnum { color: var(--amber); border-color: rgba(255,200,47,.45); }
.rstep h4 { font-size: 12.5px; color: var(--text-hi); line-height: 1.2; margin-top: 6px; }
.rstep .rdesc { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .4s var(--ease), opacity .3s, margin .4s; }
.rstep.on .rdesc { max-height: 80px; opacity: 1; margin-top: 5px; }
.rstep .rdesc p { font-size: 11px; color: var(--text-dim); line-height: 1.5; }
.rprog { height: 2px; border-radius: 2px; background: rgba(255,255,255,.07); margin-top: 8px; overflow: hidden; }
.rprog i { display: block; height: 100%; width: 0; background: linear-gradient(90deg,var(--amber-deep),var(--amber)); }
.rstep.on .rprog i.run { animation: railFill var(--dur,3600ms) linear forwards; }
@keyframes railFill { from{width:0} to{width:100%} }

.rail-foot { display: flex; gap: 12px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); }
.rail-foot > div { min-width: 0; }
.rail-foot .sv { font-family: var(--fcond); font-size: 17px; color: var(--amber); line-height: 1; }
.rail-foot .sl { font-family: var(--fmono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); margin-top: 5px; }

.stage { position: relative; padding: 22px; display: grid; min-width: 0; }
.scene { grid-area: 1/1; min-width: 0; opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease); display: flex; flex-direction: column; }
.scene.on { opacity: 1; transform: none; pointer-events: auto; }
.scene-tag { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; margin-bottom: 13px;
  padding: 5px 12px; border-radius: 999px; background: rgba(255,200,47,.1); border: 1px solid rgba(255,200,47,.3);
  font-family: var(--fmono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); }
/* progress bar beside the Step pill (visible on mobile, where the rail steps are hidden) */
.scene-tag-row { display: flex; align-items: center; gap: 12px; margin-bottom: 13px; }
.scene-tag-row .scene-tag { margin-bottom: 0; flex: none; }
.scene-prog { flex: 1; height: 3px; border-radius: 3px; background: rgba(255,255,255,.09); overflow: hidden; display: none; }
.scene-prog i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--amber-deep), var(--amber)); }
.scene-prog i.run { animation: railFill var(--dur, 3600ms) linear forwards; }
.scene-title { font-family: var(--fcond); font-weight: 800; font-size: 21px; color: var(--text-hi); text-transform: uppercase; letter-spacing: .01em; line-height: 1.05; }
.scene-sub { color: var(--text-dim); font-size: 12.5px; line-height: 1.55; margin: 7px 0 16px; max-width: 460px; }
.scene-panel { flex: 1; border-radius: 14px; border: 1px solid var(--line); background: rgba(9,9,11,.6);
  overflow: hidden; position: relative; min-height: 232px; min-width: 0; }

/* scene 1 — browse list (condensed rows echoing the real .webinar-card) */
.wb-list { display: flex; flex-direction: column; gap: 10px; padding: 13px; }
.wb-row { display: flex; align-items: center; gap: 12px; padding: 9px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--bg-800); min-width: 0; opacity: 0; transform: translateY(10px); animation: pop .5s var(--ease) forwards; }
.scene.on .wb-row:nth-child(1){ animation-delay:.08s } .scene.on .wb-row:nth-child(2){ animation-delay:.2s } .scene.on .wb-row:nth-child(3){ animation-delay:.32s }
@keyframes pop { to{opacity:1; transform:none} }
.wb-thumb { position: relative; flex: none; width: 82px; height: 58px; border-radius: 9px; overflow: hidden; background-size: cover; background-position: center; }
.wb-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,10,.1), rgba(8,8,10,.5)); }
.wb-thumb .wb-chip { position: absolute; z-index: 2; top: 5px; left: 5px; font-family: var(--fmono); font-size: 7px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 2px 6px; border-radius: 999px; background: rgba(10,10,11,.7); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.wb-thumb .wb-chip.live { background: #ff2e2e; border-color: transparent; display: inline-flex; align-items: center; gap: 4px; }
.wb-thumb .wb-chip.live i { width: 4px; height: 4px; border-radius: 50%; background: #fff; animation: pulseDot 1.2s infinite; }
.wb-thumb .wb-play { position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,200,47,.94); display: grid; place-items: center; color: #100b02; box-shadow: 0 0 0 0 rgba(255,200,47,.5); animation: ripple 2.6s infinite; }
.wb-thumb .wb-play svg { margin-left: 2px; }
.wb-info { flex: 1; min-width: 0; }
.wb-cat { font-family: var(--fmono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-dim); }
.wb-name { font-size: 12px; color: var(--text-hi); margin: 2px 0 8px; line-height: 1.25; }
.wb-price { flex: none; text-align: right; font-family: var(--fcond); font-weight: 800; font-size: 18px; color: var(--amber); line-height: 1; }
.wb-price small { display: block; font-family: var(--fmono); font-weight: 400; font-size: 7.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); margin-top: 3px; }
.mc-bar { height: 5px; border-radius: 4px; background: rgba(255,255,255,.08); overflow: hidden; }
.mc-bar i { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg,var(--amber-deep),var(--amber)); }
.mc-mlbl { display: flex; justify-content: space-between; font-family: var(--fmono); font-size: 8px; letter-spacing: .03em; color: var(--text-dim); margin-top: 6px; }

/* scene 2 — seat map */
.seat-wrap { padding: 16px; display: grid; grid-template-columns: minmax(0,1fr) 118px; gap: 14px; height: 100%; align-items: start; }
.seat-grid { display: grid; grid-template-columns: repeat(8,1fr); gap: 5px; align-content: start; min-width: 0; }
.seat { aspect-ratio: 1; border-radius: 3px; background: rgba(255,255,255,.05); border: 1px solid var(--line);
  display: grid; place-items: center; font-family: var(--fmono); font-size: 8.5px; line-height: 1; color: rgba(255,255,255,.34); }
.seat.taken { background: rgba(255,255,255,.14); border-color: transparent; color: rgba(255,255,255,.28); }
.seat.pick { background: linear-gradient(135deg,var(--amber-deep),var(--amber)); border-color: transparent; color: #100b02; font-weight: 700; box-shadow: 0 0 10px rgba(255,200,47,.5); animation: seatPop .4s var(--ease) both; }
@keyframes seatPop { from{transform:scale(.4);opacity:0} to{transform:none;opacity:1} }
.seat-side .ss-name { font-family: var(--fcond); font-size: 13px; color: var(--text-hi); line-height: 1.2; }
.seat-side .ss-price { font-family: var(--fcond); font-size: 22px; color: var(--amber); margin: 2px 0 12px; }
.seat-legend { display: flex; flex-direction: column; gap: 8px; font-size: 10px; color: var(--text-dim); }
.seat-legend span { display: inline-flex; align-items: center; gap: 7px; }
.seat-legend i { width: 11px; height: 11px; border-radius: 3px; flex: none; }
.lg-open { background: rgba(255,255,255,.05); border: 1px solid var(--line); }
.lg-taken { background: rgba(255,255,255,.14); }
.lg-pick { background: var(--amber); }
.seat-btn { margin-top: 14px; text-align: center; padding: 9px; border-radius: 9px; background: linear-gradient(135deg,var(--amber-deep),var(--amber)); color: #100b02; font-family: var(--fcond); font-weight: 800; font-size: 11.5px; text-transform: uppercase; letter-spacing: .02em; }

/* scene 3 — live player */
.player { height: 100%; min-height: 250px; background-size: cover; background-position: center; position: relative; display: grid; place-items: center; }
.player::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(8,8,10,.25),rgba(8,8,10,.75)); }
.player .pl-live { position: absolute; top: 14px; left: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; padding: 5px 11px; border-radius: 6px; background: #ff2e2e; color: #fff; font-family: var(--fcond); font-weight: 800; font-size: 11px; letter-spacing: .1em; }
.player .pl-tag { position: absolute; top: 14px; left: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; padding: 5px 11px; border-radius: 6px; background: rgba(255,200,47,.92); color: #100b02; font-family: var(--fcond); font-weight: 800; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.player .pl-live i { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: pulseDot 1.2s infinite; }
.player .pl-eyes { position: absolute; top: 15px; right: 14px; z-index: 2; font-family: var(--fmono); font-size: 11px; color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.player .pl-play { position: relative; z-index: 2; width: 66px; height: 66px; border-radius: 50%; background: rgba(255,200,47,.92); display: grid; place-items: center; box-shadow: 0 0 0 0 rgba(255,200,47,.5); animation: ripple 2.2s infinite; }
.player .pl-play svg { margin-left: 4px; color: #100b02; }
@keyframes ripple { 0%{box-shadow:0 0 0 0 rgba(255,200,47,.45)} 70%{box-shadow:0 0 0 26px rgba(255,200,47,0)} 100%{box-shadow:0 0 0 0 rgba(255,200,47,0)} }
.player .pl-bar { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; height: 4px; border-radius: 3px; background: rgba(255,255,255,.22); overflow: hidden; }
.player .pl-bar i { display: block; height: 100%; width: 38%; background: var(--amber); }

/* scene 4 — selection */
.roster { padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.rrow { display: flex; align-items: center; gap: 11px; padding: 9px 13px; border-radius: 9px; background: rgba(255,255,255,.03); border: 1px solid var(--line); font-family: var(--fmono); font-size: 12.5px; color: var(--text-dim); transition: all .4s var(--ease); }
.rrow .rav { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,.08); flex: none; }
.rrow.sel { background: linear-gradient(100deg, rgba(255,200,47,.18), rgba(255,200,47,.04)); border-color: rgba(255,200,47,.6); color: var(--text-hi); transform: scale(1.03); box-shadow: 0 10px 30px -8px rgba(255,200,47,.4); }
.rrow.sel .rav { background: linear-gradient(135deg,var(--amber-deep),var(--amber)); }
.rrow .sel-tag { margin-left: auto; font-family: var(--fcond); font-weight: 800; font-size: 10.5px; letter-spacing: .1em; color: #100b02; background: var(--amber); padding: 3px 9px; border-radius: 999px; opacity: 0; transition: opacity .4s .2s; }
.rrow.sel .sel-tag { opacity: 1; }

/* scene 5 — receive */
.receipt { padding: 26px; display: flex; flex-direction: column; align-items: center; text-align: center; height: 100%; justify-content: center; }
.receipt .rk { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg,var(--amber-deep),var(--amber)); display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(255,200,47,.5); animation: seatPop .5s var(--ease) both; }
.receipt h4 { font-family: var(--fcond); font-size: 20px; color: var(--text-hi); text-transform: uppercase; margin-top: 16px; }
.receipt p { font-size: 12.5px; color: var(--text-dim); margin-top: 4px; }
.ship-track { display: flex; align-items: center; gap: 0; margin-top: 24px; width: 100%; max-width: 360px; }
.ship-track .st-node { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.05); border: 1px solid var(--line); color: var(--text-dim); font-size: 12px; }
.ship-track .st-node.act { background: var(--amber); border-color: transparent; color: #100b02; }
.ship-track .st-line { flex: 1; height: 2px; background: rgba(255,255,255,.1); }
.ship-track .st-line.act { background: var(--amber); }
.ship-labels { display: flex; justify-content: space-between; width: 100%; max-width: 360px; margin-top: 9px; font-family: var(--fmono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); }

.walk-note { text-align: center; margin-top: 22px; font-size: 12.5px; color: var(--text-dim); }

/* section stacks: copy above the mockup */
@media (max-width: 900px) {
  .walk-grid { grid-template-columns: 1fr; gap: 26px; }
  .walk-copy { order: -1; }
  .walk-copy .walk-note { text-align: center; }
}
/* mockup internals stack on small screens */
@media (max-width: 600px) {
  .app { grid-template-columns: 1fr; }
  .rail { border-right: 0; border-bottom: 1px solid rgba(255,200,47,.12); text-align: center; }
  .rail-brand { justify-content: center; }
  .rail h3 { text-align: center; margin-bottom: 0; }
  /* the stage already shows the current step — hide the rail step list on mobile */
  [data-rail] { display: none; }
  .rail-foot { justify-content: center; margin-top: 14px; }
  /* progress bar sits beside the Step pill instead */
  .scene-prog { display: block; }
  .seat-wrap { grid-template-columns: 1fr; } .seat-grid { grid-template-columns: repeat(12,1fr); }
}

/* ============================================================
   SEAT CHART (webinar detail — claimed seats, usernames on hover)
   ============================================================ */
.seatchart { display: grid; grid-template-columns: repeat(auto-fill, minmax(30px, 1fr)); gap: 6px; margin-top: 4px; }
.wseat { position: relative; aspect-ratio: 1; border-radius: 5px; display: grid; place-items: center;
  font-family: var(--fmono); font-size: 9.5px; line-height: 1; }
.wseat.open { background: rgba(255,255,255,.04); border: 1px solid var(--line); color: rgba(255,255,255,.22); }
.wseat.taken { background: linear-gradient(135deg, var(--amber-deep), var(--amber)); color: #100b02; font-weight: 700; cursor: default; }
.wseat.taken:hover { filter: brightness(1.12); }
.wseat.win { background: radial-gradient(circle at 50% 38%, #fff3c4, var(--amber)); color: #100b02; font-weight: 700; cursor: default;
  box-shadow: 0 0 0 2px var(--amber), 0 0 14px rgba(255,200,47,.6); z-index: 2; }
/* hover tooltip — the seat holder's username */
.wseat[data-user]::after { content: attr(data-user); position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translate(-50%, 4px); white-space: nowrap; padding: 5px 9px; border-radius: 7px;
  background: #0a0a0b; border: 1px solid rgba(255,200,47,.45); color: var(--text-hi);
  font-family: var(--fmono); font-size: 10px; font-weight: 400; letter-spacing: .02em;
  opacity: 0; pointer-events: none; transition: opacity .15s, transform .15s; z-index: 10; box-shadow: 0 12px 26px -12px #000; }
.wseat[data-user]::before { content: ""; position: absolute; bottom: calc(100% + 3px); left: 50%; transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: rgba(255,200,47,.45); opacity: 0; transition: opacity .15s; pointer-events: none; z-index: 10; }
.wseat[data-user]:hover::after { opacity: 1; transform: translate(-50%, 0); }
.wseat[data-user]:hover::before { opacity: 1; }
.wseat[data-user]:hover { z-index: 11; }
/* admin announcement roulette: hop highlight + celebratory landed seat */
.wseat.hot { transform: scale(1.22); background: linear-gradient(135deg, #fff4cf, var(--amber)); color: #100b02; box-shadow: 0 0 0 2px #fff, 0 0 16px rgba(255,255,255,.6); z-index: 6; }
@keyframes winGlow { 0%,100% { box-shadow: 0 0 0 2px var(--amber), 0 0 10px rgba(255,200,47,.5); } 50% { box-shadow: 0 0 0 3px var(--amber), 0 0 24px rgba(255,200,47,.95); } }
.wseat.win { animation: seatPop .45s var(--ease) both, winGlow 1.3s ease-in-out .45s infinite; }
.seatchart-legend { display: flex; gap: 16px; margin-top: 14px; font-size: 11px; color: var(--text-dim); flex-wrap: wrap; }
.seatchart-legend span { display: inline-flex; align-items: center; gap: 7px; }
.sc-sw { width: 12px; height: 12px; border-radius: 3px; flex: none; }
.sc-sw.taken { background: linear-gradient(135deg, var(--amber-deep), var(--amber)); }
.sc-sw.open { background: rgba(255,255,255,.05); border: 1px solid var(--line); }
.sc-sw.sel { background: radial-gradient(circle, #fff3c4, var(--amber)); box-shadow: 0 0 0 1px var(--amber); }

/* ============================================================
   MEMBER ACCOUNT DASHBOARD
   ============================================================ */
.acct-hero > .fx-techlines { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.acct-hero .fx-techlines canvas { display: block; width: 100%; height: 100%; }
.acct-head { position: relative; z-index: 2; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.acct-avatar-wrap { position: relative; flex: none; }
.acct-avatar { width: 72px; height: 72px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--amber-deep), var(--amber)); color: #100b02; font-family: var(--fcond); font-weight: 800; font-size: 32px;
  box-shadow: 0 0 0 3px rgba(255,200,47,.18), 0 10px 26px -8px rgba(255,200,47,.35); }
.acct-verify { position: absolute; right: -5px; bottom: -5px; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green); color: #062012; border: 3px solid #0a0a0b; }
.acct-verify svg { display: block; }
.acct-id { min-width: 0; }
.acct-name-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.acct-id h1 { font-size: 27px; }
.acct-tier { display: inline-flex; align-items: center; gap: 6px; font-family: var(--fmono); font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #100b02; background: linear-gradient(135deg, var(--amber-deep), var(--amber)); padding: 5px 11px; border-radius: 999px; }
.acct-tier svg { display: block; }
.acct-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.acct-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--text-dim);
  background: rgba(255,255,255,.04); border: 1px solid var(--line); padding: 5px 11px; border-radius: 999px; }
.acct-badge svg { color: var(--amber); flex: none; }
.acct-badge.verified svg { color: var(--green); }

.acct-right { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.acct-stats { display: flex; gap: 22px; padding-left: 22px; border-left: 1px solid var(--line); }
.acct-stats > div { text-align: center; }
.acct-stats .si { display: block; color: var(--amber); margin-bottom: 6px; }
.acct-stats .si svg { display: block; margin: 0 auto; }
.acct-stats .sv { font-family: var(--fcond); font-size: 26px; color: var(--text-hi); line-height: 1; }
.acct-stats .sl { font-family: var(--fmono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin-top: 6px; }
.acct-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 760px) {
  .acct-right { margin-left: 0; width: 100%; align-items: stretch; }
  .acct-stats { padding-left: 0; border-left: 0; justify-content: space-between; width: 100%; }
  .acct-actions { justify-content: flex-start; }
}

/* section titles get a small leading icon */
.acct-sec-title { display: flex; align-items: center; gap: 9px; }
.acct-sec-title svg { color: var(--amber); flex: none; }

.acct-tabs { display: flex; width: 100%; justify-content: center; gap: 4px; padding: 5px; border-radius: 999px; background: var(--bg-800); border: 1px solid var(--line); margin-bottom: 26px; flex-wrap: wrap; }
.acct-tabs button { border: none; background: transparent; color: var(--text-dim); font-family: var(--fmono); font-size: 12px; letter-spacing: .04em; padding: 9px 18px; border-radius: 999px; cursor: pointer; transition: background .15s, color .15s; }
.acct-tabs button.on { background: linear-gradient(135deg, var(--amber-deep), var(--amber)); color: #100b02; font-weight: 700; }
.acct-tabs button:not(.on):hover { color: var(--text-hi); }

.acct-card { background: var(--bg-800); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.acct-sec-title { font-size: 13px; font-family: var(--fmono); letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); margin: 30px 0 14px; }
.acct-sec-title:first-child { margin-top: 4px; }

/* editable profile field rows */
.pf-row { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.pf-row:last-child { border-bottom: 0; }
.pf-row .pf-l { flex: none; width: 116px; font-family: var(--fmono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); }
.pf-row .pf-v { flex: 1; min-width: 0; color: var(--text-hi); font-size: 14px; }
.pf-row .pf-v.mono { font-family: var(--fmono); }
.pf-row input { flex: 1; min-width: 0; }
.pf-row .pf-actions { flex: none; display: flex; gap: 8px; }
@media (max-width: 520px) { .pf-row { flex-wrap: wrap; } .pf-row .pf-l { width: 100%; } }

/* toggle switch */
.switch { position: relative; width: 42px; height: 24px; flex: none; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; z-index: 2; }
.switch .track { position: absolute; inset: 0; border-radius: 999px; background: rgba(255,255,255,.14); transition: background .18s; }
.switch .track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: transform .18s; }
.switch input:checked + .track { background: linear-gradient(135deg, var(--amber-deep), var(--amber)); }
.switch input:checked + .track::after { transform: translateX(18px); }
.pref-row { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.pref-row:last-child { border-bottom: 0; }
.pref-row .pref-txt { flex: 1; }
.pref-row .pref-txt b { display: block; font-size: 13.5px; color: var(--text-hi); }
.pref-row .pref-txt span { font-size: 12px; color: var(--text-dim); }

/* payment method */
.pay-row { display: flex; align-items: center; gap: 14px; padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-900); }
.pay-brand { width: 46px; height: 30px; border-radius: 6px; flex: none; display: grid; place-items: center; color: #fff; font-family: var(--fcond); font-weight: 700; font-size: 11px; background: linear-gradient(135deg, #14315f, #2b57a7); }
.pay-info { flex: 1; min-width: 0; }
.pay-info b { display: block; font-size: 14px; color: var(--text-hi); }
.pay-info span { font-size: 12px; color: var(--text-dim); }
.pay-default { flex: none; font-family: var(--fmono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: #100b02; background: var(--amber); padding: 3px 8px; border-radius: 999px; }

/* order history table */
.acct-table { background: var(--bg-800); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.ot-row { display: grid; grid-template-columns: 2fr 1.1fr .9fr 1fr; gap: 12px; align-items: center; padding: 14px 18px; border-bottom: 1px solid var(--line-soft); font-size: 13.5px; }
.ot-row:last-child { border-bottom: 0; }
.ot-row .ot-item { color: var(--text-hi); }
.ot-row .ot-seats { font-family: var(--fmono); font-size: 12px; color: var(--text-dim); }
.ot-row .ot-amt { font-family: var(--fcond); color: var(--amber); }
.ot-row .ot-status { font-size: 12px; color: var(--green); text-align: right; }
.ot-head { background: var(--bg-900); font-family: var(--fmono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); }
.ot-head span:last-child { text-align: right; }
@media (max-width: 560px) {
  .ot-row { grid-template-columns: 1fr auto; }
  .ot-row .ot-seats { display: none; }
  .ot-head { display: none; }
}
/* "My Claimed Seats" list — one entry per webinar, seat numbers shown as chips */
.claim-list { display: flex; flex-direction: column; }
.claim-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.claim-row:first-child { padding-top: 4px; }
.claim-row:last-child { border-bottom: 0; padding-bottom: 0; }
.claim-row .cr-main { min-width: 0; }
.claim-row .cr-name { color: var(--text-hi); font-size: 14.5px; margin-bottom: 9px; }
.claim-row .cr-seats { display: flex; flex-wrap: wrap; gap: 6px; }
.claim-row .cr-seat { font-family: var(--fmono); font-size: 11px; letter-spacing: .02em; color: var(--amber); background: rgba(255,200,47,.1); border: 1px solid rgba(255,200,47,.28); padding: 3px 9px; border-radius: 20px; white-space: nowrap; }
.claim-row .cr-side { flex: none; text-align: right; }
.claim-row .cr-amt { font-family: var(--fcond); font-weight: 700; font-size: 18px; color: var(--amber); line-height: 1; }
.claim-row .cr-status { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--green); margin-top: 6px; }
.claim-row .cr-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.claim-row .cr-status.done { color: var(--text-faint); }

/* claimed-seats badge on account seat cards */
.seat-badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--fmono); font-size: 10.5px; letter-spacing: .04em; color: var(--amber); }

/* member profile — webinar announcements */
.anno-list { display: flex; flex-direction: column; gap: 16px; }
.anno-card { display: grid; grid-template-columns: 260px 1fr; border: 1px solid rgba(255,200,47,.4); border-radius: 16px; overflow: hidden; background: var(--bg-800); }
@media (max-width: 640px) { .anno-card { grid-template-columns: 1fr; } }
.anno-video { position: relative; background-size: cover; background-position: center; min-height: 158px; display: grid; place-items: center; }
.anno-video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,10,.2), rgba(8,8,10,.6)); }
.anno-video .av-play { position: relative; z-index: 2; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,200,47,.94); display: grid; place-items: center; color: #100b02; box-shadow: 0 0 0 0 rgba(255,200,47,.5); animation: ripple 2.4s infinite; }
.anno-video .av-tag { position: absolute; z-index: 2; top: 10px; left: 10px; font-family: var(--fmono); font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: rgba(10,10,11,.7); border: 1px solid rgba(255,255,255,.2); padding: 3px 8px; border-radius: 999px; }
.anno-body { padding: 20px; }
.anno-body .ab-tag { display: inline-flex; align-items: center; gap: 7px; font-family: var(--fmono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: #100b02; background: linear-gradient(135deg, var(--amber-deep), var(--amber)); padding: 4px 10px; border-radius: 999px; }
.anno-body h3 { margin: 12px 0 4px; }
.anno-body .ab-meta { font-family: var(--fmono); font-size: 11px; color: var(--text-dim); }
.anno-body .ab-msg { font-size: 13.5px; color: var(--text-dim); margin-top: 10px; line-height: 1.5; }
.anno-body .ab-actions { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; }
/* mobile: match the announcement card to the webinar tiles (subtle border, 16:10 media, same play button) */
@media (max-width: 640px) {
  .anno-card { border-color: var(--line); border-radius: var(--radius); background: linear-gradient(180deg, var(--bg-800), var(--bg-850)); }
  .anno-video { aspect-ratio: 16/10; min-height: 0; border-bottom: 1px solid var(--line); }
  .anno-video .av-play { width: 62px; height: 62px; padding-left: 3px; background: linear-gradient(180deg, var(--amber-soft), var(--amber)); animation: coverPulse 1.9s ease-in-out infinite; box-shadow: 0 0 0 0 rgba(255,200,47,.55), 0 8px 22px -6px rgba(0,0,0,.6); }
  .anno-body { padding: 18px 18px 20px; }
  .anno-body h3 { font-size: 18.5px; margin: 12px 0 4px; }
  .anno-body .ab-actions { flex-direction: column; }
  .anno-body .ab-actions .btn { width: 100%; justify-content: center; }
}

/* FFL locator */
.ffl-locator { margin-top: 16px; border-top: 1px solid var(--line-soft); padding-top: 16px; }
.ffl-search { display: flex; align-items: center; gap: 10px; padding: 10px 13px; background: var(--bg-900); border: 1px solid var(--line); border-radius: 10px; }
.ffl-search svg { color: var(--text-faint); flex: none; }
.ffl-search input { flex: 1; min-width: 0; border: none; background: transparent; color: var(--text-hi); font-family: inherit; font-size: 14px; outline: none; }
.ffl-results { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; max-height: 300px; overflow-y: auto; }
.ffl-item { display: flex; align-items: center; gap: 12px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg-900); transition: border-color .15s; }
.ffl-item.sel { border-color: rgba(255,200,47,.55); background: rgba(255,200,47,.06); }
.ffl-info { flex: 1; min-width: 0; }
.ffl-name { font-size: 13.5px; color: var(--text-hi); }
.ffl-addr { font-size: 12px; color: var(--text-dim); margin-top: 2px; }
.ffl-pick { flex: none; }
.ffl-empty { font-size: 13px; color: var(--text-faint); padding: 16px; text-align: center; }

/* ============================================================
   ON-BRAND SCROLLBARS
   ============================================================ */
* { scrollbar-width: thin; scrollbar-color: var(--amber-deep) transparent; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  border-radius: 999px; border: 3px solid transparent; background-clip: padding-box;
  background-color: var(--amber-deep);
}
::-webkit-scrollbar-thumb:hover { background-color: var(--amber); }
::-webkit-scrollbar-corner { background: transparent; }

/* ============================================================
   MOBILE POLISH — crisp, tappable, comfortable on phones
   ============================================================ */
@media (max-width: 560px) {
  /* tighter, app-like edges */
  .wrap { padding: 0 16px; }
  .admin-content { padding-left: 16px; padding-right: 16px; }

  /* account tabs: full-width, evenly-split across the row */
  .acct-tabs { display: flex; width: 100%; flex-wrap: nowrap; }
  .acct-tabs button { flex: 1; white-space: nowrap; padding: 10px 6px; text-align: center; }

  /* account header: full-width action buttons, tighter stats */
  .acct-actions { width: 100%; }
  .acct-actions .btn { flex: 1 1 0; justify-content: center; }
  .acct-avatar { width: 60px; height: 60px; font-size: 26px; }
  .acct-id h1 { font-size: 23px; }
  .acct-stats .sv { font-size: 22px; }

  /* comfortable tap targets on the key CTAs + menu */
  .btn-lg { min-height: 48px; }
  .nav-drawer a { min-height: 48px; display: flex; align-items: center; }
  .nav-drawer .btn { min-height: 46px; justify-content: center; }

  /* keep any wide data tables swipeable instead of overflowing */
  .apanel-body.tight { overflow-x: auto; }
}

/* ============================================================
   MOBILE — homepage: centered copy + full-width CTAs shown last
   ============================================================ */
.st-viewall-mobile, .walk-cta-mobile, .member-cta-visual { display: none; }
@media (max-width: 600px) {
  /* hero already repeats the CTA on the featured card below — hide the first one */
  .hero-tile .hero-ctas { display: none; }
  /* center all titles + body copy */
  .hero-tile .hero-grid > div:first-child { text-align: center; }
  .walk-copy { text-align: center; display: flex; flex-direction: column; }
  .walk-copy .walk-list { width: fit-content; max-width: 100%; margin-left: auto; margin-right: auto; text-align: left; }
  .reviews-head, .reviews-head .sec-head { text-align: center; }
  .reviews-head .trust-row { justify-content: center; }
  .member-cta-inner { text-align: center; }
  .section-tile .sec-head-row { flex-direction: column; align-items: center; text-align: center; gap: 12px; }

  /* full-width callout buttons */
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .st-viewall-desktop { display: none; }
  .st-viewall-mobile { display: flex; width: 100%; margin-top: 22px; }

  /* walkthrough: CTA moves BELOW the animation */
  .walk-copy .walk-cta { display: none; }
  .walk-cta-mobile { display: flex; width: 100%; }

  /* member CTA: lion visible on top, text below (gradient blends the seam) */
  .member-cta { flex-direction: column; align-items: stretch; min-height: 0; padding: 0; background-image: none !important; background-color: #0a0a0b; }
  .member-cta::before { display: none; }
  .member-cta-visual { display: block; position: relative; height: 205px; background-size: cover; background-position: center 24%; }
  .member-cta-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,11,0) 35%, rgba(10,10,11,.65) 72%, #0a0a0b 100%); }
  .member-cta-inner { max-width: none; padding: 12px 20px 30px; margin-top: -14px; position: relative; }
}
