/* ============================================================================
   THE ASCENSION — Simulator UI
   Immersive incremental-game shell: HUD, tabs, panels, abilities, events, juice
   ========================================================================== */

/* ---------- container + fullscreen ---------- */
.sim {
  position: relative;
  border-radius: 26px;
  background: radial-gradient(130% 100% at 50% -10%, rgba(123,63,242,.22), rgba(10,10,31,.0) 60%), rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow .3s;
}
.sim.fullscreen {
  position: fixed; inset: 0; z-index: 200;
  border-radius: 0; border: none; height: 100dvh;
  display: flex; flex-direction: column;
  background-color: #0a0a1f;
  background-image: radial-gradient(130% 100% at 50% -10%, #1a1140 0%, #0a0a1f 70%);
  animation: simIn .35s ease;
}
@keyframes simIn { from { opacity: 0; transform: scale(.98); } to { opacity: 1; transform: none; } }
body.sim-open { overflow: hidden; }

/* ---------- top HUD ---------- */
.sim-hud {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(8,8,22,.7), rgba(8,8,22,.2));
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative; z-index: 5;
}
.hud-k { display: flex; align-items: center; gap: 12px; }
.hud-k .kbadge {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; line-height: 1;
  padding: 8px 14px; border-radius: 14px; color: #fff;
  background: linear-gradient(92deg, var(--t0), var(--t1)); box-shadow: 0 8px 20px -10px var(--t1);
  min-width: 116px; text-align: center; transition: background .6s;
}
.hud-k .tiername { font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.hud-k .tiername small { display: block; font-weight: 500; color: rgba(255,255,255,.55); font-size: .76rem; }
.hud-metrics { display: flex; gap: 10px; flex-wrap: wrap; margin-left: auto; }
.metric {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 7px 13px; min-width: 92px;
}
.metric .l { font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.metric .v { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; }
.metric.energy .v { color: var(--energy); }
.metric.rate .v { color: var(--t1); }
.metric.power .v { color: #fff; }
.hud-tools { display: flex; gap: 8px; }
.hud-btn {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); color: #fff;
  font-size: 1.05rem; transition: background .2s, transform .1s;
}
.hud-btn:hover { background: rgba(255,255,255,.14); }
.hud-btn:active { transform: scale(.92); }
.hud-btn.on { background: rgba(255,240,77,.18); border-color: rgba(255,240,77,.45); color: var(--energy); }

/* ---------- K progress rail ---------- */
.krail { position: relative; padding: 12px 22px 18px; }
.krail .track { position: relative; height: 14px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: visible; }
.krail .fill { position: absolute; inset: 0 auto 0 0; width: 0%; border-radius: 999px; background: linear-gradient(90deg, var(--t0), var(--t1), var(--t2), var(--t3)); transition: width .3s ease; box-shadow: 0 0 16px rgba(123,63,242,.5); }
.krail .marker { position: absolute; top: 50%; transform: translate(-50%,-50%); width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.18), 0 4px 12px rgba(0,0,0,.4); transition: left .3s ease; }
.krail .ticks { display: flex; justify-content: space-between; margin-top: 8px; font-family: var(--font-display); font-size: .72rem; color: rgba(255,255,255,.45); }
.krail .ticks b { color: rgba(255,255,255,.8); }
.krail .nextgoal { position: absolute; right: 22px; top: -2px; font-size: .72rem; color: rgba(255,255,255,.55); }

/* ---------- body grid ---------- */
.sim-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 18px; padding: 4px 18px 18px; }
.sim.fullscreen .sim-grid { flex: 1; min-height: 0; overflow: hidden; }
@media (max-width: 940px) { .sim-grid { grid-template-columns: 1fr; } }

