/* ============================================================
   BOT FLOW — animated step-by-step bot explainer
   ============================================================ */
.botflow {
  background: linear-gradient(180deg, transparent, rgba(75,233,255,.04), transparent);
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.botflow .bf-wrap { gap: clamp(18px, 2vw, 24px); }

.bf-wrap {
  display: grid; gap: 28px;
}

/* timeline */
.bf-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding: 18px 0 0;
}
.bf-line {
  position: absolute; left: 6%; right: 6%; top: 38px; height: 2px;
  background: rgba(255,255,255,.08);
  border-radius: 2px; overflow: hidden;
}
.bf-line-fill {
  height: 100%; transition: width .6s cubic-bezier(.4,.2,.2,1);
}
.bf-node {
  position: relative; z-index: 2;
  display: grid; gap: 6px; justify-items: center;
  background: transparent; border: 0; color: inherit; cursor: pointer;
  padding: 6px 4px;
  font-family: inherit;
}
.bf-avatar {
  width: clamp(54px, 5.5vw, 68px); height: clamp(54px, 5.5vw, 68px); border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-1);
  border: 2px solid rgba(255,255,255,.15);
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  filter: grayscale(.6) brightness(.7);
}
.bf-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.bf-node.done .bf-avatar { filter: grayscale(0) brightness(.95); border-color: var(--nc); opacity: .75; }
.bf-node.active .bf-avatar {
  filter: grayscale(0) brightness(1.05);
  border-color: var(--nc);
  box-shadow: 0 0 0 4px rgba(255,255,255,.04), 0 12px 32px -10px var(--nc);
  transform: scale(1.12);
}
.bf-node.active .bf-avatar::after {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 1px dashed var(--nc); animation: spin 6s linear infinite;
  pointer-events: none;
}
.bf-step-num {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em; color: var(--ink-mute);
}
.bf-node.active .bf-step-num { color: var(--nc); }
.bf-step-label { font-family: var(--font-display); font-weight: 700; font-size: .9rem; letter-spacing: -.01em; }

.bf-packet {
  position: absolute; top: 30px;
  width: 28px; height: 28px; pointer-events: none;
  z-index: 3;
  transition: left .8s cubic-bezier(.4,.2,.2,1);
}
.bf-packet span {
  position: absolute; inset: 0; border-radius: 50%;
  animation: packetFloat 1.4s ease-in-out infinite;
}
@keyframes packetFloat {
  0%, 100% { transform: translateY(-2px); opacity: 1; }
  50%      { transform: translateY(2px); opacity: .55; }
}

@media (max-width: 820px) {
  .bf-timeline { grid-template-columns: repeat(6, 1fr); }
  .bf-avatar { width: 52px; height: 52px; }
  .bf-step-label { display: none; }
  .bf-line, .bf-packet { top: 38px; }
}

/* stage */
.bf-stage {
  position: relative;
  display: grid; grid-template-columns: minmax(180px, .85fr) 1.4fr; gap: clamp(20px, 2.5vw, 32px);
  align-items: center;
  padding: clamp(20px, 2.5vw, 28px);
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  overflow: hidden;
}
.bf-stage-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 18% 30%, var(--sc, #ff2fb3) 0%, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(75,233,255,.18), transparent 50%);
  opacity: .35; transition: background .6s;
}
.bf-stage-rings {
  position: absolute; left: 30%; top: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.bf-stage-rings span {
  position: absolute; left: 0; top: 0; transform: translate(-50%,-50%);
  width: 240px; height: 240px; border-radius: 50%;
  border: 1px solid var(--sc); opacity: .25;
  animation: rings 3.2s ease-out infinite;
}
.bf-stage-rings span:nth-child(2) { animation-delay: 1s; }
.bf-stage-rings span:nth-child(3) { animation-delay: 2s; }
@keyframes rings {
  0% { width: 80px; height: 80px; opacity: .6; }
  100% { width: 380px; height: 380px; opacity: 0; }
}

.bf-char-col {
  position: relative; z-index: 1;
  display: grid; grid-template-rows: 1fr auto; gap: 16px;
  align-content: center; justify-items: center;
}
.bf-char-stack {
  position: relative;
  width: clamp(140px, 14vw, 200px); aspect-ratio: 1;
}
.bf-char-slot {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  opacity: 0;
  transition: opacity .5s ease, transform .65s cubic-bezier(.2,.7,.2,1.3), filter .55s ease;
  pointer-events: none;
}
.bf-char-slot.is-active {
  opacity: 1;
  transform: scale(1) rotate(0);
  filter: none;
}
.bf-char-slot.is-leaving {
  opacity: 0;
  transform: scale(.55) rotate(-10deg);
  filter: blur(12px) brightness(2.2);
}
.bf-char-slot.is-hidden {
  opacity: 0;
  transform: scale(.4) rotate(12deg);
  filter: blur(12px) brightness(2.2);
  transition: none;
}
.bf-char-slot img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 0 30px var(--cc)) drop-shadow(0 18px 30px rgba(0,0,0,.6));
  user-select: none; -webkit-user-drag: none;
}
.bf-char-slot.is-active img {
  animation: bobble 4.5s ease-in-out infinite;
}
.bf-char-glow {
  position: absolute; inset: -20px; border-radius: 50%;
  opacity: 0;
  z-index: -1;
}
.bf-char-slot.is-active .bf-char-glow {
  opacity: .4; animation: bfGlow 2.2s ease-in-out infinite;
}
@keyframes bfGlow {
  0%, 100% { transform: scale(1); opacity: .35; }
  50%      { transform: scale(1.1); opacity: .55; }
}
.bf-char-meta { text-align: center; }
.bf-char-meta small {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em;
  color: var(--sc); text-transform: uppercase;
}
.bf-char-meta b {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: 1.45rem; letter-spacing: -.02em; margin: 2px 0;
}
.bf-char-meta em {
  font-style: normal; font-family: var(--font-mono); font-size: .76rem;
  color: var(--ink-mute); letter-spacing: .1em; text-transform: uppercase;
}

