/* ════════════════════════════════════════════════════════════════
   VibeSwitcher — section & component styles
   ════════════════════════════════════════════════════════════════ */

/* ── HERO ───────────────────────────────────────────────────── */
#home { padding-top: 150px; padding-bottom: 90px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
.hero-copy h1 {
  font-size: clamp(40px, 6vw, 76px); font-weight: 700; letter-spacing: -.045em;
  line-height: .96; text-wrap: balance; margin-bottom: 26px;
}
.hero-copy h1 .accent { color: var(--orange); }
/* Rotating hero word on its own dedicated line (stable 3-row layout) */
.hero-swap { position: relative; display: inline-block; vertical-align: bottom; overflow: hidden; height: 1.04em; line-height: 1.04; color: var(--orange); }
.hero-swap .hsw-word { position: absolute; left: 0; top: 0; display: block; height: 1.04em; line-height: 1.04; white-space: nowrap; padding-right: .06em; transform: translateY(0); transition: transform .5s var(--ease); }
.hero-swap .hsw-word.enter { transform: translateY(100%); }
.hero-swap .hsw-word.exit { transform: translateY(-100%); }
@media (prefers-reduced-motion: reduce) { .hero-swap .hsw-word { transition: none; } }
.hero-sub {
  font-size: clamp(17px, 2vw, 21px); color: var(--text-dim); max-width: 480px;
  line-height: 1.65; margin-bottom: 16px; text-wrap: pretty;
}
.hero-meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-mut); margin-bottom: 34px;
}
.hero-meta .pip { width: 5px; height: 5px; border-radius: 50%; background: var(--text-faint); }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; align-items: center; }
/* idling mini equalizer near hero */
.hero-app { position: relative; }
.hero-app::before { content: ''; position: absolute; inset: -14% -10%; border-radius: 50%; background: radial-gradient(closest-side, rgba(245,130,10,.13), transparent 76%); filter: blur(26px); z-index: 0; pointer-events: none; }
.hero-app .app-win { position: relative; z-index: 1; }
.mini-eq { display: inline-flex; align-items: flex-end; gap: 3px; height: 16px; }
.mini-eq i {
  width: 3px; background: var(--orange); border-radius: 2px; opacity: .85;
  animation: miniEq 1.5s ease-in-out infinite;
}
.mini-eq i:nth-child(1){height:6px;  animation-delay:-.1s;}
.mini-eq i:nth-child(2){height:13px; animation-delay:-.4s;}
.mini-eq i:nth-child(3){height:9px;  animation-delay:0s;}
.mini-eq i:nth-child(4){height:15px; animation-delay:-.25s;}
.mini-eq i:nth-child(5){height:7px;  animation-delay:-.55s;}
@keyframes miniEq { 0%,100%{transform:scaleY(.5);} 50%{transform:scaleY(1.25);} }

/* ── APP WINDOW (rebuilt chrome) ─────────────────────────────── */
.app-win {
  background: var(--bg); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; box-shadow: 0 40px 120px rgba(0,0,0,.6), 0 0 0 1px rgba(245,130,10,.04);
  width: 100%;
}
.app-win.floaty { animation: none; }

.aw-titlebar {
  height: 32px; background: var(--bg-2); display: flex; align-items: center;
  padding: 0 13px; gap: 8px; border-bottom: 1px solid #16162a;
}
.aw-tb-dots { display: flex; gap: 7px; }
.aw-tb-dots i { width: 11px; height: 11px; border-radius: 50%; }
.aw-tb-title { font-size: 11.5px; color: var(--text-faint); font-weight: 500; margin-left: 4px; }
.aw-tb-ctrls { margin-left: auto; display: flex; gap: 2px; }
.aw-tb-ctrls b {
  width: 26px; height: 22px; display: flex; align-items: center; justify-content: center;
  color: #555570; font-weight: 400; border-radius: 4px; font-size: 12px;
}