/* ---------- central stage ---------- */
.stage { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; border-radius: 20px; background: radial-gradient(100% 80% at 50% 30%, rgba(255,255,255,.04), transparent); padding: 12px; min-height: 320px; }
.stage-core { position: relative; width: min(330px, 70vw); aspect-ratio: 1; display: grid; place-items: center; cursor: pointer; user-select: none; touch-action: manipulation; }
.stage-core #coreArt { width: 80%; height: 80%; transition: filter .3s; filter: drop-shadow(0 0 30px rgba(255,240,77,.3)); }
.stage-core:active #coreArt { transform: scale(.97); }
.stage-core.punch #coreArt { animation: punch .18s ease; }
@keyframes punch { 0% { transform: scale(1); } 45% { transform: scale(1.07); } 100% { transform: scale(1); } }
.stage-core::after { content: ""; position: absolute; inset: 10%; border-radius: 50%; background: radial-gradient(circle, rgba(255,240,77,.12), transparent 70%); pointer-events: none; animation: corePulse 4s ease-in-out infinite; }
.stage-hint { font-size: .8rem; color: rgba(255,255,255,.55); letter-spacing: .08em; text-transform: uppercase; }
.stage-tagline { font-family: var(--font-display); font-weight: 600; font-size: .98rem; color: rgba(255,255,255,.8); text-align: center; max-width: 30ch; min-height: 1.4em; }

/* clicked floating numbers */
.float-energy { position: absolute; pointer-events: none; font-family: var(--font-display); font-weight: 700; color: var(--energy); text-shadow: 0 2px 8px rgba(0,0,0,.5); animation: floatUp 1s ease-out forwards; z-index: 6; }
@keyframes floatUp { from { opacity: 1; transform: translate(-50%,0) scale(1); } to { opacity: 0; transform: translate(-50%,-70px) scale(1.35); } }

/* ability dock */
.ability-dock { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.ability {
  position: relative; display: flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 12px; font-weight: 600; font-size: .86rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); color: #fff;
  overflow: hidden; transition: transform .1s, border-color .2s;
}
.ability:not(:disabled):hover { border-color: rgba(255,255,255,.35); }
.ability:not(:disabled):active { transform: scale(.96); }
.ability .ic { font-size: 1.1rem; }
.ability.active { border-color: var(--energy); box-shadow: 0 0 18px -4px var(--energy); }
.ability:disabled { cursor: not-allowed; color: rgba(255,255,255,.5); }
.ability .cd { position: absolute; inset: 0 auto 0 0; background: rgba(0,0,0,.55); width: 0%; pointer-events: none; }

/* floating golden clickable (comet / signal) */
.comet {
  position: absolute; z-index: 8; width: 56px; height: 56px; cursor: pointer;
  display: grid; place-items: center; font-size: 1.7rem;
  filter: drop-shadow(0 0 14px var(--energy)); animation: cometBob 1.4s ease-in-out infinite;
}
.comet::after { content: ""; position: absolute; inset: -8px; border-radius: 50%; background: radial-gradient(circle, rgba(255,240,77,.4), transparent 70%); }
@keyframes cometBob { 0%,100%{ transform: translateY(0) rotate(-6deg);} 50%{ transform: translateY(-10px) rotate(6deg);} }