.bf-msg-col {
  position: relative; z-index: 1;
  display: grid; grid-template-rows: 1fr auto; gap: 16px;
}
.bf-chat {
  display: grid; gap: 12px; align-content: start;
  padding: 22px; border-radius: 18px;
  background: rgba(0,0,0,.42); backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
}
.bf-bubble {
  padding: 16px 18px; border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.bf-bubble.user {
  max-width: 88%; border-bottom-left-radius: 4px;
}
.bf-bubble-stack {
  position: relative;
  min-height: 160px;
}
.bf-bubble-slot {
  position: absolute; left: 0; right: 0; top: 0;
  max-width: 100%;
  background: rgba(255,255,255,.06);
  border-bottom-right-radius: 4px;
  opacity: 0;
  transform: translateY(10px) scale(.97);
  transition: opacity .45s ease, transform .55s cubic-bezier(.2,.7,.2,1.2);
  pointer-events: none;
}
.bf-bubble-slot.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.bf-bubble-slot.is-hidden {
  transition: none;
}
.bf-bubble small {
  display: block; font-family: var(--font-mono); font-size: .7rem;
  letter-spacing: .12em; color: var(--ink-mute); text-transform: uppercase;
  margin-bottom: 6px;
}
.bf-bubble h4 {
  margin: 0 0 4px; font-family: var(--font-display); font-size: 1.1rem;
  letter-spacing: -.01em;
}
.bf-bubble p { margin: 0; color: var(--ink-soft); font-size: .94rem; line-height: 1.55; }
.bf-chip {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 10px; padding: 6px 10px;
  border-radius: 999px;
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(0,0,0,.4);
  border: 1px solid var(--line-strong);
}
.bf-chip-dot { width: 6px; height: 6px; border-radius: 50%; }

.bf-typing { display: flex; gap: 5px; padding-left: 4px; height: 16px; align-items: center; }
.bf-typing span {
  width: 7px; height: 7px; border-radius: 50%;
  animation: typing 1s ease-in-out infinite;
}
@keyframes typing {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50%      { transform: translateY(-4px); opacity: 1; }
}

.bf-ctrl { display: flex; gap: 10px; justify-content: flex-end; }
.bf-btn {
  border: 1px solid var(--line-strong); border-radius: 999px;
  background: rgba(255,255,255,.04); color: var(--ink);
  padding: 10px 16px; font-family: var(--font-body); font-weight: 700;
  font-size: .85rem; cursor: pointer; transition: background .2s, color .2s;
}
.bf-btn:hover { background: rgba(255,255,255,.1); }
.bf-btn.primary { background: var(--sc); color: var(--bg-0); border-color: var(--sc); }
.bf-btn.primary:hover { transform: translateY(-1px); }

@media (max-width: 920px) {
  .bf-stage { grid-template-columns: 1fr; padding: 24px; }
  .bf-stage-rings { display: none; }
  .bf-char { width: 160px; }
}

/* ============================================================
   COURSE LEARNINGS
   ============================================================ */
.learnings { background:
  radial-gradient(ellipse at 0% 0%, rgba(255,47,179,.08), transparent 50%),
  radial-gradient(ellipse at 100% 100%, rgba(75,233,255,.06), transparent 60%);
}

.lr-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr); gap: 10px;
  margin-bottom: 24px;
}
@media (max-width: 1100px) { .lr-tabs { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px)  { .lr-tabs { grid-template-columns: 1fr; } }

.lr-tab {
  display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center;
  padding: 12px 14px; border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: inherit; cursor: pointer; font-family: inherit; text-align: left;
  transition: background .2s, border-color .2s, transform .15s;
}
.lr-tab:hover { background: rgba(255,255,255,.07); transform: translateY(-2px); }
.lr-tab.active {
  background: rgba(255,255,255,.08);
  border-color: var(--tc);
  box-shadow: 0 0 0 1px var(--tc), 0 14px 40px -18px var(--tc);
}
.lr-tab-avatar {
  width: 42px; height: 42px; border-radius: 12px;
  overflow: hidden;
  background: var(--bg-1);
  border: 1px solid var(--line-strong);
  flex-shrink: 0;
}
.lr-tab-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.lr-tab-text small {
  display: block; font-family: var(--font-mono); font-size: .64rem;
  letter-spacing: .14em; color: var(--ink-mute); text-transform: uppercase;
}
.lr-tab-text b {
  display: block; font-family: var(--font-display); font-size: .96rem; line-height: 1.1;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.lr-tab.active .lr-tab-text small { color: var(--tc); }

.lr-stage {
  display: grid; grid-template-columns: .9fr 1.2fr; gap: 32px;
  padding: 32px;
  border-radius: 28px;
  background: rgba(0,0,0,.35);
  border: 1px solid var(--line-strong);
  position: relative;
  animation: lrFade .5s ease-out;
}
@keyframes lrFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 980px) { .lr-stage { grid-template-columns: 1fr; padding: 22px; } }

.lr-mentor {
  position: relative;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.01));
  border: 1px solid var(--line-strong);
  display: grid; gap: 18px;
  overflow: hidden;
}
.lr-mentor::before {
  content: ""; position: absolute; inset: -1px;
  border-radius: 22px; pointer-events: none;
  background: radial-gradient(circle at 50% -10%, var(--sc), transparent 50%);
  opacity: .35;
}
.lr-mentor > * { position: relative; z-index: 1; }