.aw-nav {
  height: 48px; background: var(--nav-bg); border-bottom: 1px solid #1c1c2c;
  display: flex; align-items: center; padding: 0 14px; gap: 9px;
}
.aw-nav .logo { display: flex; align-items: center; gap: 8px; }
.aw-nav .logo .puck {
  width: 28px; height: 28px; border-radius: 8px; background: var(--puck);
  border: 1px solid var(--orange-border); display: flex; align-items: center; justify-content: center;
}
.aw-nav .logo .puck .vs-mark { width: 21px; height: 21px; }
.aw-nav .logo b { font-size: 13.5px; font-weight: 700; letter-spacing: -.02em; }
.aw-nav .logo b span { color: var(--orange); }
.aw-nav .search {
  display: flex; align-items: center; gap: 7px; background: #14141e; border: 1px solid var(--border);
  border-radius: 8px; padding: 0 11px; height: 30px; flex: 1; max-width: 220px; margin-left: 6px; min-width: 0;
}
.aw-nav .search svg { width: 13px; height: 13px; color: var(--text-faint); flex-shrink: 0; display: block; }
.aw-nav .search span { font-size: 12px; line-height: 1; color: var(--text-faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.aw-nav .spacer { flex: 1; }
.aw-nav .addbtn {
  display: flex; align-items: center; gap: 6px; padding: 7px 13px; border-radius: 8px;
  background: var(--orange); color: #0d0d12; font-size: 12px; font-weight: 600;
}
.aw-nav .addbtn svg { width: 13px; height: 13px; }

.aw-body {
  padding: 18px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px;
  background-image: radial-gradient(circle, rgba(255,255,255,.013) 1px, transparent 0);
  background-size: 26px 26px;
}

/* Profile card (mini, real anatomy) */
.pcard {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: 13px; padding: 16px 13px 13px; display: flex; flex-direction: column;
  align-items: center; overflow: hidden; transition: border-color .18s, background .18s, box-shadow .18s;
}
.pcard:hover { border-color: var(--border-h); background: var(--surface-2); }
.pcard.active {
  border-color: rgba(245,130,10,.4) !important;
  background: linear-gradient(180deg, #221408 0%, #1a1510 36%, var(--surface) 72%);
}
.pcard .topbar {
  position: absolute; top: 0; left: 12px; right: 12px; height: 2px; border-radius: 0 0 2px 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0; transition: opacity .2s;
}
.pcard.active .topbar { opacity: 1; }
.pcard .ico {
  width: 64px; height: 64px; border-radius: 16px; background: #1c1c2a; border: 1px solid #282838;
  display: flex; align-items: center; justify-content: center; overflow: hidden; transition: all .18s;
}
.pcard.active .ico { border-color: var(--orange-border); box-shadow: 0 0 16px rgba(245,130,10,.12); }
.pcard .ico svg { width: 44px; height: 44px; }
.pcard .pname { font-size: 13px; font-weight: 600; margin-top: 11px; margin-bottom: 6px; text-align: center; }
.pcard .badge {
  font-size: 9px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 10px; margin-bottom: 9px;
}
.badge-both { background: var(--orange-dim); color: var(--orange); border: 1px solid var(--orange-border); }
.badge-pb   { background: rgba(74,168,255,.1); color: var(--blue); border: 1px solid rgba(74,168,255,.2); }
.badge-rec  { background: rgba(48,210,120,.1); color: var(--mint); border: 1px solid rgba(48,210,120,.2); }
.pcard .devs { display: flex; flex-direction: column; gap: 4px; width: 100%; align-items: center; }
.pcard .dev { display: flex; align-items: center; gap: 6px; max-width: 100%; }
.pcard .dev .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dot-pb { background: var(--blue); } .dot-rec { background: var(--mint); }
.pcard .dev span { font-size: 10.5px; color: var(--text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pcard .hk {
  margin-top: 10px; font-family: var(--mono); font-size: 10px; color: #9898b4;
  padding: 3px 9px; border-radius: 5px; background: #14141e; border: 1px solid var(--border); letter-spacing: .02em;
  white-space: nowrap;
}
.pcard .hk.flash { animation: hkFlash .5s ease; }
@keyframes hkFlash { 0%,100%{background:#14141e;border-color:var(--border);} 40%{background:var(--orange-dim);border-color:var(--orange-border);color:var(--orange);} }

/* switch toast */
.aw-toast {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%) translateY(14px);
  display: flex; align-items: center; gap: 9px; padding: 9px 15px; border-radius: 10px;
  background: rgba(12,32,24,.96); border: 1px solid rgba(45,202,114,.3);
  font-size: 12.5px; color: var(--green); font-weight: 500; opacity: 0; pointer-events: none;
  box-shadow: 0 12px 40px rgba(0,0,0,.5); z-index: 30; white-space: nowrap;
}
.aw-toast.show { animation: toastUp 2.4s var(--ease); }
@keyframes toastUp {
  0%{opacity:0;transform:translateX(-50%) translateY(14px);}
  12%,82%{opacity:1;transform:translateX(-50%) translateY(0);}
  100%{opacity:0;transform:translateX(-50%) translateY(8px);}
}
.aw-toast svg { width: 15px; height: 15px; }

/* ── WHAT IS — two col ──────────────────────────────────────── */
.what-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.loop-points { margin-top: 30px; display: flex; flex-direction: column; gap: 2px; }
.loop-point {
  display: flex; align-items: flex-start; gap: 15px; padding: 14px 0;
  border-top: 1px solid var(--hairline); transition: opacity .3s;
}
.loop-point .num {
  width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; font-family: var(--mono);
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text-mut); transition: all .3s;
}
.loop-point.lit .num { background: var(--orange-dim); border-color: var(--orange-border); color: var(--orange); }
.loop-point .lp-body b { font-size: 15px; font-weight: 600; display: block; margin-bottom: 3px; }
.loop-point .lp-body p { font-size: 13.5px; color: var(--text-mut); line-height: 1.55; }

/* ── FEATURES ───────────────────────────────────────────────── */
.feat-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 50px; flex-wrap: wrap; }
.feat-list { display: flex; flex-direction: column; gap: 30px; }
.feat-row {
  display: grid; grid-template-columns: 1fr 1.25fr; gap: 48px; align-items: center;
  padding: 34px; border: 1px solid var(--border); border-radius: 20px;
  background: linear-gradient(180deg, rgba(22,22,30,.6), rgba(13,13,18,.3));
  transition: border-color .3s;
}
.feat-row:hover { border-color: var(--border-h); }
.feat-row.flip { grid-template-columns: 1.25fr 1fr; }
.feat-row.flip .feat-info { order: 2; }
.feat-row.flip .feat-demo { order: 1; }

.feat-info .fi-icon {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: var(--orange-dim); border: 1px solid var(--orange-border); margin-bottom: 18px;
}
.feat-info .fi-icon svg { width: 24px; height: 24px; color: var(--orange); }
.feat-info h3 { font-size: 25px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 11px; }
.feat-info > p { font-size: 15px; color: var(--text-dim); line-height: 1.65; margin-bottom: 20px; text-wrap: pretty; }

/* how-to steps */
.howto { display: flex; flex-direction: column; gap: 0; }
.howto-step {
  display: flex; align-items: center; gap: 12px; padding: 9px 0;
  font-size: 13.5px; color: var(--text-mut); transition: color .3s;
}
.howto-step .step-dot {
  width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; font-family: var(--mono);
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text-faint); transition: all .3s;
}
.howto-step.on { color: var(--text); }
.howto-step.on .step-dot { background: var(--orange); border-color: var(--orange); color: #0d0d12; }

/* demo stage */
.feat-demo {
  position: relative; aspect-ratio: 16/11; border-radius: 16px; overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0%, #15151f 0%, #0b0b10 70%);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
}
.demo-caption {
  position: absolute; left: 16px; bottom: 14px; z-index: 20;
  font-size: 12px; color: var(--text-mut); font-family: var(--mono); letter-spacing: .02em;
  background: rgba(9,9,14,.7); padding: 5px 10px; border-radius: 7px; border: 1px solid var(--border);
  backdrop-filter: blur(6px); transition: opacity .25s;
}
.demo-replay {
  position: absolute; top: 12px; right: 12px; z-index: 20; width: 30px; height: 30px; border-radius: 8px;
  background: rgba(9,9,14,.6); border: 1px solid var(--border); color: var(--text-mut);
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .15s;
}
.demo-replay:hover { color: var(--orange); border-color: var(--orange-border); }
.demo-replay svg { width: 15px; height: 15px; }

/* more features grid */
/* ── INSPIRATION ────────────────────────────────────────────── */
#inspiration { background: linear-gradient(180deg, transparent, rgba(245,130,10,.018) 50%, transparent); }
.insp-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.insp-aside { position: sticky; top: 110px; }
.insp-aside .quote-mark { font-size: 100px; line-height: .6; color: var(--orange); font-weight: 700; opacity: .9; font-family: Georgia, serif; }
.insp-aside .author { margin-top: 26px; }
.insp-aside .author b { font-size: 15px; font-weight: 600; display: block; }
.insp-aside .author span { font-size: 13px; color: var(--text-mut); }
.insp-body p { font-size: clamp(18px, 2.2vw, 23px); line-height: 1.6; color: var(--text); margin-bottom: 26px; text-wrap: pretty; font-weight: 300; letter-spacing: -.01em; }
.insp-body p .hl { color: var(--orange); font-weight: 500; }
.insp-body p strong { font-weight: 600; }

/* ── DOWNLOAD ───────────────────────────────────────────────── */
#download { text-align: center; }
.dl-panel {
  max-width: 860px; margin: 0 auto; padding: 64px 48px;
  border: 1px solid var(--orange-border); border-radius: 26px;
  background: radial-gradient(120% 130% at 50% -10%, rgba(245,130,10,.07), transparent 60%), var(--surface);
  position: relative; overflow: hidden;
}
.dl-puck {
  width: 78px; height: 78px; border-radius: 20px; background: var(--puck); border: 1px solid var(--orange-border);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 26px;
}
.dl-puck .vs-mark { width: 58px; height: 58px; }
.dl-panel h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 700; letter-spacing: -.03em; margin-bottom: 14px; }
.dl-panel .dl-sub { font-size: 17px; color: var(--text-dim); max-width: 460px; margin: 0 auto 34px; line-height: 1.6; }
.dl-actions { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.dl-opts { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.dl-opt {
  display: flex; align-items: center; gap: 11px; padding: 13px 18px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--inset); text-align: left; transition: border-color .2s;
}
.dl-opt:hover { border-color: var(--border-h); }
.dl-opt svg { width: 20px; height: 20px; color: var(--text-mut); flex-shrink: 0; }
.dl-opt b { font-size: 13.5px; font-weight: 600; display: block; }
.dl-opt span { font-size: 11.5px; color: var(--text-mut); }
.dl-meta {
  margin-top: 30px; display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  font-size: 12.5px; color: var(--text-mut);
}
.dl-meta span { display: flex; align-items: center; gap: 7px; }
.dl-meta svg { width: 14px; height: 14px; color: var(--green); }
.dl-note { margin-top: 18px; font-size: 12px; color: var(--text-faint); }
.dl-note code { font-family: var(--mono); color: var(--text-mut); }

/* ── ABOUT / FOOTER ─────────────────────────────────────────── */
#about { padding-bottom: 60px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-links { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.about-link {
  display: flex; align-items: center; gap: 13px; padding: 16px 18px; border-radius: 13px;
  border: 1px solid var(--border); background: var(--surface); transition: all .18s;
}
.about-link:hover { border-color: var(--orange-border); background: var(--surface-2); }
.about-link svg { width: 19px; height: 19px; color: var(--text-mut); transition: color .18s; }
.about-link:hover svg { color: var(--orange); }
.about-link b { font-size: 14px; font-weight: 600; display: block; }
.about-link span { font-size: 12px; color: var(--text-mut); }

.footer {
  margin-top: 90px; border-top: 1px solid #16162a; padding: 40px 0 0; overflow: hidden;
}
.footer-in { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 13px; }
.footer-logo { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-logo .puck { width: 54px; height: 54px; border-radius: 15px; background: var(--puck); border: 1px solid var(--orange-border); display: flex; align-items: center; justify-content: center; }
.footer-logo .puck .vs-mark { width: 40px; height: 40px; }
.footer-logo b { font-size: 19px; font-weight: 700; letter-spacing: -.02em; }
.footer-logo b span { color: var(--orange); }
.footer-logo .copy { font-size: 13px; color: var(--text-mut); margin-top: 2px; }
/* Full-width equalizer across the very bottom — only animates when the bottom is in view */
.footer-eq {
  display: flex; align-items: flex-end; gap: 2px; height: 84px; width: 100%;
  margin-top: 38px; padding: 0 6px;
  opacity: 0; transform: translateY(10px); transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.footer-eq.lit { opacity: 1; transform: none; }
.footer-eq i {
  flex: 1 1 0; height: 100%; border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--orange), rgba(245,130,10,.28));
  opacity: .8; transform-origin: 50% 100%; transform: scaleY(.08);
}
.footer-eq.lit i { animation: footBar var(--d, 2s) ease-in-out infinite; }
@keyframes footBar { 0%,100%{transform:scaleY(.08);} 50%{transform:scaleY(1);} }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 920px) {
  .hero-grid, .what-grid, .feat-row, .feat-row.flip, .insp-grid, .about-grid { grid-template-columns: 1fr; gap: 38px; }
  .feat-row.flip .feat-info, .feat-row.flip .feat-demo { order: 0; }
  .insp-aside { position: static; }
  .hero-actions { }
  .nav-items { display: none; }
  }
@media (max-width: 560px) {
  .section { padding: 84px 18px; }
  .about-links { grid-template-columns: 1fr; }
  .dl-panel { padding: 44px 22px; }
  .feat-row { padding: 22px; }
}


/* ── Demo: profile modal mode pills (match app) ── */
.dm-title-area { flex: 1; min-width: 0; }
.dm-modes { display: flex; gap: 6px; margin-top: 8px; }
.dm-pill { padding: 3px 9px; border-radius: 20px; font-size: 10.5px; font-weight: 600; border: 1px solid var(--border); color: var(--text-mut); }
.dm-pill.both.on { border-color: var(--orange-border); background: var(--orange-dim); color: var(--orange); }
.dm-pill.pb.on { border-color: rgba(74,168,255,.3); background: rgba(74,168,255,.1); color: var(--blue); }
.dm-pill.rec.on { border-color: rgba(48,210,120,.3); background: rgba(48,210,120,.1); color: var(--mint); }

/* ── Demo: schedule wizard (match ScheduleWizardDialog) ── */
.d-sched .sw-modal { width: 256px; background: #17171f; border: 1px solid var(--orange-border); border-radius: 14px; padding: 17px; box-shadow: 0 20px 60px rgba(0,0,0,.5); transition: opacity .4s, transform .4s; }
.d-sched .sw-modal.gone { opacity: 0; transform: scale(.9); position: absolute; }
.d-sched .sw-head { display: flex; align-items: center; gap: 11px; margin-bottom: 15px; }
.d-sched .sw-ico { width: 36px; height: 36px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.d-sched .sw-ico svg { width: 18px; height: 18px; }
.d-sched .sw-title { font-size: 14px; font-weight: 600; }
.d-sched .sw-sub { font-size: 10.5px; color: var(--text-mut); margin-top: 1px; }
.d-sched .sw-dots { display: flex; justify-content: center; gap: 7px; margin-bottom: 16px; }
.d-sched .sw-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--surface-3); transition: background .25s; }
.d-sched .sw-dots i.on { background: var(--orange); }
.d-sched .sw-time { display: flex; align-items: center; justify-content: center; gap: 9px; margin-bottom: 15px; }
.d-sched .sw-combo { width: 66px; height: 46px; border-radius: 8px; background: #101018; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 21px; font-weight: 600; font-family: var(--mono); transition: border-color .25s, box-shadow .25s; }
.d-sched .sw-combo.hot { border-color: var(--orange-border); box-shadow: 0 0 0 3px var(--orange-dim); }
.d-sched .sw-colon { font-size: 22px; font-weight: 700; color: var(--text-mut); }
.d-sched .sw-days { display: flex; justify-content: center; gap: 5px; margin-bottom: 16px; }
.d-sched .sw-days span { width: 28px; height: 28px; border-radius: 7px; background: var(--surface-2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; color: var(--text-mut); transition: all .2s; }
.d-sched .sw-days span.on { background: var(--orange-dim); border-color: var(--orange-border); color: var(--orange); }
.d-sched .sw-save { width: 100%; padding: 9px; border-radius: 8px; border: none; background: var(--orange); color: #160c02; font-weight: 600; font-size: 12.5px; font-family: inherit; cursor: pointer; transition: transform .15s, background .15s; }
.d-sched .sw-save.press { transform: scale(.94); background: var(--orange-press); }
.d-sched .sched-saved { position: absolute; opacity: 0; transform: scale(.85); transition: opacity .45s var(--ease), transform .45s var(--ease-snap); display: flex; flex-direction: column; align-items: center; gap: 14px; pointer-events: none; }
.d-sched .sched-saved.show { opacity: 1; transform: scale(1); }
.d-sched .sched-banner { opacity: 0; transition: opacity .3s; font-size: 11.5px; color: var(--orange); background: rgba(31,19,8,.95); border: 1px solid var(--orange-border); border-radius: 9px; padding: 7px 13px; white-space: nowrap; }
.d-sched .sched-banner.show { opacity: 1; }


/* ── Demo + steps as one stacked unit (easier to follow) ── */
.feat-stage { display: flex; flex-direction: column; gap: 16px; }
.feat-stage .howto { background: linear-gradient(180deg, var(--surface), rgba(13,13,18,.3)); border: 1px solid var(--border); border-radius: 14px; padding: 4px 18px; }
.feat-stage .howto-step { border-bottom: 1px solid var(--hairline); padding: 12px 0; }
.feat-stage .howto-step:last-child { border-bottom: none; }



/* ── Steps INSIDE the demo: synced step bar ── */
.howto-src { display: none !important; }
.feat-demo .demo-caption { display: none; }
.demo-steps { position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 26; display: flex; align-items: center; gap: 12px; padding: 9px 14px; border-radius: 11px; background: rgba(9,9,14,.82); backdrop-filter: blur(10px); border: 1px solid var(--border); }
.demo-steps .ds-dots { display: flex; gap: 6px; flex-shrink: 0; }
.demo-steps .ds-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--text-faint); transition: background .3s, transform .3s, box-shadow .3s; }
.demo-steps .ds-dot.done { background: var(--orange); }
.demo-steps .ds-dot.cur { transform: scale(1.25); box-shadow: 0 0 0 3px var(--orange-dim); }
.demo-steps .ds-label { font-size: 12.5px; font-weight: 500; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }


/* ── "What is VibeSwitcher" core demo: one key, two roles ── */
.wl2 { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 26px; width: 100%; }
.wl2-trigger { display: flex; gap: 7px; padding: 11px 15px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--border); transition: border-color .25s, box-shadow .25s; }
.wl2-trigger.hot { border-color: var(--orange-border); box-shadow: 0 0 0 4px var(--orange-dim); }
.wl2-trigger kbd { font-family: var(--mono); font-size: 13px; color: var(--text); background: #1c1c28; border: 1px solid #363650; border-bottom-width: 2px; border-radius: 6px; padding: 6px 11px; transition: background .12s, color .12s, transform .12s, border-color .12s; }
.wl2-trigger.press kbd { background: var(--orange); color: #160c02; border-color: var(--orange); transform: translateY(2px); }
.wl2-arrow { color: var(--orange); opacity: .3; transition: opacity .3s; }
.wl2-arrow.go { opacity: 1; }
.wl2-arrow svg { width: 22px; height: 22px; display: block; }
.wl2-lanes { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 300px; }
.wl2-lane { display: flex; align-items: center; gap: 11px; padding: 13px 16px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); transition: border-color .3s, background .3s; }
.wl2-lane.flash { border-color: var(--orange-border); background: #1a1510; }
.wl2-lane::before { content: ''; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.wl2-lane.pb::before { background: var(--blue); }
.wl2-lane.rec::before { background: var(--mint); }
.wl2-role { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-mut); width: 78px; flex-shrink: 0; }
.wl2-dev { font-size: 14px; font-weight: 600; color: var(--text); }