/* ---------- panel + tabs ---------- */
.panel { display: flex; flex-direction: column; min-height: 0; background: rgba(0,0,0,.18); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; overflow: hidden; }
.tabbar { display: flex; gap: 2px; padding: 6px; background: rgba(0,0,0,.25); overflow-x: auto; scrollbar-width: none; }
.tabbar::-webkit-scrollbar { display: none; }
.tab {
  flex: 1; min-width: max-content; white-space: nowrap;
  padding: 9px 14px; border-radius: 11px; font-weight: 600; font-size: .84rem;
  background: transparent; color: rgba(255,255,255,.6); transition: background .2s, color .2s; position: relative;
}
.tab:hover { color: #fff; }
.tab.active { background: rgba(255,255,255,.1); color: #fff; }
.tab .pip { position: absolute; top: 5px; right: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--energy); box-shadow: 0 0 8px var(--energy); animation: pipPulse 1.2s infinite; }
@keyframes pipPulse { 0%,100%{ opacity:.5; transform:scale(.8);} 50%{ opacity:1; transform:scale(1.1);} }
.tab-wrap { flex: 1; min-height: 0; overflow-y: auto; padding: 12px; }
.tab-wrap::-webkit-scrollbar { width: 8px; }
.tab-wrap::-webkit-scrollbar-thumb { background: rgba(255,255,255,.14); border-radius: 8px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: tabFade .25s ease; }
@keyframes tabFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* wallet bar above build list */
.wallet {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 11px 14px; border-radius: 13px; margin-bottom: 12px;
  background: rgba(255,240,77,.09); border: 1px solid rgba(255,240,77,.22);
}
.wallet .amt { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--energy); }
.wallet .sub { font-size: .8rem; color: rgba(255,255,255,.7); }
.buyamt { display: flex; gap: 4px; }
.buyamt button { padding: 5px 9px; border-radius: 8px; font-size: .76rem; font-weight: 700; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: #fff; }
.buyamt button.active { background: var(--t1); border-color: var(--t1); color: var(--ink); }

/* generator row (enhanced) */
.gen2 {
  position: relative; display: grid; grid-template-columns: 46px 1fr auto; gap: 12px; align-items: center;
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 11px 13px; margin-bottom: 9px; text-align: left; width: 100%;
  transition: border-color .15s, background .15s, transform .08s; overflow: hidden;
}
.gen2:not(:disabled):hover { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.07); }
.gen2:not(:disabled):active { transform: scale(.992); }
.gen2:disabled { opacity: .5; cursor: not-allowed; }
.gen2 .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 1.45rem; background: rgba(255,255,255,.07); position: relative; }
.gen2 .ic .lv { position: absolute; bottom: -4px; right: -4px; font-family: var(--font-display); font-size: .64rem; font-weight: 700; background: var(--t2); color: var(--ink); border-radius: 6px; padding: 1px 4px; }
.gen2 .meta h4 { margin: 0; font-size: .96rem; font-weight: 600; }
.gen2 .meta small { color: rgba(255,255,255,.6); font-size: .78rem; }
.gen2 .meta .ms { display: block; margin-top: 4px; height: 4px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; }
.gen2 .meta .ms i { display: block; height: 100%; background: var(--t2); border-radius: 999px; }
.gen2 .buy { text-align: right; white-space: nowrap; }
.gen2 .buy .cost { font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--energy); }
.gen2 .buy .cost.cant { color: var(--hazard); }
.gen2 .buy .own { font-size: .76rem; color: rgba(255,255,255,.55); }
.gen2.maxed .ic::before { content: "★"; position: absolute; top: -6px; left: -6px; color: var(--t2); font-size: .8rem; }

/* tech / upgrade cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.tcard {
  position: relative; border-radius: 14px; padding: 13px; text-align: left;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  transition: transform .12s, border-color .2s; min-height: 96px;
}
.tcard:not(:disabled):hover { transform: translateY(-3px); border-color: rgba(255,255,255,.3); }
.tcard:disabled { opacity: .5; cursor: not-allowed; }
.tcard.owned { border-color: rgba(103,201,143,.5); background: rgba(103,201,143,.08); }
.tcard .ti { font-size: 1.2rem; }
.tcard h5 { margin: 5px 0 3px; font-size: .9rem; font-weight: 700; font-family: var(--font-display); }
.tcard p { margin: 0; font-size: .76rem; color: rgba(255,255,255,.65); }
.tcard .c { display: block; margin-top: 7px; font-family: var(--font-display); font-weight: 700; font-size: .82rem; color: var(--energy); }
.tcard.owned .c { color: #67c98f; }
.tcard .lock { font-size: .72rem; color: var(--hazard); margin-top: 7px; }

/* perks (prestige) */
.perk-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; padding: 12px 14px; border-radius: 13px; background: rgba(192,97,245,.1); border: 1px solid rgba(192,97,245,.3); }
.perk-head .sing { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: #e6b3ff; }

/* codex (learn-by-playing) */
.codex-card { border-radius: 14px; padding: 15px 16px; margin-bottom: 10px; background: rgba(52,179,241,.07); border: 1px solid rgba(52,179,241,.22); }
.codex-card.locked { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.08); opacity: .6; }
.codex-card h5 { margin: 0 0 5px; font-family: var(--font-display); font-size: .98rem; }
.codex-card p { margin: 0; font-size: .86rem; color: rgba(255,255,255,.78); }
.codex-card .badge { font-size: .68rem; font-family: var(--font-display); letter-spacing: .08em; text-transform: uppercase; color: var(--t1); }