.lr-mentor-frame {
  position: relative;
  width: 100%; aspect-ratio: 1;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 35%, var(--sc), transparent 70%), rgba(0,0,0,.4);
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  max-width: 280px;
  margin: 0 auto;
}
.lr-mentor-frame img {
  width: 92%; height: 92%; object-fit: contain;
  filter: drop-shadow(0 0 24px var(--sc));
  animation: bobble 4.5s ease-in-out infinite;
}
.lr-mentor-orb {
  position: absolute; inset: 12px; border-radius: 50%;
  border: 1px dashed var(--sc); opacity: .4;
  animation: spin 14s linear infinite;
}

.lr-mentor-meta small {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em;
  color: var(--sc); text-transform: uppercase;
}
.lr-mentor-meta h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 2rem; letter-spacing: -.02em;
  margin: 4px 0 12px;
}
.lr-quote {
  margin: 0; font-size: .98rem; color: var(--ink-soft); line-height: 1.55;
  position: relative; padding-left: 16px;
  border-left: 2px solid var(--sc);
}
.lr-quote span { color: var(--sc); font-family: var(--font-display); font-size: 1.4em; line-height: 0; }

.lr-pricerow {
  margin-top: 18px; padding-top: 18px; border-top: 1px dashed var(--line-strong);
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.lr-pricerow b { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: -.02em; }
.lr-pricerow small { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; color: var(--ink-mute); text-transform: uppercase; }

.lr-learnings h4 {
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-mute);
  margin: 0 0 14px; font-weight: 600;
}
.lr-learnings ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.lr-item {
  position: relative;
  display: grid; grid-template-columns: auto auto 1fr auto; gap: 14px; align-items: center;
  padding: 14px 16px; border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  transition: background .25s, border-color .25s, transform .15s;
  overflow: hidden;
}
.lr-item.hl {
  background: rgba(255,255,255,.06);
  border-color: var(--ic);
  transform: translateX(4px);
  box-shadow: 0 12px 32px -16px var(--ic);
}
.lr-item.hl::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--ic);
}
.lr-item-num {
  font-family: var(--font-mono); font-size: .72rem; color: var(--ic);
  letter-spacing: .14em; min-width: 42px;
  padding: 5px 8px; border-radius: 8px;
  background: rgba(0,0,0,.35); text-align: center;
}
.lr-item-host {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--ic);
  background: var(--bg-1);
  flex-shrink: 0;
  position: relative;
}
.lr-item-host img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform .3s;
}
.lr-item.hl .lr-item-host img { transform: scale(1.1); }
.lr-item.hl .lr-item-host::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px dashed var(--ic); animation: spin 5s linear infinite;
}
.lr-item-body small {
  display: block; font-family: var(--font-mono); font-size: .66rem;
  letter-spacing: .14em; color: var(--ic); text-transform: uppercase;
}
.lr-item-body p {
  margin: 4px 0 0; font-size: .94rem; line-height: 1.5; color: var(--ink-soft);
}
.lr-item.hl .lr-item-body p { color: var(--ink); }

.lr-spark {
  display: flex; gap: 3px; align-items: center;
  opacity: 0; transition: opacity .25s;
}
.lr-item.hl .lr-spark { opacity: 1; }
.lr-spark i {
  display: block; width: 3px; height: 14px; background: var(--ic);
  border-radius: 2px; opacity: .3;
  animation: sparkBar 1s ease-in-out infinite;
}
.lr-spark i:nth-child(2) { animation-delay: .15s; height: 22px; }
.lr-spark i:nth-child(3) { animation-delay: .3s; height: 10px; }
@keyframes sparkBar {
  0%, 100% { transform: scaleY(.5); opacity: .3; }
  50%      { transform: scaleY(1.1); opacity: 1; }
}


/* ============================================================
   BNI · 50% OFF banner section
   ============================================================ */
.bni {
  padding: clamp(28px, 3.5vw, 48px) clamp(20px, 4vw, 56px);
  min-height: calc(100vh - 80px);
  display: flex; align-items: center;
}
.bni-wrap {
  position: relative;
  padding: clamp(24px, 2.6vw, 36px);
  border-radius: 26px;
  width: 100%;
  border: 1px solid rgba(255,194,74,.32);
  background:
    radial-gradient(circle at 0% 0%, rgba(255,47,179,.20), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(255,194,74,.18), transparent 55%),
    rgba(20,8,38,.55);
  overflow: hidden;
}
.bni-wrap::before {
  content: ""; position: absolute; inset: 0; opacity: .08;
  background:
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(255,255,255,.45) 22px 23px);
  mask-image: radial-gradient(circle at 70% 30%, black, transparent 60%);
  pointer-events: none;
}
.bni-flag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,194,74,.10);
  border: 1px solid rgba(255,194,74,.45);
  color: #ffd97a;
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.bni-flag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ffc24a; box-shadow: 0 0 14px #ffc24a;
  animation: pulse 1.6s ease-in-out infinite;
}
.bni-grid {
  display: grid; grid-template-columns: 1.2fr .9fr; gap: 48px;
  align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 980px) { .bni-grid { grid-template-columns: 1fr; } }

.bni-copy h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1; letter-spacing: -.025em;
  margin: 0 0 14px; text-wrap: balance;
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
}
.bni-copy h2 em {
  font-style: normal;
  background: linear-gradient(95deg, #ffc24a, #ff7a1a);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.bni-pct {
  display: inline-flex; align-items: baseline; gap: 4px;
  padding: 6px 14px; border-radius: 16px;
  background: linear-gradient(135deg, #ff2fb3, #ffc24a);
  color: var(--bg-0);
  box-shadow: 0 14px 38px -10px rgba(255,194,74,.55), inset 0 0 0 1px rgba(255,255,255,.3);
}
.bni-pct b { font-family: var(--font-display); font-weight: 900; font-size: 1.2em; letter-spacing: -.03em; line-height: 1; }
.bni-pct small { font-family: var(--font-mono); font-size: .55em; letter-spacing: .14em; text-transform: uppercase; }
.bni-pct.big b { font-size: 3.2rem; }
.bni-pct.big small { font-size: .9rem; }

.bni-copy > p {
  margin: 0 0 14px; color: var(--ink-soft);
  font-size: .9rem; line-height: 1.5; max-width: 58ch;
}
.bni-copy > p b { color: var(--ink); }

.bni-perks {
  list-style: none; padding: 0; margin: 0 0 16px;
  display: grid; gap: 8px;
}
.bni-perks li {
  display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: flex-start;
  padding: 10px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: .82rem; color: var(--ink-soft);
  line-height: 1.4;
}
.bni-perks li b { color: var(--ink); }
.bni-perk-dot {
  width: 10px; height: 10px; border-radius: 50%;
  margin-top: 5px;
  box-shadow: 0 0 10px currentColor;
}

.bni-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.bni-fine {
  margin: 0; font-family: var(--font-mono); font-size: .68rem;
  color: var(--ink-mute); letter-spacing: .04em; max-width: 60ch;
  line-height: 1.4;
}

/* card / ticket */
.bni-card {
  display: grid; gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,194,74,.35);
}
.bni-card-head {
  display: flex; justify-content: space-between; align-items: center;
}
.bni-card-head small {
  font-family: var(--font-mono); font-size: .72rem; color: #ffd97a;
  letter-spacing: .16em; text-transform: uppercase;
}
.bni-trio { display: flex; gap: -4px; }
.bni-mini {
  width: 36px; height: 36px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--bg-0);
  box-shadow: 0 0 0 1px var(--mc), 0 6px 14px -4px var(--mc);
  margin-left: -10px;
  background: var(--bg-1);
}
.bni-mini:first-child { margin-left: 0; }
.bni-mini img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.bni-ticket {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(170deg, rgba(255,194,74,.22), rgba(255,47,179,.18) 60%, rgba(162,92,255,.10));
  border: 1px dashed rgba(255,194,74,.55);
  padding: 16px;
  display: grid; gap: 12px;
  overflow: hidden;
}
.bni-ticket::before {
  content: ""; position: absolute; inset: 0; opacity: .25;
  background: repeating-linear-gradient(45deg, transparent 0 8px, rgba(255,255,255,.08) 8px 9px);
  pointer-events: none;
}
.bni-ticket-top {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px dashed rgba(255,255,255,.2); padding-bottom: 12px;
  position: relative;
}
.bni-ticket-top b { font-family: var(--font-display); font-weight: 800; letter-spacing: .04em; }
.bni-ticket-top small { font-family: var(--font-mono); font-size: .68rem; color: #ffd97a; letter-spacing: .14em; }

.bni-ticket-mid {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center;
  position: relative;
}
.bni-ticket-mid > div small { font-family: var(--font-mono); font-size: .7rem; color: var(--ink-mute); letter-spacing: .14em; text-transform: uppercase; display: block; }
.bni-ticket-mid > div p { margin: 4px 0 0; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }

.bni-ticket-foot {
  display: grid; gap: 4px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,.2);
  position: relative;
}
.bni-ticket-foot small {
  font-family: var(--font-mono); font-size: .66rem; color: var(--ink-mute);
  letter-spacing: .14em; text-transform: uppercase;
}
.bni-ticket-foot b { font-family: var(--font-display); font-size: 1.05rem; }
.bni-code {
  font-family: var(--font-mono) !important;
  letter-spacing: .18em; color: #ffd97a;
}
.bni-perf {
  position: absolute; left: -8px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg-0);
  box-shadow:
    220px 0 0 0 var(--bg-0);
}