/* stats */
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.stat { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 11px 13px; }
.stat .l { font-size: .72rem; color: rgba(255,255,255,.55); }
.stat .v { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.sim-foot-tools { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }

/* ---------- events modal ---------- */
.event-backdrop { position: fixed; inset: 0; z-index: 240; background: rgba(5,6,16,.7); backdrop-filter: blur(4px); display: grid; place-items: center; padding: 20px; animation: tabFade .25s; }
.event-modal {
  max-width: 460px; width: 100%; border-radius: 22px; overflow: hidden;
  background: linear-gradient(180deg, #161033, #0e0a22); border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow-card); animation: simIn .3s ease;
}
.event-modal .top { padding: 22px 22px 6px; }
.event-modal .ico { font-size: 2.2rem; margin-bottom: 8px; }
.event-modal h3 { font-size: 1.3rem; margin: 0 0 8px; }
.event-modal p { color: rgba(255,255,255,.82); font-size: .95rem; margin: 0 0 6px; }
.event-modal .choices { display: grid; gap: 9px; padding: 14px 22px 22px; }
.event-choice { text-align: left; padding: 13px 15px; border-radius: 13px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); color: #fff; font-weight: 600; font-size: .92rem; transition: background .15s, transform .1s; }
.event-choice:hover { background: rgba(255,255,255,.13); transform: translateX(3px); }
.event-choice small { display: block; font-weight: 500; color: rgba(255,255,255,.6); font-size: .78rem; margin-top: 2px; }

/* ---------- great filter meter ---------- */
.filter-meter { display: flex; align-items: center; gap: 10px; padding: 9px 14px; border-radius: 12px; background: rgba(255,84,112,.1); border: 1px solid rgba(255,84,112,.3); }
.filter-meter .lbl { font-size: .76rem; font-weight: 700; color: #ffb4c1; white-space: nowrap; }
.filter-meter .bar { flex: 1; height: 9px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; }
.filter-meter .bar i { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, #67c98f, var(--energy), var(--hazard)); transition: width .4s; }

/* ---------- fx layer / juice ---------- */
.fx-layer { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 7; }
.particle { position: absolute; width: 8px; height: 8px; border-radius: 50%; will-change: transform, opacity; }
@keyframes shake { 0%,100%{ transform: translate(0,0);} 20%{ transform: translate(-4px,2px);} 40%{ transform: translate(4px,-2px);} 60%{ transform: translate(-3px,-2px);} 80%{ transform: translate(3px,2px);} }
.shake { animation: shake .4s; }
.flash-overlay { position: fixed; inset: 0; z-index: 230; pointer-events: none; background: radial-gradient(circle at 50% 45%, rgba(255,255,255,.5), transparent 60%); opacity: 0; }
.flash-overlay.go { animation: flashGo .7s ease-out; }
@keyframes flashGo { 0%{ opacity: 0; } 15%{ opacity: 1; } 100%{ opacity: 0; } }

/* odometer-ish counter pop */
.pop { animation: popNum .25s ease; }
@keyframes popNum { 0%{ transform: scale(1);} 40%{ transform: scale(1.12); } 100%{ transform: scale(1);} }

/* ---------- launch banner on the page (when not fullscreen) ---------- */
.sim-launchbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(92deg, rgba(192,97,245,.14), rgba(52,179,241,.1));
}
.sim-launchbar .lt { font-family: var(--font-display); font-weight: 600; font-size: .95rem; }
.sim-launchbar .lt b { color: var(--energy); }
.btn-fs { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 999px; font-weight: 700; font-size: .9rem; background: linear-gradient(92deg, var(--t3), var(--t3b)); color: #fff; box-shadow: 0 10px 26px -12px var(--t3b); transition: transform .15s; }
.btn-fs:hover { transform: translateY(-2px); }
.sim.fullscreen .sim-launchbar .btn-fs::before { content: "Exit "; }

/* exit hint in fullscreen */
.sim-exit { display: none; }
.sim.fullscreen .sim-exit { display: inline-flex; }

/* mobile: bottom tab feel + tighter HUD */
@media (max-width: 640px) {
  .sim-hud { padding: 11px 13px; gap: 10px; }
  .hud-k .kbadge { font-size: 1.2rem; min-width: 92px; padding: 7px 10px; }
  .hud-metrics { width: 100%; margin-left: 0; }
  .metric { flex: 1; min-width: 0; padding: 6px 9px; }
  .stage { min-height: 260px; }
  .tab { padding: 8px 11px; font-size: .8rem; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .comet, .stage-core::after, .tab .pip { animation: none !important; }
  .shake { animation: none !important; }
}

/* ---------- goal chip under K rail ---------- */
.goalchip {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .82rem;
  padding: 6px 13px; border-radius: 999px;
  background: rgba(255,240,77,.1); border: 1px solid rgba(255,240,77,.28); color: var(--energy);
}
.goalchip b { color: #fff; }
.krail .track .marker.km-next { background: var(--energy); }

/* k badge gold flash on integer increment */
.kbadge.flash { animation: kFlash .6s ease; }
@keyframes kFlash { 0%{ filter: brightness(1);} 30%{ filter: brightness(2.2) drop-shadow(0 0 14px var(--energy)); transform: scale(1.06);} 100%{ filter: brightness(1); transform: none;} }

/* particle canvas over the stage */
.fx-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 6; }

/* smog tint during high entropy */
.stage .smog { position: absolute; inset: 0; border-radius: 20px; pointer-events: none; background: radial-gradient(circle at 50% 60%, rgba(90,70,40,.0), rgba(50,40,25,.0)); transition: background .8s; z-index: 2; }
.stage.smoggy .smog { background: radial-gradient(circle at 50% 65%, rgba(120,90,40,.18), rgba(40,30,15,.42)); }

/* onboarding tap ring */
.tap-ring { position: absolute; inset: 0; margin: auto; width: 70%; height: 70%; border-radius: 50%; border: 3px dashed rgba(255,240,77,.7); pointer-events: none; z-index: 7; animation: tapRing 1.4s ease-in-out infinite; }
@keyframes tapRing { 0%,100%{ transform: scale(.92); opacity: .5; } 50%{ transform: scale(1.05); opacity: 1; } }
.onboard-hint { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); white-space: nowrap; font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--energy); z-index: 8; pointer-events: none; text-shadow: 0 2px 8px rgba(0,0,0,.6); }

/* full-screen survival banner */
.gf-banner {
  position: fixed; inset: 0; z-index: 250; display: grid; place-items: center; text-align: center;
  background: radial-gradient(circle at 50% 45%, rgba(103,201,143,.25), rgba(5,6,16,.92));
  animation: tabFade .4s; padding: 24px;
}
.gf-banner .inner { max-width: 460px; }
.gf-banner h2 { font-size: clamp(1.8rem, 6vw, 3rem); background: linear-gradient(92deg, var(--t0), var(--t1)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gf-banner p { color: rgba(255,255,255,.85); }
.gf-banner button { margin-top: 18px; padding: 13px 26px; border-radius: 999px; font-weight: 700; background: linear-gradient(92deg, var(--t0), var(--t1)); color: var(--ink); }

/* resume pill (appears after scrolling past the game) */
.resume-pill {
  position: fixed; left: 18px; bottom: 18px; z-index: 90;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 17px; border-radius: 999px; font-weight: 700; font-size: .88rem;
  background: linear-gradient(92deg, var(--t3), var(--t1)); color: #fff;
  box-shadow: 0 14px 30px -12px rgba(0,0,0,.6); transition: transform .15s, opacity .3s;
  animation: pillIn .4s ease;
}
.resume-pill:hover { transform: translateY(-2px); }
.resume-pill .k { font-family: var(--font-display); }
@keyframes pillIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* body.playing — immersive: fade the page chrome behind fullscreen */
body.playing .nav, body.playing .scroll-cue { opacity: 0; pointer-events: none; }

/* transcend button in perk head */
.btn-transcend { padding: 10px 16px; border-radius: 12px; font-weight: 700; font-size: .85rem; background: linear-gradient(92deg, var(--t3), var(--t3b)); color: #fff; box-shadow: 0 8px 20px -10px var(--t3b); }
.btn-transcend:disabled { opacity: .45; cursor: not-allowed; filter: grayscale(.4); }
.btn-transcend .proj { font-size: .74rem; opacity: .85; display: block; font-weight: 600; }