.bni-card-note {
  margin: 0; font-size: .9rem; color: var(--ink-soft);
  padding: 14px 16px; border-radius: 14px;
  background: rgba(0,0,0,.35);
  border: 1px solid var(--line);
}
.bni-card-note b { color: #ffd97a; }


/* ============================================================
   TEAM REEL — horizontal strip with 3D depth on hover
   ============================================================ */
.reel {
  padding: 38px clamp(16px, 4vw, 56px) 12px;
  position: relative;
  z-index: 3;
}
.reel-strip {
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: 12px;
  position: relative;
  perspective: 1200px;
}
@media (max-width: 1300px) { .reel-strip { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 820px)  { .reel-strip { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 540px)  { .reel-strip { grid-template-columns: repeat(3, 1fr); } }

.reel-cell {
  --rx: 0deg;
  --ry: 0deg;
  --tx: 0px;
  --ty: 0px;
  --mx: 50%;
  --my: 50%;
  position: relative;
  border-radius: 18px;
  background: transparent;
  cursor: default;
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2,.7,.2,1.2);
}
.reel-cell:hover { z-index: 30; }
.reel-cell.is-hover { transform: translateY(-6px) translateZ(0); }

.reel-cell-3d {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  overflow: hidden;
  transition:
    transform .25s cubic-bezier(.2,.7,.2,1.2),
    border-color .3s,
    box-shadow .3s;
  transform-style: preserve-3d;
}
.reel-cell.is-hover .reel-cell-3d {
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  border-color: var(--rc);
  box-shadow:
    0 25px 60px -20px var(--rc),
    0 0 0 1px var(--rc) inset;
}
.reel-cell-img {
  position: relative;
  aspect-ratio: 4/5;
  background: radial-gradient(circle at 50% 40%, color-mix(in oklab, var(--rc) 25%, transparent), transparent 65%), #07030d;
  overflow: hidden;
  transform-style: preserve-3d;
}
.reel-cell-img img {
  position: relative;
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform .35s ease, filter .35s ease;
  user-select: none; -webkit-user-drag: none;
  z-index: 2;
}
.reel-cell.is-hover .reel-cell-img img {
  transform: scale(1.12) translate3d(var(--tx), var(--ty), 60px);
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.55)) drop-shadow(0 0 18px var(--rc)) saturate(1.25);
}
/* Depth halo behind the cat */
.reel-cell-glow {
  position: absolute; inset: -6%;
  background: radial-gradient(circle at var(--mx) var(--my), var(--rc), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 1;
}
.reel-cell.is-hover .reel-cell-glow { opacity: .65; }

/* Diagonal sheen sweeping with mouse */
.reel-shine {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,.32), transparent 35%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: overlay;
}
.reel-cell.is-hover .reel-shine { opacity: 1; }

/* Spotlight ring that appears around the cat */
.reel-spotlight {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) translateZ(20px);
  width: 80%; aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed var(--rc);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 2;
}
.reel-cell.is-hover .reel-spotlight {
  opacity: .55;
  animation: spin 8s linear infinite;
}

.reel-cell-meta {
  position: relative;
  padding: 10px 12px 12px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.55));
  transition: transform .25s ease;
  z-index: 4;
}
.reel-cell.is-hover .reel-cell-meta {
  transform: translateZ(25px);
}
.reel-cell-meta small {
  display: block; font-family: var(--font-mono); font-size: .62rem;
  letter-spacing: .14em; color: var(--ink-mute);
  margin-bottom: 2px;
}
.reel-cell.is-hover .reel-cell-meta small { color: var(--rc); }
.reel-cell-meta b {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: .92rem; letter-spacing: -.01em; line-height: 1;
  color: var(--ink);
  margin-bottom: 3px;
  transition: color .25s;
}
.reel-cell.is-hover .reel-cell-meta b { color: var(--rc); }
.reel-cell-meta em {
  display: block; font-style: normal;
  font-size: .68rem; color: var(--ink-soft);
  line-height: 1.25; text-wrap: balance;
}
@media (max-width: 540px) {
  .reel-cell-meta em { display: none; }
  .reel-cell-meta b { font-size: .8rem; }
}


/* Cursos benefits banner */
.cursos-benefits {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(75,233,255,.08), rgba(255,47,179,.06));
  border: 1px solid var(--line-strong);
}
@media (max-width: 1100px) { .cursos-benefits { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px)  { .cursos-benefits { grid-template-columns: repeat(2, 1fr); } }

.cursos-benefit {
  display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.25);
  border: 1px solid var(--line);
}
.cursos-benefit b {
  display: block; font-family: var(--font-display); font-size: .95rem;
  letter-spacing: -.01em; line-height: 1.15;
}
.cursos-benefit small {
  display: block; font-size: .78rem; color: var(--ink-soft); line-height: 1.35; margin-top: 2px;
}
.cb-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.5rem; letter-spacing: -.03em;
  background: linear-gradient(135deg, #ff2fb3, #4be9ff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  min-width: 48px; text-align: center;
}
.cb-icon {
  font-size: 1.6rem;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
}


/* Bot flow — clean focused header, centered, compact */
.botflow .bf-header {
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 32px);
}
.botflow .bf-header h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -.03em; line-height: 1;
  margin: 0;
  display: inline-block;
  background: linear-gradient(95deg, #ff2fb3, #a25cff 50%, #4be9ff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  padding: 0 .1em .08em;
}


/* Cohorte module gatito avatars (bootcamp section) */
.cohorte-mod-avatar {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--bg-1);
  border: 2px solid var(--bc, #ff2fb3);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 18px -10px var(--bc, #ff2fb3);
}
.cohorte-mod-avatar img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  user-select: none; -webkit-user-drag: none;
}


/* Cohorte module avatar size in compact layout */
.cohorte-mod-avatar {
  width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center;
  background: var(--bg-1);
  border: 2px solid var(--bc, #ff2fb3);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -8px var(--bc, #ff2fb3);
}
.cohorte-mod-avatar img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  user-select: none; -webkit-user-drag: none;
}

/* Cohorte includes box */
.cohorte-incl {
  padding: 10px 14px; border-radius: 12px;
  background: rgba(255,47,179,.08);
  border: 1px dashed rgba(255,47,179,.45);
}
.cohorte-incl small {
  font-family: var(--font-mono); font-size: .58rem;
  color: var(--ink-mute); letter-spacing: .14em; text-transform: uppercase;
}
.cohorte-incl p {
  margin: 4px 0 0; font-size: .78rem; color: var(--ink-soft); line-height: 1.4;
}

/* Cohorte actions row */
.cohorte-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 2px;
}

/* Cohorte section padding tight */
.section.cohorte {
  padding-top: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(24px, 3vw, 40px);
}
.section.cohorte .section-head { display: none; }


/* ============================================================
   BOOTCAMP — Premium / gold, single viewport, animated
   ============================================================ */
.section.cohorte-gold {
  padding: clamp(20px, 2.4vw, 32px) clamp(20px, 4vw, 56px);
  min-height: calc(100vh - 80px);
  display: flex; align-items: center;
}

.bc-wrap {
  position: relative;
  width: 100%;
  display: grid; gap: clamp(10px, 1.2vw, 16px);
  padding: clamp(16px, 2vw, 24px);
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(255,194,74,.22), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(255,47,179,.18), transparent 55%),
    linear-gradient(160deg, rgba(50,18,8,.6), rgba(20,8,38,.7));
  border: 1px solid rgba(255,194,74,.45);
  box-shadow:
    0 30px 90px -30px rgba(255,47,179,.45),
    0 0 0 1px rgba(255,215,120,.18) inset;
  overflow: hidden;
}
.bc-wrap::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .12;
  background:
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(255,215,120,.5) 22px 23px);
  mask-image: radial-gradient(circle at 80% 20%, black, transparent 60%);
}
.bc-medal {
  position: absolute; right: -50px; top: -50px;
  width: 200px; height: 200px;
  pointer-events: none;
}
.bc-medal-ring {
  position: absolute; inset: 0;
  border: 2px dashed rgba(255,215,120,.55);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}
.bc-medal-star {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 2.4rem; color: rgba(255,215,120,.7);
  filter: drop-shadow(0 0 14px rgba(255,215,120,.5));
}

/* HEAD */
.bc-head {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(20px, 2.4vw, 36px);
  align-items: end;
}
@media (max-width: 980px) { .bc-head { grid-template-columns: 1fr; } }
.bc-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: #ffd97a;
  margin-bottom: 10px;
}
.bc-kicker-bar {
  width: 32px; height: 2px;
  background: linear-gradient(90deg, transparent, #ffd97a);
}
.bc-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  letter-spacing: -.025em; line-height: 1;
  margin: 0 0 6px;
  text-wrap: balance;
  max-width: 18ch;
}
.bc-head h2 em {
  font-style: normal;
  background: linear-gradient(95deg, #ffd84a, #ff7a1a 70%, #ff2fb3);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.bc-head p {
  margin: 0; color: var(--ink-soft);
  font-size: clamp(.78rem, .9vw, .88rem);
  line-height: 1.4; max-width: 56ch;
}
.bc-head p b { color: #ffd97a; }

.bc-dates-title {
  margin: 0 0 10px; font-family: var(--font-mono);
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: #ffd97a; font-weight: 600;
}
.bc-dates { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.bc-date {
  padding: 7px 6px; border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,194,74,.16), rgba(255,47,179,.06));
  border: 1px solid rgba(255,194,74,.4);
  text-align: center;
}
.bc-date small { font-family: var(--font-mono); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); display: block; }
.bc-date b { font-family: var(--font-display); font-size: .9rem; display: block; line-height: 1; margin: 3px 0; color: #fff; }
.bc-date em { font-style: normal; font-family: var(--font-mono); font-size: .62rem; color: #ffd97a; display: block; }

/* JOURNEY — 5 day timeline */
.bc-journey {
  position: relative; z-index: 1;
  display: grid; gap: clamp(12px, 1.4vw, 18px);
}

.bc-journey-track {
  position: relative;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
  padding: 8px 0 0;
}
.bc-journey-line {
  position: absolute; left: 8%; right: 8%; top: 34px; height: 3px;
  background: rgba(255,255,255,.08);
  border-radius: 2px; overflow: hidden;
}
.bc-journey-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffd84a, #ff7a1a, #ff2fb3);
  box-shadow: 0 0 14px rgba(255,194,74,.6);
  transition: width .6s cubic-bezier(.4,.2,.2,1);
}
.bc-day {
  position: relative; z-index: 2;
  display: grid; justify-items: center; gap: 8px;
  background: transparent; border: 0; cursor: pointer; color: inherit;
  padding: 4px 2px;
  font-family: inherit;
  text-align: center;
}
.bc-day-medal {
  position: relative;
  width: 68px; height: 68px;
  display: grid; place-items: center;
}
.bc-day-avatar {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  overflow: hidden;
  background: var(--bg-1);
  border: 2px solid rgba(255,255,255,.15);
  transition: transform .3s, border-color .3s, box-shadow .3s, filter .3s;
  filter: grayscale(.6) brightness(.7);
}
.bc-day-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.bc-day.done .bc-day-avatar { filter: grayscale(.2) brightness(.92); border-color: var(--dc); opacity: .85; }
.bc-day.active .bc-day-avatar {
  filter: none;
  border-color: var(--dc);
  box-shadow: 0 0 0 4px rgba(255,215,120,.12), 0 12px 28px -8px var(--dc);
  transform: scale(1.08);
}
.bc-day.active .bc-day-medal::after {
  content: ""; position: absolute; inset: -6px;
  border: 1px dashed #ffd97a; border-radius: 50%;
  animation: spin 7s linear infinite;
}
.bc-day-num {
  position: absolute; right: 4px; bottom: 4px;
  font-family: var(--font-display); font-weight: 800; font-size: .7rem;
  padding: 3px 7px; border-radius: 999px;
  background: linear-gradient(135deg, #ffd84a, #ff7a1a);
  color: #2a1305;
  border: 1px solid rgba(0,0,0,.2);
  box-shadow: 0 4px 10px -3px var(--dc);
}
.bc-day-label {
  font-family: var(--font-display); font-weight: 700;
  font-size: .68rem; letter-spacing: -.01em; line-height: 1.1;
  color: var(--ink-soft);
  max-width: 14ch; text-wrap: balance;
}
.bc-day.active .bc-day-label { color: var(--ink); }

/* STAGE — animated detail */
.bc-stage {
  position: relative;
  padding: clamp(12px, 1.4vw, 18px);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255,194,74,.10), rgba(255,255,255,.02));
  border: 1px solid rgba(255,194,74,.3);
  overflow: hidden;
  min-height: 140px;
}
.bc-stage-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, var(--sc), transparent 55%);
  opacity: .25;
  pointer-events: none;
  transition: background .8s ease;
}
.bc-stage-grid {
  position: relative;
  display: grid; grid-template-columns: minmax(90px, 120px) 1fr;
  gap: clamp(12px, 1.5vw, 22px);
  align-items: center;
}
.bc-stage-char {
  position: relative;
  width: 100%; aspect-ratio: 1;
}
.bc-stage-slot {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  opacity: 0;
  transform: scale(.55) rotate(-8deg);
  filter: blur(10px) brightness(2);
  transition: opacity .5s ease, transform .65s cubic-bezier(.2,.7,.2,1.3), filter .55s ease;
  pointer-events: none;
}
.bc-stage-slot.is-active {
  opacity: 1; transform: scale(1) rotate(0); filter: none;
}
.bc-stage-slot.is-leaving {
  opacity: 0; transform: scale(.55) rotate(10deg); filter: blur(10px) brightness(2);
}
.bc-stage-slot.is-hidden { transition: none; }
.bc-stage-slot img {
  width: 95%; height: 95%; object-fit: contain;
  filter: drop-shadow(0 0 30px var(--cc)) drop-shadow(0 18px 28px rgba(0,0,0,.6));
  user-select: none; -webkit-user-drag: none;
}
.bc-stage-slot.is-active img {
  animation: bobble 4.5s ease-in-out infinite;
}
.bc-stage-halo {
  position: absolute; inset: -10%; border-radius: 50%;
  opacity: 0; z-index: -1;
}
.bc-stage-slot.is-active .bc-stage-halo {
  opacity: .5; animation: bfGlow 2.2s ease-in-out infinite;
}

.bc-stage-info { display: grid; gap: 6px; }
.bc-stage-tag {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono); font-size: .68rem;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid var(--sc);
  background: rgba(0,0,0,.25);
  width: fit-content;
}
.bc-stage-info h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  letter-spacing: -.02em; line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}
.bc-stage-info p {
  margin: 2px 0 4px; color: var(--ink-soft);
  font-size: .82rem; line-height: 1.4;
}
.bc-stage-ctrl { display: flex; gap: 6px; }
.bc-mini {
  border: 1px solid var(--line-strong); border-radius: 999px;
  background: rgba(255,255,255,.04); color: var(--ink);
  padding: 7px 14px; font-family: var(--font-body); font-weight: 700;
  font-size: .8rem; cursor: pointer;
  transition: background .2s;
}
.bc-mini:hover { background: rgba(255,255,255,.1); }
.bc-mini.primary {
  color: #2a1305; border-color: transparent;
  font-weight: 800;
}

/* FOOT — stats row + CTA */
.bc-foot {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 16px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,194,74,.25);
  align-items: center;
}
@media (max-width: 980px) {
  .bc-foot { grid-template-columns: repeat(2, 1fr); }
}
.bc-stat { text-align: center; }
.bc-stat b {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  display: block; line-height: 1;
  background: linear-gradient(135deg, #ffd84a, #ff7a1a);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.bc-stat small {
  font-family: var(--font-mono); font-size: .56rem;
  color: var(--ink-mute); letter-spacing: .12em; text-transform: uppercase;
  display: block; margin-top: 4px;
}
.bc-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(95deg, #ffd84a, #ff7a1a 50%, #ff2fb3);
  color: #1b0a04;
  font-family: var(--font-body); font-weight: 800; font-size: .95rem;
  text-decoration: none;
  box-shadow:
    0 12px 32px -10px rgba(255,194,74,.6),
    inset 0 0 0 1px rgba(255,255,255,.3);
  transition: transform .15s, box-shadow .25s;
  white-space: nowrap;
}
.bc-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(255,194,74,.8); }
.bc-cta span { transition: transform .2s; }
.bc-cta:hover span { transform: translateX(4px); }

/* Hide old cohorte styles since we use new bc-* classes */
.section.cohorte-gold .cohorte-wrap,
.section.cohorte-gold .cohorte-grid { display: none; }


/* Bootcamp: highlight active date, dates note */
.bc-date.bc-date-active {
  background: linear-gradient(180deg, rgba(255,194,74,.32), rgba(255,47,179,.16));
  border-color: rgba(255,215,120,.7);
  box-shadow: 0 10px 28px -10px rgba(255,194,74,.6), inset 0 0 0 1px rgba(255,215,120,.25);
}
.bc-date.bc-date-active b {
  background: linear-gradient(135deg, #ffd84a, #ff7a1a);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.bc-date.bc-date-active em { color: #fff; font-weight: 700; }
.bc-dates-note {
  margin: 8px 0 0; font-family: var(--font-mono);
  font-size: .62rem; letter-spacing: .08em;
  color: #ffd97a; text-align: center;
  line-height: 1.35;
}


/* ============================================================
   FLOATING ASSISTANTS — corner chat with two characters
   ============================================================ */
.fab {
  position: fixed;
  right: clamp(14px, 2vw, 22px);
  bottom: clamp(14px, 2vw, 22px);
  z-index: 90;
  display: grid; justify-items: end; gap: 12px;
}

/* The toggle button */
.fab-toggle {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px 10px 10px;
  border: 0; border-radius: 999px;
  background: linear-gradient(135deg, #ff2fb3, #a25cff);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: .92rem;
  box-shadow:
    0 14px 36px -10px rgba(255,47,179,.6),
    inset 0 0 0 1px rgba(255,255,255,.25);
  transition: transform .2s, box-shadow .25s;
}
.fab-toggle:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(255,47,179,.85); }
.fab.is-open .fab-toggle {
  background: rgba(20,8,38,.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
}

.fab-toggle-icon {
  position: relative;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  overflow: visible;
}
.fab-toggle-icon svg { width: 18px; height: 18px; }
.fab-toggle-faces {
  position: relative;
  width: 100%; height: 100%;
  display: grid; place-items: center;
}
.fab-toggle-faces img {
  position: absolute;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid #1b0a26;
  object-fit: cover; object-position: center top;
  background: #1b0a26;
  user-select: none; -webkit-user-drag: none;
}
.fab-toggle-faces img:first-child {
  left: -2px; top: 1px;
  transform: rotate(-6deg);
  z-index: 2;
}
.fab-toggle-faces img:last-child {
  right: -2px; top: 1px;
  transform: rotate(6deg);
  z-index: 1;
}

.fab-toggle-label {
  letter-spacing: .02em;
}

.fab-toggle-pulse {
  position: absolute; inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(255,47,179,.55);
  animation: fabPulse 1.8s ease-out infinite;
  pointer-events: none;
}
@keyframes fabPulse {
  0%   { transform: scale(.95); opacity: .8; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* The popout button list */
.fab-buttons {
  display: grid; gap: 10px;
  opacity: 0; transform: translateY(10px) scale(.96);
  pointer-events: none;
  transition: opacity .25s ease, transform .3s cubic-bezier(.2,.7,.2,1.2);
}
.fab.is-open .fab-buttons {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: auto;
}

.fab-btn {
  position: relative;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 12px; align-items: center;
  padding: 10px 14px 10px 10px;
  min-width: 260px;
  border-radius: 18px;
  background: rgba(20,8,38,.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--fc, #ff2fb3);
  box-shadow:
    0 18px 40px -14px var(--fc, #ff2fb3),
    inset 0 0 0 1px rgba(255,255,255,.05);
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s, box-shadow .25s;
}
.fab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -14px var(--fc, #ff2fb3);
}

.fab-avatar {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%; overflow: visible;
  background: var(--bg-1);
  border: 2px solid var(--fc);
  flex-shrink: 0;
}
.fab-avatar img {
  width: 100%; height: 100%; border-radius: 50%;
  object-fit: cover; object-position: center top;
  user-select: none; -webkit-user-drag: none;
}
.fab-status {
  position: absolute; right: -2px; bottom: -2px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #61ff9f;
  border: 2px solid #1b0a26;
  box-shadow: 0 0 8px #61ff9f;
}

.fab-text {
  display: grid; line-height: 1.15;
}
.fab-text small {
  font-family: var(--font-mono); font-size: .62rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--fc);
}
.fab-text b {
  font-family: var(--font-display); font-weight: 700;
  font-size: .92rem; letter-spacing: -.01em;
  color: var(--ink);
  margin-top: 2px;
}

.fab-icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--fc);
  color: #0c0518;
  flex-shrink: 0;
}
.fab-icon svg { width: 16px; height: 16px; }

@media (max-width: 540px) {
  .fab-toggle-label { display: none; }
  .fab-toggle { padding: 6px; }
  .fab-btn { min-width: 0; }
  .fab-text small { font-size: .56rem; }
  .fab-text b { font-size: .82rem; }
}
